Interface CfnTaskTemplate.ConstraintsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTaskTemplate.ConstraintsProperty.Jsii$Proxy
- Enclosing class:
CfnTaskTemplate
@Stability(Stable)
public static interface CfnTaskTemplate.ConstraintsProperty
extends software.amazon.jsii.JsiiSerializable
Describes constraints that apply to the template fields.
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.connect.*; ConstraintsProperty constraintsProperty = ConstraintsProperty.builder() .invisibleFields(List.of(InvisibleFieldInfoProperty.builder() .id(FieldIdentifierProperty.builder() .name("name") .build()) .build())) .readOnlyFields(List.of(ReadOnlyFieldInfoProperty.builder() .id(FieldIdentifierProperty.builder() .name("name") .build()) .build())) .requiredFields(List.of(RequiredFieldInfoProperty.builder() .id(FieldIdentifierProperty.builder() .name("name") .build()) .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTaskTemplate.ConstraintsProperty
static final class
An implementation forCfnTaskTemplate.ConstraintsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInvisibleFields
Lists the fields that are invisible to agents.- See Also:
-
getReadOnlyFields
Lists the fields that are read-only to agents, and cannot be edited.- See Also:
-
getRequiredFields
Lists the fields that are required to be filled by agents.- See Also:
-
builder
-