CfnAnnotationStoreMixinProps
- class aws_cdk.mixins_preview.aws_omics.mixins.CfnAnnotationStoreMixinProps(*, description=None, name=None, reference=None, sse_config=None, store_format=None, store_options=None, tags=None)
Bases:
objectProperties for CfnAnnotationStorePropsMixin.
- Parameters:
description (
Optional[str]) – A description for the store.name (
Optional[str]) – The name of the Annotation 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_format (
Optional[str]) – The annotation file format of the store.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:
- 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 cfn_annotation_store_mixin_props = 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" } )
Attributes
- description
A description for the store.
- name
The name of the Annotation Store.
- reference
The genome reference for the store’s annotations.
- sse_config
The store’s server-side encryption (SSE) settings.
- store_format
The annotation file format of the store.
- store_options
File parsing options for the annotation store.