Struct aws_sdk_ssm::operation::update_resource_data_sync::builders::UpdateResourceDataSyncFluentBuilder
source · pub struct UpdateResourceDataSyncFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateResourceDataSync
.
Update a resource data sync. After you create a resource data sync for a Region, you can't change the account options for that sync. For example, if you create a sync in the us-east-2 (Ohio) Region and you choose the Include only the current account
option, you can't edit that sync later and choose the Include all accounts from my Organizations configuration
option. Instead, you must delete the first resource data sync, and create a new one.
This API operation only supports a resource data sync that was created with a SyncFromSource SyncType
.
Implementations§
source§impl UpdateResourceDataSyncFluentBuilder
impl UpdateResourceDataSyncFluentBuilder
sourcepub fn as_input(&self) -> &UpdateResourceDataSyncInputBuilder
pub fn as_input(&self) -> &UpdateResourceDataSyncInputBuilder
Access the UpdateResourceDataSync as a reference.
sourcepub async fn send(
self
) -> Result<UpdateResourceDataSyncOutput, SdkError<UpdateResourceDataSyncError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateResourceDataSyncOutput, SdkError<UpdateResourceDataSyncError, HttpResponse>>
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, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdateResourceDataSyncOutput, UpdateResourceDataSyncError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateResourceDataSyncOutput, UpdateResourceDataSyncError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn sync_name(self, input: impl Into<String>) -> Self
pub fn sync_name(self, input: impl Into<String>) -> Self
The name of the resource data sync you want to update.
sourcepub fn set_sync_name(self, input: Option<String>) -> Self
pub fn set_sync_name(self, input: Option<String>) -> Self
The name of the resource data sync you want to update.
sourcepub fn get_sync_name(&self) -> &Option<String>
pub fn get_sync_name(&self) -> &Option<String>
The name of the resource data sync you want to update.
sourcepub fn sync_type(self, input: impl Into<String>) -> Self
pub fn sync_type(self, input: impl Into<String>) -> Self
The type of resource data sync. The supported SyncType
is SyncFromSource.
sourcepub fn set_sync_type(self, input: Option<String>) -> Self
pub fn set_sync_type(self, input: Option<String>) -> Self
The type of resource data sync. The supported SyncType
is SyncFromSource.
sourcepub fn get_sync_type(&self) -> &Option<String>
pub fn get_sync_type(&self) -> &Option<String>
The type of resource data sync. The supported SyncType
is SyncFromSource.
sourcepub fn sync_source(self, input: ResourceDataSyncSource) -> Self
pub fn sync_source(self, input: ResourceDataSyncSource) -> Self
Specify information about the data sources to synchronize.
sourcepub fn set_sync_source(self, input: Option<ResourceDataSyncSource>) -> Self
pub fn set_sync_source(self, input: Option<ResourceDataSyncSource>) -> Self
Specify information about the data sources to synchronize.
sourcepub fn get_sync_source(&self) -> &Option<ResourceDataSyncSource>
pub fn get_sync_source(&self) -> &Option<ResourceDataSyncSource>
Specify information about the data sources to synchronize.
Trait Implementations§
source§impl Clone for UpdateResourceDataSyncFluentBuilder
impl Clone for UpdateResourceDataSyncFluentBuilder
source§fn clone(&self) -> UpdateResourceDataSyncFluentBuilder
fn clone(&self) -> UpdateResourceDataSyncFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more