pub struct UpdateDatasetGroup { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateDatasetGroup.
Replaces the datasets in a dataset group with the specified datasets.
The Status of the dataset group must be ACTIVE before you can use the dataset group to create a predictor. Use the DescribeDatasetGroup operation to get the status.
Implementations§
source§impl UpdateDatasetGroup
impl UpdateDatasetGroup
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateDatasetGroup, AwsResponseRetryClassifier>, SdkError<UpdateDatasetGroupError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateDatasetGroup, AwsResponseRetryClassifier>, SdkError<UpdateDatasetGroupError>>
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<UpdateDatasetGroupOutput, SdkError<UpdateDatasetGroupError>>
pub async fn send(
self
) -> Result<UpdateDatasetGroupOutput, SdkError<UpdateDatasetGroupError>>
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 dataset_group_arn(self, input: impl Into<String>) -> Self
pub fn dataset_group_arn(self, input: impl Into<String>) -> Self
The ARN of the dataset group.
sourcepub fn set_dataset_group_arn(self, input: Option<String>) -> Self
pub fn set_dataset_group_arn(self, input: Option<String>) -> Self
The ARN of the dataset group.
sourcepub fn dataset_arns(self, input: impl Into<String>) -> Self
pub fn dataset_arns(self, input: impl Into<String>) -> Self
Appends an item to DatasetArns.
To override the contents of this collection use set_dataset_arns.
An array of the Amazon Resource Names (ARNs) of the datasets to add to the dataset group.
sourcepub fn set_dataset_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_dataset_arns(self, input: Option<Vec<String>>) -> Self
An array of the Amazon Resource Names (ARNs) of the datasets to add to the dataset group.
Trait Implementations§
source§impl Clone for UpdateDatasetGroup
impl Clone for UpdateDatasetGroup
source§fn clone(&self) -> UpdateDatasetGroup
fn clone(&self) -> UpdateDatasetGroup
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more