Struct aws_sdk_ssm::input::DeleteAssociationInput [−][src]
#[non_exhaustive]pub struct DeleteAssociationInput {
pub name: Option<String>,
pub instance_id: Option<String>,
pub association_id: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the SSM document.
instance_id: Option<String>
The instance ID.
InstanceId
has been deprecated. To specify an instance 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.
association_id: Option<String>
The association ID that you want to delete.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteAssociation, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteAssociation, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DeleteAssociation
>
Creates a new builder-style object to manufacture DeleteAssociationInput
The instance ID.
InstanceId
has been deprecated. To specify an instance 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.
The association ID that you want to delete.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DeleteAssociationInput
impl Send for DeleteAssociationInput
impl Sync for DeleteAssociationInput
impl Unpin for DeleteAssociationInput
impl UnwindSafe for DeleteAssociationInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more