skip to Main Content

Amazon web services – How can i get parameters from Construct before finishing of creation stack

Can you help me please? I create DatabaseInstanceEngine and eks secret and want to put db_instance_endpoint_address to this secret self.cluster.add_manifest('my-secret-env', { "kind": "Secret", "apiVersion": "v1", "metadata": { "name": "my-secret-env", 'namespace': 'default' }, "data": { "DATA_HOST": self._base64encode(self.db.db_instance_endpoint_address), } }) after execution…

VIEW QUESTION

Amazon web services – Amazon DynamoDB taking long time to fetch record with high latency up to 5-6 second

pom.xml <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-bom</artifactId> <version>1.11.256</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-dynamodb</artifactId> </dependency> Client Code public static AmazonDynamoDB getDynamoDBClient() { return AmazonDynamoDBClientBuilder.standard().withRegion("ap-southeast-1").build(); } Now i am trying to execute a normal query having few records but it is taking long time…

VIEW QUESTION
Back To Top
Search