Class: Aws::Shield::Types::InclusionProtectionFilters

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

Overview

Narrows the set of protections that the call retrieves. You can retrieve a single protection by providing its name or the ARN (Amazon Resource Name) of its protected resource. You can also retrieve all protections for a specific resource type. You can provide up to one criteria per filter type. Shield Advanced returns protections that exactly match all of the filter criteria that you provide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#protection_namesArray<String>

The name of the protection that you want to retrieve.

Returns:

  • (Array<String>)


1017
1018
1019
1020
1021
1022
1023
# File 'gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb', line 1017

class InclusionProtectionFilters < Struct.new(
  :resource_arns,
  :protection_names,
  :resource_types)
  SENSITIVE = []
  include Aws::Structure
end

#resource_arnsArray<String>

The ARN (Amazon Resource Name) of the resource whose protection you want to retrieve.

Returns:

  • (Array<String>)


1017
1018
1019
1020
1021
1022
1023
# File 'gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb', line 1017

class InclusionProtectionFilters < Struct.new(
  :resource_arns,
  :protection_names,
  :resource_types)
  SENSITIVE = []
  include Aws::Structure
end

#resource_typesArray<String>

The type of protected resource whose protections you want to retrieve.

Returns:

  • (Array<String>)


1017
1018
1019
1020
1021
1022
1023
# File 'gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb', line 1017

class InclusionProtectionFilters < Struct.new(
  :resource_arns,
  :protection_names,
  :resource_types)
  SENSITIVE = []
  include Aws::Structure
end