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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudformation/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)


10214
10215
10216
10217
10218
10219
10220
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 10214

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)


10214
10215
10216
10217
10218
10219
10220
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 10214

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)


10214
10215
10216
10217
10218
10219
10220
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 10214

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