SequenceStoreReference
- class aws_cdk.aws_omics.SequenceStoreReference(*, sequence_store_arn, sequence_store_id)
Bases:
object
A reference to a SequenceStore resource.
- Parameters:
sequence_store_arn (
str
) – The ARN of the SequenceStore resource.sequence_store_id (
str
) – The SequenceStoreId of the SequenceStore resource.
- 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 sequence_store_reference = omics.SequenceStoreReference( sequence_store_arn="sequenceStoreArn", sequence_store_id="sequenceStoreId" )
Attributes
- sequence_store_arn
The ARN of the SequenceStore resource.
- sequence_store_id
The SequenceStoreId of the SequenceStore resource.