#[non_exhaustive]pub struct CreateVpcAttachmentInput {
pub core_network_id: Option<String>,
pub vpc_arn: Option<String>,
pub subnet_arns: Option<Vec<String>>,
pub options: Option<VpcOptions>,
pub tags: Option<Vec<Tag>>,
pub client_token: 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.core_network_id: Option<String>
The ID of a core network for the VPC attachment.
vpc_arn: Option<String>
The ARN of the VPC.
subnet_arns: Option<Vec<String>>
The subnet ARN of the VPC attachment.
options: Option<VpcOptions>
Options for the VPC attachment.
The key-value tags associated with the request.
client_token: Option<String>
The client token associated with the request.
Implementations
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateVpcAttachment, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateVpcAttachment, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateVpcAttachment
>
Creates a new builder-style object to manufacture CreateVpcAttachmentInput
The ID of a core network for the VPC attachment.
Options for the VPC attachment.
The key-value tags associated with the request.
The client token associated with the request.
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 CreateVpcAttachmentInput
impl Send for CreateVpcAttachmentInput
impl Sync for CreateVpcAttachmentInput
impl Unpin for CreateVpcAttachmentInput
impl UnwindSafe for CreateVpcAttachmentInput
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