skip to Main Content

AWS CLI providing of a param as escaped JSON fails when referenced as a variable – Amazon Web Sevices

I'm a little bit desperate to automate the AVRO schema registration for AWS Glue Schema Registry. According to the official documentation (https://docs.aws.amazon.com/glue/latest/dg/schema-registry-gs.html#schema-registry-gs4) to register a new AVRO schema following command must be executed: aws glue create-schema --registry-id RegistryName="my-registry-name" --schema-name testschema…

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