CfnSequenceStorePropsMixin

class aws_cdk.mixins_preview.aws_omics.mixins.CfnSequenceStorePropsMixin(props, *, strategy=None)

Bases: Mixin

Creates a sequence store.

See:

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

CloudformationResource:

AWS::Omics::SequenceStore

Mixin:

true

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.mixins_preview import mixins
from aws_cdk.mixins_preview.aws_omics import mixins as omics_mixins

# s3_access_policy: Any

cfn_sequence_store_props_mixin = omics_mixins.CfnSequenceStorePropsMixin(omics_mixins.CfnSequenceStoreMixinProps(
    access_log_location="accessLogLocation",
    description="description",
    e_tag_algorithm_family="eTagAlgorithmFamily",
    fallback_location="fallbackLocation",
    name="name",
    propagated_set_level_tags=["propagatedSetLevelTags"],
    s3_access_policy=s3_access_policy,
    sse_config=omics_mixins.CfnSequenceStorePropsMixin.SseConfigProperty(
        key_arn="keyArn",
        type="type"
    ),
    tags={
        "tags_key": "tags"
    }
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

Create a mixin to apply properties to AWS::Omics::SequenceStore.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['accessLogLocation', 'description', 'eTagAlgorithmFamily', 'fallbackLocation', 'name', 'propagatedSetLevelTags', 's3AccessPolicy', 'sseConfig', 'tags']

Static Methods

classmethod is_mixin(x)

(experimental) Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental

SseConfigProperty

class CfnSequenceStorePropsMixin.SseConfigProperty(*, key_arn=None, type=None)

Bases: object

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

Parameters:
  • key_arn (Optional[str]) – An encryption key ARN.

  • type (Optional[str]) – The encryption type.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-sequencestore-sseconfig.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.mixins_preview.aws_omics import mixins as omics_mixins

sse_config_property = omics_mixins.CfnSequenceStorePropsMixin.SseConfigProperty(
    key_arn="keyArn",
    type="type"
)

Attributes

key_arn

An encryption key ARN.

See:

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

type

The encryption type.

See:

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