interface CfnConfigurationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Omics.CfnConfigurationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnConfigurationProps |
Java | software.amazon.awscdk.services.omics.CfnConfigurationProps |
Python | aws_cdk.aws_omics.CfnConfigurationProps |
TypeScript | aws-cdk-lib » aws_omics » CfnConfigurationProps |
Properties for defining a CfnConfiguration.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-configuration.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 cfnConfigurationProps: omics.CfnConfigurationProps = {
name: 'name',
runConfigurations: {
vpcConfig: {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
},
},
// the properties below are optional
description: 'description',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | User-friendly name for the configuration. |
| run | IResolvable | Run | |
| description? | string | Optional description for the configuration. |
| tags? | { [string]: string } | A map of resource tags. |
name
Type:
string
User-friendly name for the configuration.
runConfigurations
Type:
IResolvable | Run
description?
Type:
string
(optional)
Optional description for the configuration.
tags?
Type:
{ [string]: string }
(optional)
A map of resource tags.

.NET
Go
Java
Python
TypeScript