#[non_exhaustive]pub struct DeregisterTransitGatewayMulticastGroupSourcesInput { /* private fields */ }Implementations§
source§impl DeregisterTransitGatewayMulticastGroupSourcesInput
impl DeregisterTransitGatewayMulticastGroupSourcesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeregisterTransitGatewayMulticastGroupSources, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeregisterTransitGatewayMulticastGroupSources, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DeregisterTransitGatewayMulticastGroupSources>
Examples found in repository?
src/client.rs (line 32556)
32540 32541 32542 32543 32544 32545 32546 32547 32548 32549 32550 32551 32552 32553 32554 32555 32556 32557 32558 32559 32560 32561 32562 32563 32564 32565 32566 32567 32568 32569 32570 32571 32572 32573 32574 32575 32576 32577 32578 32579 32580 32581 32582 32583 32584 32585 32586
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::DeregisterTransitGatewayMulticastGroupSources,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<
crate::error::DeregisterTransitGatewayMulticastGroupSourcesError,
>,
> {
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::DeregisterTransitGatewayMulticastGroupSourcesOutput,
aws_smithy_http::result::SdkError<
crate::error::DeregisterTransitGatewayMulticastGroupSourcesError,
>,
> {
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 DeregisterTransitGatewayMulticastGroupSourcesInput.
source§impl DeregisterTransitGatewayMulticastGroupSourcesInput
impl DeregisterTransitGatewayMulticastGroupSourcesInput
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 sources' network interfaces.
Trait Implementations§
source§impl Clone for DeregisterTransitGatewayMulticastGroupSourcesInput
impl Clone for DeregisterTransitGatewayMulticastGroupSourcesInput
source§fn clone(&self) -> DeregisterTransitGatewayMulticastGroupSourcesInput
fn clone(&self) -> DeregisterTransitGatewayMulticastGroupSourcesInput
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