Class: Aws::ServiceCatalog::Types::AccessLevelFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceCatalog::Types::AccessLevelFilter
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-servicecatalog/types.rb
Overview
The access level to use to filter results.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The access level.
-
#value ⇒ String
The user to which the access level applies.
Instance Attribute Details
#key ⇒ String
The access level.
-
‘Account` - Filter results based on the account.
-
‘Role` - Filter results based on the federated role of the specified user.
-
‘User` - Filter results based on the specified user.
76 77 78 79 80 81 |
# File 'lib/aws-sdk-servicecatalog/types.rb', line 76 class AccessLevelFilter < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The user to which the access level applies. The only supported value is ‘self`.
76 77 78 79 80 81 |
# File 'lib/aws-sdk-servicecatalog/types.rb', line 76 class AccessLevelFilter < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |