interface CfnFarmMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnFarmMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnFarmMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnFarmMixinProps |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnFarmMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » CfnFarmMixinProps |
Properties for CfnFarmPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-farm.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as deadline_mixins } from '@aws-cdk/mixins-preview/aws-deadline';
const cfnFarmMixinProps: deadline_mixins.CfnFarmMixinProps = {
description: 'description',
displayName: 'displayName',
kmsKeyArn: 'kmsKeyArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the farm that helps identify what the farm is used for. |
| display | string | The display name of the farm. |
| kms | string | The ARN for the KMS key. |
| tags? | Cfn[] | The tags to add to your farm. |
description?
Type:
string
(optional, default: "")
A description of the farm that helps identify what the farm is used for.
This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
displayName?
Type:
string
(optional)
The display name of the farm.
This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
kmsKeyArn?
Type:
string
(optional)
The ARN for the KMS key.
tags?
Type:
Cfn[]
(optional)
The tags to add to your farm.
Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.

.NET
Go
Java
Python
TypeScript