Class: Aws::ServiceCatalog::Types::AccessLevelFilter

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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

Instance Attribute Details

#keyString

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.

Returns:

  • (String)


95
96
97
98
99
100
# File 'lib/aws-sdk-servicecatalog/types.rb', line 95

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

#valueString

The user to which the access level applies. The only supported value is ‘Self`.

Returns:

  • (String)


95
96
97
98
99
100
# File 'lib/aws-sdk-servicecatalog/types.rb', line 95

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