Interface CfnFieldProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFieldProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-02T21:55:06.021Z")
@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
.attributes(FieldAttributesProperty.builder()
.text(TextAttributesProperty.builder()
.isMultiline(false)
.build())
.build())
.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
Modifier and TypeMethodDescriptionstatic CfnFieldProps.Builderbuilder()default ObjectUnion of field attributes.default StringDescription of the field.default StringThe unique identifier of the Cases domain.getName()Name of the field.getTags()An array of key-value pairs to apply to this resource.getType()Type of the field.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:
-
getAttributes
Union of field attributes.Returns union: either
IResolvableorCfnField.FieldAttributesProperty- 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
-