interface CfnFarmMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnFarmMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnFarmMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnFarmMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnFarmMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » 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 { aws_deadline as deadline } from '@aws-cdk/cfn-property-mixins';
const cfnFarmMixinProps: deadline.CfnFarmMixinProps = {
costScaleFactor: 123,
description: 'description',
displayName: 'displayName',
kmsKeyArn: 'kmsKeyArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cost | number | |
| 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. |
costScaleFactor?
Type:
number
(optional, default: 1)
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