Struct aws_sdk_datasync::operation::add_storage_system::builders::AddStorageSystemInputBuilder
source · #[non_exhaustive]pub struct AddStorageSystemInputBuilder { /* private fields */ }
Expand description
A builder for AddStorageSystemInput
.
Implementations§
source§impl AddStorageSystemInputBuilder
impl AddStorageSystemInputBuilder
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.
This field is required.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 get_server_configuration(&self) -> &Option<DiscoveryServerConfiguration>
pub fn get_server_configuration(&self) -> &Option<DiscoveryServerConfiguration>
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 get_system_type(&self) -> &Option<DiscoverySystemType>
pub fn get_system_type(&self) -> &Option<DiscoverySystemType>
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 agent_arns
.
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. You can only specify one ARN.
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. You can only specify one ARN.
sourcepub fn get_agent_arns(&self) -> &Option<Vec<String>>
pub fn get_agent_arns(&self) -> &Option<Vec<String>>
Specifies the Amazon Resource Name (ARN) of the DataSync agent that connects to and reads from your on-premises storage system's management interface. You can only specify one ARN.
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.
sourcepub fn get_cloud_watch_log_group_arn(&self) -> &Option<String>
pub fn get_cloud_watch_log_group_arn(&self) -> &Option<String>
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.
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 get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
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.
This field is required.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 get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
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.
This field is required.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.
sourcepub fn get_credentials(&self) -> &Option<Credentials>
pub fn get_credentials(&self) -> &Option<Credentials>
Specifies the user name and password for accessing your on-premises storage system's management interface.
sourcepub fn build(self) -> Result<AddStorageSystemInput, BuildError>
pub fn build(self) -> Result<AddStorageSystemInput, BuildError>
Consumes the builder and constructs a AddStorageSystemInput
.
source§impl AddStorageSystemInputBuilder
impl AddStorageSystemInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<AddStorageSystemOutput, SdkError<AddStorageSystemError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<AddStorageSystemOutput, SdkError<AddStorageSystemError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for AddStorageSystemInputBuilder
impl Clone for AddStorageSystemInputBuilder
source§fn clone(&self) -> AddStorageSystemInputBuilder
fn clone(&self) -> AddStorageSystemInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AddStorageSystemInputBuilder
impl Debug for AddStorageSystemInputBuilder
source§impl Default for AddStorageSystemInputBuilder
impl Default for AddStorageSystemInputBuilder
source§fn default() -> AddStorageSystemInputBuilder
fn default() -> AddStorageSystemInputBuilder
source§impl PartialEq for AddStorageSystemInputBuilder
impl PartialEq for AddStorageSystemInputBuilder
source§fn eq(&self, other: &AddStorageSystemInputBuilder) -> bool
fn eq(&self, other: &AddStorageSystemInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AddStorageSystemInputBuilder
Auto Trait Implementations§
impl Freeze for AddStorageSystemInputBuilder
impl RefUnwindSafe for AddStorageSystemInputBuilder
impl Send for AddStorageSystemInputBuilder
impl Sync for AddStorageSystemInputBuilder
impl Unpin for AddStorageSystemInputBuilder
impl UnwindSafe for AddStorageSystemInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more