Class: Aws::AppStream::Types::EntitlementAttribute

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appstream/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

A supported AWS IAM SAML ‘PrincipalTag` attribute that is matched to the associated value when a user identity federates into an Amazon AppStream 2.0 SAML application.

The following are valid values:

  • roles

  • department

  • organization

  • groups

  • title

  • costCenter

  • userType

Returns:

  • (String)


3262
3263
3264
3265
3266
3267
# File 'lib/aws-sdk-appstream/types.rb', line 3262

class EntitlementAttribute < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

A value that is matched to a supported SAML attribute name when a user identity federates into an Amazon AppStream 2.0 SAML application.

Returns:

  • (String)


3262
3263
3264
3265
3266
3267
# File 'lib/aws-sdk-appstream/types.rb', line 3262

class EntitlementAttribute < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end