#[non_exhaustive]pub struct DeregisterTransitGatewayMulticastGroupMembersInput { /* private fields */ }Implementations§
source§impl DeregisterTransitGatewayMulticastGroupMembersInput
impl DeregisterTransitGatewayMulticastGroupMembersInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeregisterTransitGatewayMulticastGroupMembers, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeregisterTransitGatewayMulticastGroupMembers, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DeregisterTransitGatewayMulticastGroupMembers>
Examples found in repository?
src/client.rs (line 32433)
32417 32418 32419 32420 32421 32422 32423 32424 32425 32426 32427 32428 32429 32430 32431 32432 32433 32434 32435 32436 32437 32438 32439 32440 32441 32442 32443 32444 32445 32446 32447 32448 32449 32450 32451 32452 32453 32454 32455 32456 32457 32458 32459 32460 32461 32462 32463
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::DeregisterTransitGatewayMulticastGroupMembers,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<
crate::error::DeregisterTransitGatewayMulticastGroupMembersError,
>,
> {
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::DeregisterTransitGatewayMulticastGroupMembersOutput,
aws_smithy_http::result::SdkError<
crate::error::DeregisterTransitGatewayMulticastGroupMembersError,
>,
> {
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 DeregisterTransitGatewayMulticastGroupMembersInput.
source§impl DeregisterTransitGatewayMulticastGroupMembersInput
impl DeregisterTransitGatewayMulticastGroupMembersInput
sourcepub fn transit_gateway_multicast_domain_id(&self) -> Option<&str>
pub fn transit_gateway_multicast_domain_id(&self) -> Option<&str>
The ID of the transit gateway multicast domain.
sourcepub fn group_ip_address(&self) -> Option<&str>
pub fn group_ip_address(&self) -> Option<&str>
The IP address assigned to the transit gateway multicast group.
sourcepub fn network_interface_ids(&self) -> Option<&[String]>
pub fn network_interface_ids(&self) -> Option<&[String]>
The IDs of the group members' network interfaces.
Trait Implementations§
source§impl Clone for DeregisterTransitGatewayMulticastGroupMembersInput
impl Clone for DeregisterTransitGatewayMulticastGroupMembersInput
source§fn clone(&self) -> DeregisterTransitGatewayMulticastGroupMembersInput
fn clone(&self) -> DeregisterTransitGatewayMulticastGroupMembersInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more