CfnSequenceStoreProps

class aws_cdk.aws_omics.CfnSequenceStoreProps(*, name, description=None, fallback_location=None, sse_config=None, tags=None)

Bases: object

Properties for defining a CfnSequenceStore.

Parameters:
  • name (str) – A name for the store.

  • description (Optional[str]) – A description for the store.

  • fallback_location (Optional[str]) – An S3 location that is used to store files that have failed a direct upload.

  • sse_config (Union[IResolvable, SseConfigProperty, Dict[str, Any], None]) – Server-side encryption (SSE) settings for the store.

  • tags (Optional[Mapping[str, str]]) – Tags for the store.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-sequencestore.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_omics as omics

cfn_sequence_store_props = omics.CfnSequenceStoreProps(
    name="name",

    # the properties below are optional
    description="description",
    fallback_location="fallbackLocation",
    sse_config=omics.CfnSequenceStore.SseConfigProperty(
        type="type",

        # the properties below are optional
        key_arn="keyArn"
    ),
    tags={
        "tags_key": "tags"
    }
)

Attributes

description

A description for the store.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-sequencestore.html#cfn-omics-sequencestore-description

fallback_location

An S3 location that is used to store files that have failed a direct upload.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-sequencestore.html#cfn-omics-sequencestore-fallbacklocation

name

A name for the store.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-sequencestore.html#cfn-omics-sequencestore-name

sse_config

Server-side encryption (SSE) settings for the store.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-sequencestore.html#cfn-omics-sequencestore-sseconfig

tags

Tags for the store.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-sequencestore.html#cfn-omics-sequencestore-tags