Interface CfnFarmMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFarmMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-02T21:55:25.969Z")
@Stability(Stable)
public interface CfnFarmMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnFarmPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.deadline.*;
CfnFarmMixinProps cfnFarmMixinProps = CfnFarmMixinProps.builder()
.costScaleFactor(123)
.description("description")
.displayName("displayName")
.kmsKeyArn("kmsKeyArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFarmMixinPropsstatic final classAn implementation forCfnFarmMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnFarmMixinProps.Builderbuilder()default NumberDefault: - 1default StringA description of the farm that helps identify what the farm is used for.default StringThe display name of the farm.default StringThe ARN for the KMS key.getTags()The tags to add to your farm.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCostScaleFactor
Default: - 1- See Also:
-
getDescription
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.
Default: - ""
- See Also:
-
getDisplayName
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.
- See Also:
-
getKmsKeyArn
The ARN for the KMS key.- See Also:
-
getTags
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.
- See Also:
-
builder
- Returns:
- a
CfnFarmMixinProps.BuilderofCfnFarmMixinProps
-