interface CfnReferenceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Omics.CfnReferenceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsomics#CfnReferenceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.omics.CfnReferenceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_omics.CfnReferenceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_omics » CfnReferenceMixinProps |
Properties for CfnReferencePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-reference.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_omics as omics } from '@aws-cdk/cfn-property-mixins';
const cfnReferenceMixinProps: omics.CfnReferenceMixinProps = {
description: 'description',
name: 'name',
referenceStoreId: 'referenceStoreId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The reference's description. |
| name? | string | The reference's name. |
| reference | string | The reference's reference store ID. |
| tags? | Tags[] | Tags for the reference. |
description?
Type:
string
(optional)
The reference's description.
name?
Type:
string
(optional)
The reference's name.
referenceStoreId?
Type:
string
(optional)
The reference's reference store ID.
tags?
Type:
Tags[]
(optional)
Tags for the reference.

.NET
Go
Java
Python
TypeScript