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: "DocumentName",
  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)


2823
2824
2825
2826
2827
2828
# File 'lib/aws-sdk-ssm/types.rb', line 2823

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

#instance_idString

The ID of the instance.

Returns:

  • (String)


2823
2824
2825
2826
2827
2828
# File 'lib/aws-sdk-ssm/types.rb', line 2823

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

#nameString

The name of the Systems Manager document.

Returns:

  • (String)


2823
2824
2825
2826
2827
2828
# File 'lib/aws-sdk-ssm/types.rb', line 2823

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