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)


2977
2978
2979
2980
2981
2982
# File 'lib/aws-sdk-ssm/types.rb', line 2977

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

#instance_idString

The ID of the instance.

Returns:

  • (String)


2977
2978
2979
2980
2981
2982
# File 'lib/aws-sdk-ssm/types.rb', line 2977

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

#nameString

The name of the Systems Manager document.

Returns:

  • (String)


2977
2978
2979
2980
2981
2982
# File 'lib/aws-sdk-ssm/types.rb', line 2977

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