CfnSequenceStorePropsMixin
- class aws_cdk.mixins_preview.aws_omics.mixins.CfnSequenceStorePropsMixin(props, *, strategy=None)
Bases:
MixinCreates a sequence store.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-sequencestore.html
- CloudformationResource:
AWS::Omics::SequenceStore
- 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 # s3_access_policy: Any cfn_sequence_store_props_mixin = omics_mixins.CfnSequenceStorePropsMixin(omics_mixins.CfnSequenceStoreMixinProps( access_log_location="accessLogLocation", description="description", e_tag_algorithm_family="eTagAlgorithmFamily", fallback_location="fallbackLocation", name="name", propagated_set_level_tags=["propagatedSetLevelTags"], s3_access_policy=s3_access_policy, sse_config=omics_mixins.CfnSequenceStorePropsMixin.SseConfigProperty( key_arn="keyArn", type="type" ), tags={ "tags_key": "tags" } ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::Omics::SequenceStore.- Parameters:
props (
Union[CfnSequenceStoreMixinProps,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 = ['accessLogLocation', 'description', 'eTagAlgorithmFamily', 'fallbackLocation', 'name', 'propagatedSetLevelTags', 's3AccessPolicy', 'sseConfig', '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
SseConfigProperty
- class CfnSequenceStorePropsMixin.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.CfnSequenceStorePropsMixin.SseConfigProperty( key_arn="keyArn", type="type" )
Attributes
- key_arn
An encryption key ARN.