Class: Aws::AccountAccess::Types::EntitlementSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccountAccess::Types::EntitlementSummary
- 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
-
#principal_role ⇒ Types::PrincipalRoleEntitlementSummary
The principal-to-role mapping summary for the entitlement.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#principal_role ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
252 253 254 |
# File 'gems/aws-sdk-accountaccess/lib/aws-sdk-accountaccess/types.rb', line 252 def unknown @unknown end |