skip to Main Content

No connection string provided (Azure Application Insights)

I new to Azure App Insights. I am trying to configure it in my Spring Boot + Kotlin application. So far, after reading the guides. I have added the dependency: <!-- https://mvnrepository.com/artifact/com.microsoft.azure/applicationinsights-runtime-attach --> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>applicationinsights-runtime-attach</artifactId> <version>3.4.9</version> </dependency> and in…

VIEW QUESTION

Is there a way to create a DynamoDB table with TTL and PITR enabled with the Java AWS SDK? – Amazon Web Sevices

I'm trying to create a DynamoDB table programmatically in Kotlin using a CreateTableRequest: val createTableRequest: CreateTableRequest = CreateTableRequest.builder() .tableName(tableName) .billingMode("PAY_PER_REQUEST") .attributeDefinitions(attributeDefinitions) .keySchema(keySchema) .streamSpecification(streamSpecification) .globalSecondaryIndexes(globalSecondaryIndexes) .tags(tags) .build() dynamoDbClient.createTable(createTableRequest) I want to set the TTL and Point-in-time recovery (PITR) settings to true,…

VIEW QUESTION
Back To Top
Search