Class: Aws::SSM::Types::DeleteAssociationRequest

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

Overview

Note:

When making an API call, you may pass DeleteAssociationRequest data as a hash:

{
  name: "DocumentARN",
  instance_id: "InstanceId",
  association_id: "AssociationId",
}

Instance Attribute Summary collapse

Instance Attribute Details

#association_idString

The association ID that you want to delete.

Returns:

  • (String)


3343
3344
3345
3346
3347
3348
# File 'lib/aws-sdk-ssm/types.rb', line 3343

class DeleteAssociationRequest < Struct.new(
  :name,
  :instance_id,
  :association_id)
  include Aws::Structure
end

#instance_idString

The ID of the instance.

Returns:

  • (String)


3343
3344
3345
3346
3347
3348
# File 'lib/aws-sdk-ssm/types.rb', line 3343

class DeleteAssociationRequest < Struct.new(
  :name,
  :instance_id,
  :association_id)
  include Aws::Structure
end

#nameString

The name of the Systems Manager document.

Returns:

  • (String)


3343
3344
3345
3346
3347
3348
# File 'lib/aws-sdk-ssm/types.rb', line 3343

class DeleteAssociationRequest < Struct.new(
  :name,
  :instance_id,
  :association_id)
  include Aws::Structure
end