Class: Aws::AccountAccess::Types::EntitlementSummary

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-accountaccess/lib/aws-sdk-accountaccess/types.rb

Overview

Note:

EntitlementSummary is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EntitlementSummary corresponding to the set member.

Contains summary information about an entitlement.

Defined Under Namespace

Classes: PrincipalRole, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#principal_roleTypes::PrincipalRoleEntitlementSummary

The principal-to-role mapping summary for the entitlement.



252
253
254
255
256
257
258
259
260
261
# File 'gems/aws-sdk-accountaccess/lib/aws-sdk-accountaccess/types.rb', line 252

class EntitlementSummary < Struct.new(
  :principal_role,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class PrincipalRole < EntitlementSummary; end
  class Unknown < EntitlementSummary; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



252
253
254
# File 'gems/aws-sdk-accountaccess/lib/aws-sdk-accountaccess/types.rb', line 252

def unknown
  @unknown
end