Interface CfnPredefinedAttributeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPredefinedAttributeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:48.386Z")
@Stability(Stable)
public interface CfnPredefinedAttributeProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnPredefinedAttribute.
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.*;
CfnPredefinedAttributeProps cfnPredefinedAttributeProps = CfnPredefinedAttributeProps.builder()
.instanceArn("instanceArn")
.name("name")
// the properties below are optional
.attributeConfiguration(AttributeConfigurationProperty.builder()
.enableValueValidationOnAssociation(false)
.isReadOnly(false)
.build())
.purposes(List.of("purposes"))
.values(ValuesProperty.builder()
.stringList(List.of("stringList"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPredefinedAttributePropsstatic final classAn implementation forCfnPredefinedAttributeProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectCustom metadata that is associated to predefined attributes to control behavior in upstream services, such as controlling how a predefined attribute should be displayed in the Amazon Connect admin website.The Amazon Resource Name (ARN) of the instance.getName()The name of the predefined attribute.Values that enable you to categorize your predefined attributes.default ObjectThe values of a predefined attribute.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceArn
The Amazon Resource Name (ARN) of the instance.- See Also:
-
getName
The name of the predefined attribute.- See Also:
-
getAttributeConfiguration
Custom metadata that is associated to predefined attributes to control behavior in upstream services, such as controlling how a predefined attribute should be displayed in the Amazon Connect admin website.Returns union: either
IResolvableorCfnPredefinedAttribute.AttributeConfigurationProperty- See Also:
-
getPurposes
Values that enable you to categorize your predefined attributes.You can use them in custom UI elements across the Amazon Connect admin website.
- See Also:
-
getValues
The values of a predefined attribute.Returns union: either
IResolvableorCfnPredefinedAttribute.ValuesProperty- See Also:
-
builder
-