Java Code Examples for software.amazon.awssdk.regions.Region#US_EAST_1
The following examples show how to use
software.amazon.awssdk.regions.Region#US_EAST_1 .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DynamoDBScanItems.java From aws-doc-sdk-examples with Apache License 2.0 | 6 votes |
public static void main(String[] args) { final String USAGE = "\n" + "Usage:\n" + " DynamoDBScanItems <table>\n\n" + "Where:\n" + " table - the table to get information from (i.e., Music3)\n\n" + "Example:\n" + " DescribeTable Music3\n"; if (args.length < 1) { System.out.println(USAGE); System.exit(1); } String tableName = args[0]; // Create the DynamoDbClient object Region region = Region.US_EAST_1; DynamoDbClient ddb = DynamoDbClient.builder().region(region).build(); scanItems(ddb,tableName); }
Example 2
Source File: KinesisStreamEx.java From aws-doc-sdk-examples with Apache License 2.0 | 6 votes |
public static void main(String[] args) { // snippet-start:[kinesis.java2.stream_example.setup] Region region = Region.US_EAST_1; KinesisAsyncClient client = KinesisAsyncClient.builder() .region(region) .build(); SubscribeToShardRequest request = SubscribeToShardRequest.builder() .consumerARN(CONSUMER_ARN) .shardId("arn:aws:kinesis:us-east-1:814548047983:stream/StockTradeStream") .startingPosition(s -> s.type(ShardIteratorType.LATEST)).build(); // snippet-end:[kinesis.java2.stream_example.setup] SubscribeToShardResponseHandler responseHandler = SubscribeToShardResponseHandler .builder() .onError(t -> System.err.println("Error during stream - " + t.getMessage())) .subscriber(MySubscriber::new) .build(); client.subscribeToShard(request, responseHandler); client.close(); }
Example 3
Source File: StockTradesWriter.java From aws-doc-sdk-examples with Apache License 2.0 | 6 votes |
public static void main(String[] args) { final String USAGE = "\n" + "Usage:\n" + " StockTradesWriter <streamName>\n\n" + "Where:\n" + " streamName - The Kinesis data stream to which records are written (i.e., StockTradeStream)\n\n" + "Example:\n" + " StockTradesWriter streamName\n"; if (args.length < 1) { System.out.println(USAGE); System.exit(1); } String streamName = args[0]; Region region = Region.US_EAST_1; KinesisClient kinesisClient = KinesisClient.builder() .region(region) .build(); // Ensure that the Kinesis stream is valid validateStream(kinesisClient, streamName); setStockData( kinesisClient, streamName); }
Example 4
Source File: EnhancedGetItem.java From aws-doc-sdk-examples with Apache License 2.0 | 6 votes |
public static void main(String[] args) { // Create a DynamoDbClient object Region region = Region.US_EAST_1; DynamoDbClient ddb = DynamoDbClient.builder() .region(region) .build(); // Create a DynamoDbEnhancedClient and use the DynamoDbClient object DynamoDbEnhancedClient enhancedClient = DynamoDbEnhancedClient.builder() .dynamoDbClient(ddb) .build(); String result = getItem(enhancedClient); System.out.println(result); }
Example 5
Source File: DetectMedicalEntities.java From aws-doc-sdk-examples with Apache License 2.0 | 6 votes |
public static void main(String[] args) { String text = "Pt is 87 yo woman, highschool teacher with past medical history that includes\n" + " - status post cardiac catheterization in April 2019.\n" + "She presents today with palpitations and chest pressure.\n" + "HPI : Sleeping trouble on present dosage of Clonidine. Severe Rash on face and leg, slightly itchy \n" + "Meds : Vyvanse 50 mgs po at breakfast daily, \n" + " Clonidine 0.2 mgs -- 1 and 1 / 2 tabs po qhs \n" + "HEENT : Boggy inferior turbinates, No oropharyngeal lesion \n" + "Lungs : clear \n" + "Heart : Regular rhythm \n" + "Skin : Mild erythematous eruption to hairline \n" + "\n" + "Follow-up as scheduled"; Region region = Region.US_EAST_1; ComprehendMedicalClient medClient = ComprehendMedicalClient.builder() .region(region) .build(); System.out.println("Calling Detect Medical Entities"); detectAllEntities(medClient, text) ; }
Example 6
Source File: DynamoDBEnhanced.java From aws-doc-sdk-examples with Apache License 2.0 | 5 votes |
public void injectDynamoItem(Greeting item){ Region region = Region.US_EAST_1; DynamoDbClient ddb = DynamoDbClient.builder() .region(region) .credentialsProvider(EnvironmentVariableCredentialsProvider.create()) .build(); try { DynamoDbEnhancedClient enhancedClient = DynamoDbEnhancedClient.builder() .dynamoDbClient(ddb) .build(); //Create a DynamoDbTable object DynamoDbTable<GreetingItems> mappedTable = enhancedClient.table("Greeting", TABLE_SCHEMA); GreetingItems gi = new GreetingItems(); gi.setName(item.getName()); gi.setMessage(item.getBody()); gi.setTitle(item.getTitle()); gi.setId(item.getId()); PutItemEnhancedRequest enReq = PutItemEnhancedRequest.builder(GreetingItems.class) .item(gi) .build(); mappedTable.putItem(enReq); } catch (Exception e) { e.getStackTrace(); } }
Example 7
Source File: DescribeLimits.java From aws-doc-sdk-examples with Apache License 2.0 | 5 votes |
public static void main(String[] args) { // snippet-start:[kinesis.java2.DescribeLimits.client] Region region = Region.US_EAST_1; KinesisClient kinesisClient = KinesisClient.builder() .region(region) .build(); describeKinLimits(kinesisClient); }
Example 8
Source File: AddDataShards.java From aws-doc-sdk-examples with Apache License 2.0 | 5 votes |
public static void main(String[] args) { final String USAGE = "\n" + "Usage:\n" + " AddDataShards <streamName>\n\n" + "Where:\n" + " streamName - The Kinesis data stream (i.e., StockTradeStream)\n\n" + "Example:\n" + " AddDataShards StockTradeStream\n"; if (args.length < 1) { System.out.println(USAGE); System.exit(1); } String name = args[0]; String inputShards = "2"; int goalShards = Integer.parseInt(inputShards); // snippet-start:[kinesis.java2.AddDataShards.client] Region region = Region.US_EAST_1; KinesisClient kinesisClient = KinesisClient.builder() .region(region) .build(); // snippet-end:[kinesis.java2.AddDataShards.client] addShards(kinesisClient, name, goalShards); }
Example 9
Source File: AWSDynamoServiceIntegrationTest.java From aws-doc-sdk-examples with Apache License 2.0 | 5 votes |
@BeforeAll public static void setUp() throws IOException { // Run tests on Real AWS Resources Region region = Region.US_EAST_1; ddb = DynamoDbClient.builder().region(region).build(); try (InputStream input = AWSDynamoServiceIntegrationTest.class.getClassLoader().getResourceAsStream("config.properties")) { Properties prop = new Properties(); if (input == null) { System.out.println("Sorry, unable to find config.properties"); return; } //load a properties file from class path, inside static method prop.load(input); // Populate the data members required for all tests tableName = prop.getProperty("tableName"); key = prop.getProperty("key"); keyVal = prop.getProperty("keyValue"); albumTitle = prop.getProperty("albumTitle"); albumTitleValue = prop.getProperty("AlbumTitleValue"); awards = prop.getProperty("Awards"); awardVal = prop.getProperty("AwardVal"); songTitle = prop.getProperty("SongTitle"); songTitleVal = prop.getProperty("SongTitleVal"); } catch (IOException ex) { ex.printStackTrace(); } }
Example 10
Source File: EnhancedBatchWriteItems.java From aws-doc-sdk-examples with Apache License 2.0 | 5 votes |
public static void main(String[] args) { // Create a DynamoDbClient object Region region = Region.US_EAST_1; DynamoDbClient ddb = DynamoDbClient.builder() .region(region) .build(); // Create a DynamoDbEnhancedClient object DynamoDbEnhancedClient enhancedClient = DynamoDbEnhancedClient.builder() .dynamoDbClient(ddb) .build(); putBatchRecords(enhancedClient); }
Example 11
Source File: DetectLanguage.java From aws-doc-sdk-examples with Apache License 2.0 | 5 votes |
public static void main(String[] args) { // Specify French text - "It is raining today in Seattle" String text = "Il pleut aujourd'hui à Seattle"; Region region = Region.US_EAST_1; ComprehendClient comClient = ComprehendClient.builder() .region(region) .build(); System.out.println("Calling DetectDominantLanguage"); detectTheDominantLanguage(comClient, text); }
Example 12
Source File: EnhancedQueryRecordsWithFilter.java From aws-doc-sdk-examples with Apache License 2.0 | 5 votes |
public static void main(String[] args) { // Create a DynamoDbClient object Region region = Region.US_EAST_1; DynamoDbClient ddb = DynamoDbClient.builder() .region(region) .build(); // Create a DynamoDbEnhancedClient and use the DynamoDbClient object DynamoDbEnhancedClient enhancedClient = DynamoDbEnhancedClient.builder() .dynamoDbClient(ddb) .build(); queryTableFilter(enhancedClient); }
Example 13
Source File: DetectSyntax.java From aws-doc-sdk-examples with Apache License 2.0 | 5 votes |
public static void main(String[] args) { String text = "Amazon.com, Inc. is located in Seattle, WA and was founded July 5, 1994 by Jeff Bezos, enabling customers to buy everything from books to blenders. Seattle is north of Portland and south of Vancouver, BC. Other notable Seattle-based companies are Starbucks and Boeing."; Region region = Region.US_EAST_1; ComprehendClient comClient = ComprehendClient.builder() .region(region) .build(); System.out.println("Calling DetectSyntax"); detectAllSyntax(comClient, text); }
Example 14
Source File: DeleteTable.java From aws-doc-sdk-examples with Apache License 2.0 | 5 votes |
public static void main(String[] args) { final String USAGE = "\n" + "Usage:\n" + " DeleteTable <table>\n\n" + "Where:\n" + " table - the table to delete (i.e., Music3)\n\n" + "Example:\n" + " DeleteTable Music3\n\n" + "**Warning** This program will actually delete the table\n" + " that you specify!\n"; if (args.length < 1) { System.out.println(USAGE); System.exit(1); } String tableName = args[0]; System.out.format("Deleting table %s...\n", tableName); // Create the DynamoDbClient object Region region = Region.US_EAST_1; DynamoDbClient ddb = DynamoDbClient.builder() .region(region) .build(); deleteDynamoDBTable(ddb, tableName); }
Example 15
Source File: GetMetricData.java From aws-doc-sdk-examples with Apache License 2.0 | 5 votes |
public static void main(String[] args) { Region region = Region.US_EAST_1; CloudWatchClient cw = CloudWatchClient.builder() .region(region) .build(); getMetData(cw) ; }
Example 16
Source File: EnhancedTableSchema.java From aws-doc-sdk-examples with Apache License 2.0 | 5 votes |
public static void main(String[] args) { // Create a DynamoDbClient object Region region = Region.US_EAST_1; DynamoDbClient ddb = DynamoDbClient.builder() .region(region) .build(); // Create a DynamoDbEnhancedClient and use the DynamoDbClient object DynamoDbEnhancedClient enhancedClient = DynamoDbEnhancedClient.builder() .dynamoDbClient(ddb) .build(); putRecord(enhancedClient); }
Example 17
Source File: DynamoDbBeanExample.java From aws-doc-sdk-examples with Apache License 2.0 | 5 votes |
public static void main(String[] args) { //Create a DynamoDbClient object Region region = Region.US_EAST_1; DynamoDbClient ddb = DynamoDbClient.builder() .region(region) .build(); // Create a DynamoDbEnhancedClient and use the DynamoDbClient object DynamoDbEnhancedClient enhancedClient = DynamoDbEnhancedClient.builder() .dynamoDbClient(ddb) .build(); putRecord(enhancedClient) ; }
Example 18
Source File: RedisUpdate.java From reactive-refarch-cloudformation with Apache License 2.0 | 5 votes |
private static KinesisAsyncClient createClient() { ClientAsyncConfiguration clientConfiguration = ClientAsyncConfiguration.builder().build(); // Reading credentials from ENV-variables AwsCredentialsProvider awsCredentialsProvider = DefaultCredentialsProvider.builder().build(); // Configuring Kinesis-client with configuration String tmp = System.getenv("REGION"); Region myRegion = null; if (tmp == null || tmp.trim().length() == 0) { myRegion = Region.US_EAST_1; System.out.println("Using default region"); } else { myRegion = Region.of(tmp); } System.out.println("Deploying in Region " + myRegion.toString()); KinesisAsyncClient kinesisClient = KinesisAsyncClient.builder() .asyncConfiguration(clientConfiguration) .credentialsProvider(awsCredentialsProvider) .region(myRegion) .build(); return kinesisClient; }
Example 19
Source File: CognitoServiceIntegrationTest.java From aws-doc-sdk-examples with Apache License 2.0 | 4 votes |
@BeforeAll public static void setUp() throws IOException { // Run tests on Real AWS Resources Region region = Region.US_EAST_1; cognitoclient = CognitoIdentityProviderClient.builder() .region(Region.US_EAST_1) .build(); cognitoIdclient = CognitoIdentityClient.builder() .region(Region.US_EAST_1) .build(); cognitoIdentityProviderClient = CognitoIdentityProviderClient.builder() .region(Region.US_EAST_1) .build(); try (InputStream input = CognitoServiceIntegrationTest.class.getClassLoader().getResourceAsStream("config.properties")) { Properties prop = new Properties(); if (input == null) { System.out.println("Sorry, unable to find config.properties"); return; } //load a properties file from class path, inside static method prop.load(input); // Populate the data members required for all tests userPoolName = prop.getProperty("userPoolName"); username= prop.getProperty("username"); email= prop.getProperty("email"); clientName = prop.getProperty("clientName"); identityPoolName = prop.getProperty("identityPoolName"); } catch (IOException ex) { ex.printStackTrace(); } }
Example 20
Source File: DescribeAlarms.java From aws-doc-sdk-examples with Apache License 2.0 | 3 votes |
public static void main(String[] args) { Region region = Region.US_EAST_1; CloudWatchClient cw = CloudWatchClient.builder() .region(region) .build(); deleteCWAlarms(cw) ; }