Interface CfnEntitlementPropsMixin.AttributeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEntitlementPropsMixin.AttributeProperty.Jsii$Proxy
- Enclosing class:
CfnEntitlementPropsMixin
@Stability(Stable)
public static interface CfnEntitlementPropsMixin.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.cfnpropertymixins.services.appstream.*;
AttributeProperty attributeProperty = AttributeProperty.builder()
.name("name")
.value("value")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEntitlementPropsMixin.AttributePropertystatic final classAn implementation forCfnEntitlementPropsMixin.AttributeProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetName()A supported AWS IAM SAML PrincipalTag attribute that is matched to a value when a user identity federates to an AppStream 2.0 SAML application.default StringgetValue()A value that is matched to a supported SAML attribute name when a user identity federates to an AppStream 2.0 SAML application.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
A supported AWS IAM SAML PrincipalTag attribute that is matched to a value when a user identity federates to an AppStream 2.0 SAML application.The following are supported values:
- roles
- department
- organization
- groups
- title
- costCenter
- userType
- See Also:
-
getValue
A value that is matched to a supported SAML attribute name when a user identity federates to an AppStream 2.0 SAML application.- See Also:
-
builder
-