CfnSequenceStoreMixinProps
- class aws_cdk.mixins_preview.aws_omics.mixins.CfnSequenceStoreMixinProps(*, access_log_location=None, description=None, e_tag_algorithm_family=None, fallback_location=None, name=None, propagated_set_level_tags=None, s3_access_policy=None, sse_config=None, tags=None)
Bases:
objectProperties for CfnSequenceStorePropsMixin.
- Parameters:
access_log_location (
Optional[str]) – Location of the access logs.description (
Optional[str]) – A description for the store.e_tag_algorithm_family (
Optional[str]) – The algorithm family of the ETag.fallback_location (
Optional[str]) – An S3 location that is used to store files that have failed a direct upload.name (
Optional[str]) – A name for the store.propagated_set_level_tags (
Optional[Sequence[str]]) – The tags keys to propagate to the S3 objects associated with read sets in the sequence store.s3_access_policy (
Any) – The resource policy that controls S3 access on the store.sse_config (
Union[IResolvable,SseConfigProperty,Dict[str,Any],None]) – Server-side encryption (SSE) settings for the store.tags (
Optional[Mapping[str,str]]) – Tags for the store.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-sequencestore.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.mixins_preview.aws_omics import mixins as omics_mixins # s3_access_policy: Any cfn_sequence_store_mixin_props = 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" } )
Attributes
- access_log_location
Location of the access logs.
- description
A description for the store.
- e_tag_algorithm_family
The algorithm family of the ETag.
- fallback_location
An S3 location that is used to store files that have failed a direct upload.
- name
A name for the store.
- propagated_set_level_tags
The tags keys to propagate to the S3 objects associated with read sets in the sequence store.
- s3_access_policy
The resource policy that controls S3 access on the store.
- sse_config
Server-side encryption (SSE) settings for the store.