Interface CfnFieldProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFieldProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.125.0 (build fdbe357)",
date="2026-01-09T10:20:13.553Z")
@Stability(Stable)
public interface CfnFieldProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnField.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cases.*;
CfnFieldProps cfnFieldProps = CfnFieldProps.builder()
.name("name")
.type("type")
// the properties below are optional
.description("description")
.domainId("domainId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFieldPropsstatic final classAn implementation forCfnFieldProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
Name of the field.- See Also:
-
getType
Type of the field.- See Also:
-
getDescription
Description of the field.- See Also:
-
getDomainId
The unique identifier of the Cases domain.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnFieldProps.BuilderofCfnFieldProps
-