Class: Aws::ServiceCatalog::Types::AccessLevelFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceCatalog::Types::AccessLevelFilter
- Defined in:
- gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb
Overview
Note:
When making an API call, you may pass AccessLevelFilter data as a hash:
{
key: "Account", # accepts Account, Role, User
value: "AccessLevelFilterValue",
}
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.
95 96 97 98 99 100 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 95 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
.
95 96 97 98 99 100 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 95 class AccessLevelFilter < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |