CfnAnnotationStorePropsMixin
- class aws_cdk.mixins_preview.aws_omics.mixins.CfnAnnotationStorePropsMixin(props, *, strategy=None)
Bases:
MixinAWS HealthOmics variant stores and annotation stores are no longer open to new customers.
Existing customers can continue to use the service as normal. For more information, see AWS HealthOmics variant store and annotation store availability change .
Creates an annotation store.
- see:
- cloudformationResource:
AWS::Omics::AnnotationStore
- 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 # schema: Any cfn_annotation_store_props_mixin = omics_mixins.CfnAnnotationStorePropsMixin(omics_mixins.CfnAnnotationStoreMixinProps( description="description", name="name", reference=omics_mixins.CfnAnnotationStorePropsMixin.ReferenceItemProperty( reference_arn="referenceArn" ), sse_config=omics_mixins.CfnAnnotationStorePropsMixin.SseConfigProperty( key_arn="keyArn", type="type" ), store_format="storeFormat", store_options=omics_mixins.CfnAnnotationStorePropsMixin.StoreOptionsProperty( tsv_store_options=omics_mixins.CfnAnnotationStorePropsMixin.TsvStoreOptionsProperty( annotation_type="annotationType", format_to_header={ "format_to_header_key": "formatToHeader" }, schema=schema ) ), tags={ "tags_key": "tags" } ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::Omics::AnnotationStore.- Parameters:
props (
Union[CfnAnnotationStoreMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['description', 'name', 'reference', 'sseConfig', 'storeFormat', 'storeOptions', 'tags']
Static Methods
- classmethod is_mixin(x)
(experimental) Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental
ReferenceItemProperty
- class CfnAnnotationStorePropsMixin.ReferenceItemProperty(*, reference_arn=None)
Bases:
objectA genome reference.
- Parameters:
reference_arn (
Optional[str]) – The reference’s ARN.- See:
- 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.CfnAnnotationStorePropsMixin.ReferenceItemProperty( reference_arn="referenceArn" )
Attributes
SseConfigProperty
- class CfnAnnotationStorePropsMixin.SseConfigProperty(*, key_arn=None, type=None)
Bases:
objectServer-side encryption (SSE) settings for a store.
- Parameters:
key_arn (
Optional[str]) – An encryption key ARN.type (
Optional[str]) – The encryption type.
- See:
- 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.CfnAnnotationStorePropsMixin.SseConfigProperty( key_arn="keyArn", type="type" )
Attributes
- key_arn
An encryption key ARN.
StoreOptionsProperty
- class CfnAnnotationStorePropsMixin.StoreOptionsProperty(*, tsv_store_options=None)
Bases:
objectThe store’s file parsing options.
- Parameters:
tsv_store_options (
Union[IResolvable,TsvStoreOptionsProperty,Dict[str,Any],None]) – Formatting options for a TSV file.- See:
- 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 # schema: Any store_options_property = omics_mixins.CfnAnnotationStorePropsMixin.StoreOptionsProperty( tsv_store_options=omics_mixins.CfnAnnotationStorePropsMixin.TsvStoreOptionsProperty( annotation_type="annotationType", format_to_header={ "format_to_header_key": "formatToHeader" }, schema=schema ) )
Attributes
- tsv_store_options
Formatting options for a TSV file.
TsvStoreOptionsProperty
- class CfnAnnotationStorePropsMixin.TsvStoreOptionsProperty(*, annotation_type=None, format_to_header=None, schema=None)
Bases:
objectThe store’s parsing options.
- Parameters:
annotation_type (
Optional[str]) – The store’s annotation type.format_to_header (
Union[Mapping[str,str],IResolvable,None]) – The store’s header key to column name mapping.schema (
Any) – The schema of an annotation store.
- See:
- 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 # schema: Any tsv_store_options_property = omics_mixins.CfnAnnotationStorePropsMixin.TsvStoreOptionsProperty( annotation_type="annotationType", format_to_header={ "format_to_header_key": "formatToHeader" }, schema=schema )
Attributes
- annotation_type
The store’s annotation type.
- format_to_header
The store’s header key to column name mapping.
- schema
The schema of an annotation store.