interface CfnReferenceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Omics.CfnReferenceProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnReferenceProps |
Java | software.amazon.awscdk.services.omics.CfnReferenceProps |
Python | aws_cdk.aws_omics.CfnReferenceProps |
TypeScript | aws-cdk-lib » aws_omics » CfnReferenceProps |
Properties for defining a CfnReference.
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-lib';
const cfnReferenceProps: omics.CfnReferenceProps = {
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