Class: Aws::ApplicationSignals::Types::BatchDeleteInstrumentationConfigurationsResponse

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#deleted_countInteger

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.

Returns:

  • (Integer)


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

#errorsArray<Types::BatchDeleteError>

List of configurations that failed to delete.

Returns:



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_deletionsArray<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