Class: Aws::CloudFormation::Types::TypeFilters

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudformation/types.rb

Overview

Filter criteria to use in determining which extensions to return.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#categoryString

The category of extensions to return.

  • ‘REGISTERED`: Private extensions that have been registered for this account and Region.

  • ‘ACTIVATED`: Public extensions that have been activated for this account and Region.

  • ‘THIRD_PARTY`: Extensions available for use from publishers other than Amazon. This includes:

    • Private extensions registered in the account.

    • Public extensions from publishers other than Amazon, whether activated or not.

  • ‘AWS_TYPES`: Extensions available for use from Amazon.

Returns:

  • (String)


10284
10285
10286
10287
10288
10289
10290
# File 'lib/aws-sdk-cloudformation/types.rb', line 10284

class TypeFilters < Struct.new(
  :category,
  :publisher_id,
  :type_name_prefix)
  SENSITIVE = []
  include Aws::Structure
end

#publisher_idString

The id of the publisher of the extension.

Extensions published by Amazon aren’t assigned a publisher ID. Use the ‘AWS_TYPES` category to specify a list of types published by Amazon.

Returns:

  • (String)


10284
10285
10286
10287
10288
10289
10290
# File 'lib/aws-sdk-cloudformation/types.rb', line 10284

class TypeFilters < Struct.new(
  :category,
  :publisher_id,
  :type_name_prefix)
  SENSITIVE = []
  include Aws::Structure
end

#type_name_prefixString

A prefix to use as a filter for results.

Returns:

  • (String)


10284
10285
10286
10287
10288
10289
10290
# File 'lib/aws-sdk-cloudformation/types.rb', line 10284

class TypeFilters < Struct.new(
  :category,
  :publisher_id,
  :type_name_prefix)
  SENSITIVE = []
  include Aws::Structure
end