Definition of AWS::Omics::SequenceStore Resource Type
resource "awscc_omics_sequence_store" "example" {
name = "example"
description = "example"
tags = {
"Modified By" = "AWSCC"
}
}
fallback_location
resource "awscc_omics_sequence_store" "example" {
name = "example"
description = "example"
fallback_location = "s3://${awscc_s3_bucket.example.bucket_name}"
}
sse_config
resource "awscc_omics_sequence_store" "example" {
name = "example"
description = "example"
sse_config = {
type = "KMS"
key_arn = awscc_kms_key.example.arn
}
}
name
(String) A name for the store.description
(String) A description for the store.fallback_location
(String) An S3 URI representing the bucket and folder to store failed read set uploads.sse_config
(Attributes) Server-side encryption (SSE) settings for a store. (see below for nested schema)tags
(Map of String)arn
(String) The store's ARN.creation_time
(String) When the store was created.id
(String) Uniquely identifies the resource.sequence_store_id
(String)sse_config
Required:
type
(String)Optional:
key_arn
(String) An encryption key ARN.Import is supported using the following syntax:
$ terraform import awscc_omics_sequence_store.example <resource ID>