Interface CfnSecurityProfile.PrimaryAttributeValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityProfile.PrimaryAttributeValueProperty.Jsii$Proxy
- Enclosing class:
CfnSecurityProfile
@Stability(Stable)
public static interface CfnSecurityProfile.PrimaryAttributeValueProperty
extends software.amazon.jsii.JsiiSerializable
An object defining the access control for a specific attribute and its values.
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.*;
PrimaryAttributeValueProperty primaryAttributeValueProperty = PrimaryAttributeValueProperty.builder()
.accessType("accessType")
.attributeName("attributeName")
.values(List.of("values"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSecurityProfile.PrimaryAttributeValuePropertystatic final classAn implementation forCfnSecurityProfile.PrimaryAttributeValueProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Specifies the type of access granted.The name of the primary attribute.An array of allowed primary values for the specified primary attribute.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessType
Specifies the type of access granted.Currently, only "ALLOW" is supported
- See Also:
-
getAttributeName
The name of the primary attribute.- See Also:
-
getValues
An array of allowed primary values for the specified primary attribute.- See Also:
-
builder
-