Struct aws_sdk_ssm::input::DeleteAssociationInput
source · [−]#[non_exhaustive]pub struct DeleteAssociationInput { /* private fields */ }
Implementations
sourceimpl DeleteAssociationInput
impl DeleteAssociationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteAssociation, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteAssociation, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DeleteAssociation
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeleteAssociationInput
.
sourceimpl DeleteAssociationInput
impl DeleteAssociationInput
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
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.
sourcepub fn association_id(&self) -> Option<&str>
pub fn association_id(&self) -> Option<&str>
The association ID that you want to delete.
Trait Implementations
sourceimpl Clone for DeleteAssociationInput
impl Clone for DeleteAssociationInput
sourcefn clone(&self) -> DeleteAssociationInput
fn clone(&self) -> DeleteAssociationInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DeleteAssociationInput
impl Debug for DeleteAssociationInput
sourceimpl PartialEq<DeleteAssociationInput> for DeleteAssociationInput
impl PartialEq<DeleteAssociationInput> for DeleteAssociationInput
sourcefn eq(&self, other: &DeleteAssociationInput) -> bool
fn eq(&self, other: &DeleteAssociationInput) -> bool
impl StructuralPartialEq for DeleteAssociationInput
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more