Struct aws_sdk_rds::client::fluent_builders::ImportInstallationMedia
source · [−]pub struct ImportInstallationMedia { /* private fields */ }Expand description
Fluent builder constructing a request to ImportInstallationMedia.
Imports the installation media for a DB engine that requires an on-premises customer provided license, such as SQL Server.
Implementations
sourceimpl ImportInstallationMedia
impl ImportInstallationMedia
sourcepub async fn send(
self
) -> Result<ImportInstallationMediaOutput, SdkError<ImportInstallationMediaError>>
pub async fn send(
self
) -> Result<ImportInstallationMediaOutput, SdkError<ImportInstallationMediaError>>
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 custom_availability_zone_id(self, input: impl Into<String>) -> Self
pub fn custom_availability_zone_id(self, input: impl Into<String>) -> Self
The identifier of the custom Availability Zone (AZ) to import the installation media to.
sourcepub fn set_custom_availability_zone_id(self, input: Option<String>) -> Self
pub fn set_custom_availability_zone_id(self, input: Option<String>) -> Self
The identifier of the custom Availability Zone (AZ) to import the installation media to.
sourcepub fn engine(self, input: impl Into<String>) -> Self
pub fn engine(self, input: impl Into<String>) -> Self
The name of the database engine to be used for this instance.
The list only includes supported DB engines that require an on-premises customer provided license.
Valid Values:
-
sqlserver-ee -
sqlserver-se -
sqlserver-ex -
sqlserver-web
sourcepub fn set_engine(self, input: Option<String>) -> Self
pub fn set_engine(self, input: Option<String>) -> Self
The name of the database engine to be used for this instance.
The list only includes supported DB engines that require an on-premises customer provided license.
Valid Values:
-
sqlserver-ee -
sqlserver-se -
sqlserver-ex -
sqlserver-web
sourcepub fn engine_version(self, input: impl Into<String>) -> Self
pub fn engine_version(self, input: impl Into<String>) -> Self
The version number of the database engine to use.
For a list of valid engine versions, call DescribeDBEngineVersions.
The following are the database engines and links to information about the major and minor versions. The list only includes DB engines that require an on-premises customer provided license.
Microsoft SQL Server
See Microsoft SQL Server Versions on Amazon RDS in the Amazon RDS User Guide.
sourcepub fn set_engine_version(self, input: Option<String>) -> Self
pub fn set_engine_version(self, input: Option<String>) -> Self
The version number of the database engine to use.
For a list of valid engine versions, call DescribeDBEngineVersions.
The following are the database engines and links to information about the major and minor versions. The list only includes DB engines that require an on-premises customer provided license.
Microsoft SQL Server
See Microsoft SQL Server Versions on Amazon RDS in the Amazon RDS User Guide.
sourcepub fn engine_installation_media_path(self, input: impl Into<String>) -> Self
pub fn engine_installation_media_path(self, input: impl Into<String>) -> Self
The path to the installation medium for the specified DB engine.
Example: SQLServerISO/en_sql_server_2016_enterprise_x64_dvd_8701793.iso
sourcepub fn set_engine_installation_media_path(self, input: Option<String>) -> Self
pub fn set_engine_installation_media_path(self, input: Option<String>) -> Self
The path to the installation medium for the specified DB engine.
Example: SQLServerISO/en_sql_server_2016_enterprise_x64_dvd_8701793.iso
sourcepub fn os_installation_media_path(self, input: impl Into<String>) -> Self
pub fn os_installation_media_path(self, input: impl Into<String>) -> Self
The path to the installation medium for the operating system associated with the specified DB engine.
Example: WindowsISO/en_windows_server_2016_x64_dvd_9327751.iso
sourcepub fn set_os_installation_media_path(self, input: Option<String>) -> Self
pub fn set_os_installation_media_path(self, input: Option<String>) -> Self
The path to the installation medium for the operating system associated with the specified DB engine.
Example: WindowsISO/en_windows_server_2016_x64_dvd_9327751.iso
Trait Implementations
sourceimpl Clone for ImportInstallationMedia
impl Clone for ImportInstallationMedia
sourcefn clone(&self) -> ImportInstallationMedia
fn clone(&self) -> ImportInstallationMedia
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
Auto Trait Implementations
impl !RefUnwindSafe for ImportInstallationMedia
impl Send for ImportInstallationMedia
impl Sync for ImportInstallationMedia
impl Unpin for ImportInstallationMedia
impl !UnwindSafe for ImportInstallationMedia
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more