Class CfnEntitlement.AttributeProperty
An attribute that belongs to an entitlement.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppStream
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEntitlement.AttributeProperty : CfnEntitlement.IAttributeProperty
Syntax (vb)
Public Class CfnEntitlement.AttributeProperty Implements CfnEntitlement.IAttributeProperty
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppStream;
var attributeProperty = new AttributeProperty {
Name = "name",
Value = "value"
};
Synopsis
Constructors
AttributeProperty() | An attribute that belongs to an entitlement. |
Properties
Name | 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. |
Value | A value that is matched to a supported SAML attribute name when a user identity federates to an AppStream 2.0 SAML application. |
Constructors
AttributeProperty()
An attribute that belongs to an entitlement.
public AttributeProperty()
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppStream;
var attributeProperty = new AttributeProperty {
Name = "name",
Value = "value"
};
Properties
Name
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.
public string Name { get; set; }
Property Value
Remarks
The following are supported values:
Value
A value that is matched to a supported SAML attribute name when a user identity federates to an AppStream 2.0 SAML application.
public string Value { get; set; }