Interface CfnSecurityProfile.PrimaryAttributeAccessControlConfigurationItemProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityProfile.PrimaryAttributeAccessControlConfigurationItemProperty.Jsii$Proxy
- Enclosing class:
CfnSecurityProfile
@Stability(Stable)
public static interface CfnSecurityProfile.PrimaryAttributeAccessControlConfigurationItemProperty
extends software.amazon.jsii.JsiiSerializable
Contains the configuration for record-based access control.
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.*;
PrimaryAttributeAccessControlConfigurationItemProperty primaryAttributeAccessControlConfigurationItemProperty = PrimaryAttributeAccessControlConfigurationItemProperty.builder()
.primaryAttributeValues(List.of(PrimaryAttributeValueProperty.builder()
.accessType("accessType")
.attributeName("attributeName")
.values(List.of("values"))
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnSecurityProfile.PrimaryAttributeAccessControlConfigurationItemProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPrimaryAttributeValues
An array of PrimaryAttributeValue objects.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnSecurityProfile.PrimaryAttributeValueProperty>- See Also:
-
builder
@Stability(Stable) static CfnSecurityProfile.PrimaryAttributeAccessControlConfigurationItemProperty.Builder builder()
-