#[non_exhaustive]pub struct RegisterTransitGatewayMulticastGroupSourcesInput { /* private fields */ }Implementations§
source§impl RegisterTransitGatewayMulticastGroupSourcesInput
impl RegisterTransitGatewayMulticastGroupSourcesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RegisterTransitGatewayMulticastGroupSources, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RegisterTransitGatewayMulticastGroupSources, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<RegisterTransitGatewayMulticastGroupSources>
Examples found in repository?
src/client.rs (line 72473)
72457 72458 72459 72460 72461 72462 72463 72464 72465 72466 72467 72468 72469 72470 72471 72472 72473 72474 72475 72476 72477 72478 72479 72480 72481 72482 72483 72484 72485 72486 72487 72488 72489 72490 72491 72492 72493 72494 72495 72496 72497 72498 72499 72500 72501 72502 72503
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::RegisterTransitGatewayMulticastGroupSources,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<
crate::error::RegisterTransitGatewayMulticastGroupSourcesError,
>,
> {
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::RegisterTransitGatewayMulticastGroupSourcesOutput,
aws_smithy_http::result::SdkError<
crate::error::RegisterTransitGatewayMulticastGroupSourcesError,
>,
> {
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 RegisterTransitGatewayMulticastGroupSourcesInput.
source§impl RegisterTransitGatewayMulticastGroupSourcesInput
impl RegisterTransitGatewayMulticastGroupSourcesInput
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 group sources' network interface IDs to register with the transit gateway multicast group.
Trait Implementations§
source§impl Clone for RegisterTransitGatewayMulticastGroupSourcesInput
impl Clone for RegisterTransitGatewayMulticastGroupSourcesInput
source§fn clone(&self) -> RegisterTransitGatewayMulticastGroupSourcesInput
fn clone(&self) -> RegisterTransitGatewayMulticastGroupSourcesInput
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