Interface CfnFarmMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFarmMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:24.729Z")
@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.mixins.preview.services.deadline.mixins.*;
CfnFarmMixinProps cfnFarmMixinProps = CfnFarmMixinProps.builder()
.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
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
-