CfnVariantStorePropsMixin

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

Bases: Mixin

Create a store for variant data.

See:

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

CloudformationResource:

AWS::Omics::VariantStore

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

cfn_variant_store_props_mixin = omics_mixins.CfnVariantStorePropsMixin(omics_mixins.CfnVariantStoreMixinProps(
    description="description",
    name="name",
    reference=omics_mixins.CfnVariantStorePropsMixin.ReferenceItemProperty(
        reference_arn="referenceArn"
    ),
    sse_config=omics_mixins.CfnVariantStorePropsMixin.SseConfigProperty(
        key_arn="keyArn",
        type="type"
    ),
    tags={
        "tags_key": "tags"
    }
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

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

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 = ['description', 'name', 'reference', '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

ReferenceItemProperty

class CfnVariantStorePropsMixin.ReferenceItemProperty(*, reference_arn=None)

Bases: object

The read set’s genome reference ARN.

Parameters:

reference_arn (Optional[str]) – The reference’s ARN.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-variantstore-referenceitem.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

reference_item_property = omics_mixins.CfnVariantStorePropsMixin.ReferenceItemProperty(
    reference_arn="referenceArn"
)

Attributes

reference_arn

The reference’s ARN.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-variantstore-referenceitem.html#cfn-omics-variantstore-referenceitem-referencearn

SseConfigProperty

class CfnVariantStorePropsMixin.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-variantstore-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.CfnVariantStorePropsMixin.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-variantstore-sseconfig.html#cfn-omics-variantstore-sseconfig-keyarn

type

The encryption type.

See:

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