Class: Aws::ControlCatalog::Types::ControlMappingFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ControlCatalog::Types::ControlMappingFilter
- Defined in:
- gems/aws-sdk-controlcatalog/lib/aws-sdk-controlcatalog/types.rb
Overview
A structure that defines filtering criteria for the ListControlMappings operation. You can use this filter to narrow down the list of control mappings based on control ARNs, common control ARNs, or mapping types.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#common_control_arns ⇒ Array<String>
A list of common control ARNs to filter the mappings.
-
#control_arns ⇒ Array<String>
A list of control ARNs to filter the mappings.
-
#mapping_types ⇒ Array<String>
A list of mapping types to filter the mappings.
Instance Attribute Details
#common_control_arns ⇒ Array<String>
A list of common control ARNs to filter the mappings. When specified, only mappings associated with these common controls are returned.
219 220 221 222 223 224 225 |
# File 'gems/aws-sdk-controlcatalog/lib/aws-sdk-controlcatalog/types.rb', line 219 class ControlMappingFilter < Struct.new( :control_arns, :common_control_arns, :mapping_types) SENSITIVE = [] include Aws::Structure end |
#control_arns ⇒ Array<String>
A list of control ARNs to filter the mappings. When specified, only mappings associated with these controls are returned.
219 220 221 222 223 224 225 |
# File 'gems/aws-sdk-controlcatalog/lib/aws-sdk-controlcatalog/types.rb', line 219 class ControlMappingFilter < Struct.new( :control_arns, :common_control_arns, :mapping_types) SENSITIVE = [] include Aws::Structure end |
#mapping_types ⇒ Array<String>
A list of mapping types to filter the mappings. When specified, only mappings of these types are returned.
219 220 221 222 223 224 225 |
# File 'gems/aws-sdk-controlcatalog/lib/aws-sdk-controlcatalog/types.rb', line 219 class ControlMappingFilter < Struct.new( :control_arns, :common_control_arns, :mapping_types) SENSITIVE = [] include Aws::Structure end |