#[non_exhaustive]pub struct RegisterTransitGatewayMulticastGroupMembersInput { /* private fields */ }Implementations§
source§impl RegisterTransitGatewayMulticastGroupMembersInput
impl RegisterTransitGatewayMulticastGroupMembersInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RegisterTransitGatewayMulticastGroupMembers, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RegisterTransitGatewayMulticastGroupMembers, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<RegisterTransitGatewayMulticastGroupMembers>
Examples found in repository?
src/client.rs (line 72348)
72332 72333 72334 72335 72336 72337 72338 72339 72340 72341 72342 72343 72344 72345 72346 72347 72348 72349 72350 72351 72352 72353 72354 72355 72356 72357 72358 72359 72360 72361 72362 72363 72364 72365 72366 72367 72368 72369 72370 72371 72372 72373 72374 72375 72376 72377 72378
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::RegisterTransitGatewayMulticastGroupMembers,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<
crate::error::RegisterTransitGatewayMulticastGroupMembersError,
>,
> {
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::RegisterTransitGatewayMulticastGroupMembersOutput,
aws_smithy_http::result::SdkError<
crate::error::RegisterTransitGatewayMulticastGroupMembersError,
>,
> {
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 RegisterTransitGatewayMulticastGroupMembersInput.
source§impl RegisterTransitGatewayMulticastGroupMembersInput
impl RegisterTransitGatewayMulticastGroupMembersInput
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 members' network interface IDs to register with the transit gateway multicast group.
Trait Implementations§
source§impl Clone for RegisterTransitGatewayMulticastGroupMembersInput
impl Clone for RegisterTransitGatewayMulticastGroupMembersInput
source§fn clone(&self) -> RegisterTransitGatewayMulticastGroupMembersInput
fn clone(&self) -> RegisterTransitGatewayMulticastGroupMembersInput
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