aws_sdk_bedrockagentcorecontrol/client/synchronize_gateway_targets.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`SynchronizeGatewayTargets`](crate::operation::synchronize_gateway_targets::builders::SynchronizeGatewayTargetsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`gateway_identifier(impl Into<String>)`](crate::operation::synchronize_gateway_targets::builders::SynchronizeGatewayTargetsFluentBuilder::gateway_identifier) / [`set_gateway_identifier(Option<String>)`](crate::operation::synchronize_gateway_targets::builders::SynchronizeGatewayTargetsFluentBuilder::set_gateway_identifier):<br>required: **true**<br><p>The gateway Identifier.</p><br>
7 /// - [`target_id_list(impl Into<String>)`](crate::operation::synchronize_gateway_targets::builders::SynchronizeGatewayTargetsFluentBuilder::target_id_list) / [`set_target_id_list(Option<Vec::<String>>)`](crate::operation::synchronize_gateway_targets::builders::SynchronizeGatewayTargetsFluentBuilder::set_target_id_list):<br>required: **true**<br><p>The target ID list.</p><br>
8 /// - On success, responds with [`SynchronizeGatewayTargetsOutput`](crate::operation::synchronize_gateway_targets::SynchronizeGatewayTargetsOutput) with field(s):
9 /// - [`targets(Option<Vec::<GatewayTarget>>)`](crate::operation::synchronize_gateway_targets::SynchronizeGatewayTargetsOutput::targets): <p>The gateway targets for synchronization.</p>
10 /// - On failure, responds with [`SdkError<SynchronizeGatewayTargetsError>`](crate::operation::synchronize_gateway_targets::SynchronizeGatewayTargetsError)
11 pub fn synchronize_gateway_targets(&self) -> crate::operation::synchronize_gateway_targets::builders::SynchronizeGatewayTargetsFluentBuilder {
12 crate::operation::synchronize_gateway_targets::builders::SynchronizeGatewayTargetsFluentBuilder::new(self.handle.clone())
13 }
14}