Interface CfnEntitlement.AttributeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEntitlement.AttributeProperty.Jsii$Proxy
Enclosing class:
CfnEntitlement

@Stability(Stable) public static interface CfnEntitlement.AttributeProperty extends software.amazon.jsii.JsiiSerializable
An attribute that belongs to an entitlement.

Application entitlements work by matching a supported SAML 2.0 attribute name to a value when a user identity federates to an AppStream 2.0 SAML application.

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.appstream.*;
 AttributeProperty attributeProperty = AttributeProperty.builder()
         .name("name")
         .value("value")
         .build();
 

See Also: