Struct aws_sdk_datasync::operation::add_storage_system::builders::AddStorageSystemFluentBuilder
source · pub struct AddStorageSystemFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to AddStorageSystem
.
Creates an Amazon Web Services resource for an on-premises storage system that you want DataSync Discovery to collect information about.
Implementations§
source§impl AddStorageSystemFluentBuilder
impl AddStorageSystemFluentBuilder
sourcepub async fn send(
self
) -> Result<AddStorageSystemOutput, SdkError<AddStorageSystemError>>
pub async fn send( self ) -> Result<AddStorageSystemOutput, SdkError<AddStorageSystemError>>
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 async fn customize(
self
) -> Result<CustomizableOperation<AddStorageSystem, AwsResponseRetryClassifier>, SdkError<AddStorageSystemError>>
pub async fn customize( self ) -> Result<CustomizableOperation<AddStorageSystem, AwsResponseRetryClassifier>, SdkError<AddStorageSystemError>>
Consumes 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 fn server_configuration(self, input: DiscoveryServerConfiguration) -> Self
pub fn server_configuration(self, input: DiscoveryServerConfiguration) -> Self
Specifies the server name and network port required to connect with the management interface of your on-premises storage system.
sourcepub fn set_server_configuration(
self,
input: Option<DiscoveryServerConfiguration>
) -> Self
pub fn set_server_configuration( self, input: Option<DiscoveryServerConfiguration> ) -> Self
Specifies the server name and network port required to connect with the management interface of your on-premises storage system.
sourcepub fn system_type(self, input: DiscoverySystemType) -> Self
pub fn system_type(self, input: DiscoverySystemType) -> Self
Specifies the type of on-premises storage system that you want DataSync Discovery to collect information about.
DataSync Discovery currently supports NetApp Fabric-Attached Storage (FAS) and All Flash FAS (AFF) systems running ONTAP 9.7 or later.
sourcepub fn set_system_type(self, input: Option<DiscoverySystemType>) -> Self
pub fn set_system_type(self, input: Option<DiscoverySystemType>) -> Self
Specifies the type of on-premises storage system that you want DataSync Discovery to collect information about.
DataSync Discovery currently supports NetApp Fabric-Attached Storage (FAS) and All Flash FAS (AFF) systems running ONTAP 9.7 or later.
sourcepub fn agent_arns(self, input: impl Into<String>) -> Self
pub fn agent_arns(self, input: impl Into<String>) -> Self
Appends an item to AgentArns
.
To override the contents of this collection use set_agent_arns
.
Specifies the Amazon Resource Name (ARN) of the DataSync agent that connects to and reads from your on-premises storage system's management interface.
sourcepub fn set_agent_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_agent_arns(self, input: Option<Vec<String>>) -> Self
Specifies the Amazon Resource Name (ARN) of the DataSync agent that connects to and reads from your on-premises storage system's management interface.
sourcepub fn cloud_watch_log_group_arn(self, input: impl Into<String>) -> Self
pub fn cloud_watch_log_group_arn(self, input: impl Into<String>) -> Self
Specifies the ARN of the Amazon CloudWatch log group for monitoring and logging discovery job events.
sourcepub fn set_cloud_watch_log_group_arn(self, input: Option<String>) -> Self
pub fn set_cloud_watch_log_group_arn(self, input: Option<String>) -> Self
Specifies the ARN of the Amazon CloudWatch log group for monitoring and logging discovery job events.
Appends an item to Tags
.
To override the contents of this collection use set_tags
.
Specifies labels that help you categorize, filter, and search for your Amazon Web Services resources. We recommend creating at least a name tag for your on-premises storage system.
Specifies labels that help you categorize, filter, and search for your Amazon Web Services resources. We recommend creating at least a name tag for your on-premises storage system.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
Specifies a familiar name for your on-premises storage system.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
Specifies a familiar name for your on-premises storage system.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
Specifies a client token to make sure requests with this API operation are idempotent. If you don't specify a client token, DataSync generates one for you automatically.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
Specifies a client token to make sure requests with this API operation are idempotent. If you don't specify a client token, DataSync generates one for you automatically.
sourcepub fn credentials(self, input: Credentials) -> Self
pub fn credentials(self, input: Credentials) -> Self
Specifies the user name and password for accessing your on-premises storage system's management interface.
sourcepub fn set_credentials(self, input: Option<Credentials>) -> Self
pub fn set_credentials(self, input: Option<Credentials>) -> Self
Specifies the user name and password for accessing your on-premises storage system's management interface.
Trait Implementations§
source§impl Clone for AddStorageSystemFluentBuilder
impl Clone for AddStorageSystemFluentBuilder
source§fn clone(&self) -> AddStorageSystemFluentBuilder
fn clone(&self) -> AddStorageSystemFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more