#[non_exhaustive]pub struct CreateVpcPeeringConnectionInput { /* private fields */ }
Implementations§
source§impl CreateVpcPeeringConnectionInput
impl CreateVpcPeeringConnectionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateVpcPeeringConnection, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateVpcPeeringConnection, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateVpcPeeringConnection
>
Examples found in repository?
25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::CreateVpcPeeringConnection,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::CreateVpcPeeringConnectionError>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
Ok(crate::operation::customize::CustomizableOperation { handle, operation })
}
/// Sends the request and returns the response.
///
/// If an error occurs, an `SdkError` will be returned with additional details that
/// can be matched against.
///
/// By default, any retryable failures will be retried twice. Retry behavior
/// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> std::result::Result<
crate::output::CreateVpcPeeringConnectionOutput,
aws_smithy_http::result::SdkError<crate::error::CreateVpcPeeringConnectionError>,
> {
let op = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateVpcPeeringConnectionInput
.
source§impl CreateVpcPeeringConnectionInput
impl CreateVpcPeeringConnectionInput
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
sourcepub fn peer_owner_id(&self) -> Option<&str>
pub fn peer_owner_id(&self) -> Option<&str>
The Amazon Web Services account ID of the owner of the accepter VPC.
Default: Your Amazon Web Services account ID
sourcepub fn peer_vpc_id(&self) -> Option<&str>
pub fn peer_vpc_id(&self) -> Option<&str>
The ID of the VPC with which you are creating the VPC peering connection. You must specify this parameter in the request.
sourcepub fn vpc_id(&self) -> Option<&str>
pub fn vpc_id(&self) -> Option<&str>
The ID of the requester VPC. You must specify this parameter in the request.
sourcepub fn peer_region(&self) -> Option<&str>
pub fn peer_region(&self) -> Option<&str>
The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in which you make the request.
Default: The Region in which you make the request.
sourcepub fn tag_specifications(&self) -> Option<&[TagSpecification]>
pub fn tag_specifications(&self) -> Option<&[TagSpecification]>
The tags to assign to the peering connection.
Trait Implementations§
source§impl Clone for CreateVpcPeeringConnectionInput
impl Clone for CreateVpcPeeringConnectionInput
source§fn clone(&self) -> CreateVpcPeeringConnectionInput
fn clone(&self) -> CreateVpcPeeringConnectionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more