CfnAnnotationStoreProps

class aws_cdk.aws_omics.CfnAnnotationStoreProps(*, name, store_format, description=None, reference=None, sse_config=None, store_options=None, tags=None)

Bases: object

Properties for defining a CfnAnnotationStore.

Parameters:
  • name (str) – The name of the Annotation Store.

  • store_format (str) – The annotation file format of the store.

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

  • reference (Union[IResolvable, ReferenceItemProperty, Dict[str, Any], None]) – The genome reference for the store’s annotations.

  • sse_config (Union[IResolvable, SseConfigProperty, Dict[str, Any], None]) – The store’s server-side encryption (SSE) settings.

  • store_options (Union[IResolvable, StoreOptionsProperty, Dict[str, Any], None]) – File parsing options for the annotation store.

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

See:

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

# schema: Any

cfn_annotation_store_props = omics.CfnAnnotationStoreProps(
    name="name",
    store_format="storeFormat",

    # the properties below are optional
    description="description",
    reference=omics.CfnAnnotationStore.ReferenceItemProperty(
        reference_arn="referenceArn"
    ),
    sse_config=omics.CfnAnnotationStore.SseConfigProperty(
        type="type",

        # the properties below are optional
        key_arn="keyArn"
    ),
    store_options=omics.CfnAnnotationStore.StoreOptionsProperty(
        tsv_store_options=omics.CfnAnnotationStore.TsvStoreOptionsProperty(
            annotation_type="annotationType",
            format_to_header={
                "format_to_header_key": "formatToHeader"
            },
            schema=schema
        )
    ),
    tags={
        "tags_key": "tags"
    }
)

Attributes

description

A description for the store.

See:

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

name

The name of the Annotation Store.

See:

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

reference

The genome reference for the store’s annotations.

See:

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

sse_config

The store’s server-side encryption (SSE) settings.

See:

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

store_format

The annotation file format of the store.

See:

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

store_options

File parsing options for the annotation store.

See:

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

tags

Tags for the store.

See:

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