package awstimestream // Details on S3 location for error reports that result from running a query. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // s3ConfigurationProperty := &S3ConfigurationProperty{ // BucketName: jsii.String("bucketName"), // // // the properties below are optional // EncryptionOption: jsii.String("encryptionOption"), // ObjectKeyPrefix: jsii.String("objectKeyPrefix"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-scheduledquery-s3configuration.html // type CfnScheduledQuery_S3ConfigurationProperty struct { // Name of the S3 bucket under which error reports will be created. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-scheduledquery-s3configuration.html#cfn-timestream-scheduledquery-s3configuration-bucketname // BucketName *string `field:"required" json:"bucketName" yaml:"bucketName"` // Encryption at rest options for the error reports. // // If no encryption option is specified, Timestream will choose SSE_S3 as default. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-scheduledquery-s3configuration.html#cfn-timestream-scheduledquery-s3configuration-encryptionoption // EncryptionOption *string `field:"optional" json:"encryptionOption" yaml:"encryptionOption"` // Prefix for the error report key. // // Timestream by default adds the following prefix to the error report path. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-timestream-scheduledquery-s3configuration.html#cfn-timestream-scheduledquery-s3configuration-objectkeyprefix // ObjectKeyPrefix *string `field:"optional" json:"objectKeyPrefix" yaml:"objectKeyPrefix"` }