CfnReferenceMixinProps

class aws_cdk.cfn_property_mixins.aws_omics.CfnReferenceMixinProps(*, description=None, name=None, reference_store_id=None, tags=None)

Bases: object

Properties for CfnReferencePropsMixin.

Parameters:
  • description (Optional[str]) – The reference’s description.

  • name (Optional[str]) – The reference’s name.

  • reference_store_id (Optional[str]) – The reference’s reference store ID.

  • tags (Optional[Sequence[Union[TagsItemsProperty, Dict[str, Any]]]]) – Tags for the reference.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-reference.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.cfn_property_mixins import aws_omics as omics

cfn_reference_mixin_props = omics.CfnReferenceMixinProps(
    description="description",
    name="name",
    reference_store_id="referenceStoreId",
    tags=[omics.CfnReferencePropsMixin.TagsItemsProperty(
        key="key",
        value="value"
    )]
)

Attributes

description

The reference’s description.

See:

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

name

The reference’s name.

See:

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

reference_store_id

The reference’s reference store ID.

See:

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

tags

Tags for the reference.

See:

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