Class: Aws::SSM::Types::DeleteAssociationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::DeleteAssociationRequest
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#association_id ⇒ String
The association ID that you want to delete.
-
#instance_id ⇒ String
The managed node ID.
-
#name ⇒ String
The name of the SSM document.
Instance Attribute Details
#association_id ⇒ String
The association ID that you want to delete.
4215 4216 4217 4218 4219 4220 4221 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 4215 class DeleteAssociationRequest < Struct.new( :name, :instance_id, :association_id) SENSITIVE = [] include Aws::Structure end |
#instance_id ⇒ String
The managed node ID.
InstanceId
has been deprecated. To specify a managed node ID for
an association, use the Targets
parameter. Requests that include
the parameter InstanceID
with Systems Manager documents (SSM
documents) that use schema version 2.0 or later will fail. In
addition, if you use the parameter InstanceId
, you can't use the
parameters AssociationName
, DocumentVersion
, MaxErrors
,
MaxConcurrency
, OutputLocation
, or ScheduleExpression
. To use
these parameters, you must use the Targets
parameter.
4215 4216 4217 4218 4219 4220 4221 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 4215 class DeleteAssociationRequest < Struct.new( :name, :instance_id, :association_id) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the SSM document.
4215 4216 4217 4218 4219 4220 4221 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 4215 class DeleteAssociationRequest < Struct.new( :name, :instance_id, :association_id) SENSITIVE = [] include Aws::Structure end |