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

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

Overview

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)


76
77
78
79
80
81
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 76

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)


76
77
78
79
80
81
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 76

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