Struct aws_sdk_ssm::client::fluent_builders::UpdateResourceDataSync
source · [−]pub struct UpdateResourceDataSync { /* 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
sourceimpl UpdateResourceDataSync
impl UpdateResourceDataSync
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateResourceDataSync, AwsResponseRetryClassifier>, SdkError<UpdateResourceDataSyncError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateResourceDataSync, AwsResponseRetryClassifier>, SdkError<UpdateResourceDataSyncError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateResourceDataSyncOutput, SdkError<UpdateResourceDataSyncError>>
pub async fn send(
self
) -> Result<UpdateResourceDataSyncOutput, SdkError<UpdateResourceDataSyncError>>
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 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 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 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.
Trait Implementations
sourceimpl Clone for UpdateResourceDataSync
impl Clone for UpdateResourceDataSync
sourcefn clone(&self) -> UpdateResourceDataSync
fn clone(&self) -> UpdateResourceDataSync
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more