package awsomics // Server-side encryption (SSE) settings for a store. // // 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" // // sseConfigProperty := &SseConfigProperty{ // Type: jsii.String("type"), // // // the properties below are optional // KeyArn: jsii.String("keyArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-variantstore-sseconfig.html // type CfnVariantStore_SseConfigProperty struct { // The encryption type. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-variantstore-sseconfig.html#cfn-omics-variantstore-sseconfig-type // Type *string `field:"required" json:"type" yaml:"type"` // An encryption key ARN. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-variantstore-sseconfig.html#cfn-omics-variantstore-sseconfig-keyarn // KeyArn *string `field:"optional" json:"keyArn" yaml:"keyArn"` }