#[non_exhaustive]pub struct UpdateVpcAttachmentInput {
pub attachment_id: Option<String>,
pub add_subnet_arns: Option<Vec<String>>,
pub remove_subnet_arns: Option<Vec<String>>,
pub options: Option<VpcOptions>,
}
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.attachment_id: Option<String>
The ID of the attachment.
add_subnet_arns: Option<Vec<String>>
Adds a subnet ARN to the VPC attachment.
remove_subnet_arns: Option<Vec<String>>
Removes a subnet ARN from the attachment.
options: Option<VpcOptions>
Additional options for updating the VPC attachment.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateVpcAttachment, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateVpcAttachment, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateVpcAttachment
>
Creates a new builder-style object to manufacture UpdateVpcAttachmentInput
The ID of the attachment.
Removes a subnet ARN from the attachment.
Additional options for updating the VPC attachment.
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 UpdateVpcAttachmentInput
impl Send for UpdateVpcAttachmentInput
impl Sync for UpdateVpcAttachmentInput
impl Unpin for UpdateVpcAttachmentInput
impl UnwindSafe for UpdateVpcAttachmentInput
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