Class: Aws::ApplicationSignals::Types::BatchDeleteInstrumentationConfigurationsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::BatchDeleteInstrumentationConfigurationsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-applicationsignals/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deleted_count ⇒ Integer
Number of configurations successfully deleted.
-
#errors ⇒ Array<Types::BatchDeleteError>
List of configurations that failed to delete.
-
#successful_deletions ⇒ Array<Types::BatchDeleteSuccessfulDeletion>
List of successfully deleted configurations.
Instance Attribute Details
#deleted_count ⇒ Integer
Number of configurations successfully deleted. When deleting by scope, this is the total count of deleted items. When deleting by ARN list, this equals the length of SuccessfulDeletions.
301 302 303 304 305 306 307 |
# File 'lib/aws-sdk-applicationsignals/types.rb', line 301 class BatchDeleteInstrumentationConfigurationsResponse < Struct.new( :deleted_count, :successful_deletions, :errors) SENSITIVE = [] include Aws::Structure end |
#errors ⇒ Array<Types::BatchDeleteError>
List of configurations that failed to delete.
301 302 303 304 305 306 307 |
# File 'lib/aws-sdk-applicationsignals/types.rb', line 301 class BatchDeleteInstrumentationConfigurationsResponse < Struct.new( :deleted_count, :successful_deletions, :errors) SENSITIVE = [] include Aws::Structure end |
#successful_deletions ⇒ Array<Types::BatchDeleteSuccessfulDeletion>
List of successfully deleted configurations. Deleting by scope populates SignalType and LocationHash per item. Deleting by ARN list populates ResourceArn per item.
301 302 303 304 305 306 307 |
# File 'lib/aws-sdk-applicationsignals/types.rb', line 301 class BatchDeleteInstrumentationConfigurationsResponse < Struct.new( :deleted_count, :successful_deletions, :errors) SENSITIVE = [] include Aws::Structure end |