Struct aws_sdk_rds::input::ImportInstallationMediaInput
source · [−]#[non_exhaustive]pub struct ImportInstallationMediaInput {
pub custom_availability_zone_id: Option<String>,
pub engine: Option<String>,
pub engine_version: Option<String>,
pub engine_installation_media_path: Option<String>,
pub os_installation_media_path: Option<String>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.custom_availability_zone_id: Option<String>The identifier of the custom Availability Zone (AZ) to import the installation media to.
engine: Option<String>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
engine_version: Option<String>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.
engine_installation_media_path: Option<String>The path to the installation medium for the specified DB engine.
Example: SQLServerISO/en_sql_server_2016_enterprise_x64_dvd_8701793.iso
os_installation_media_path: Option<String>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
Implementations
sourceimpl ImportInstallationMediaInput
impl ImportInstallationMediaInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ImportInstallationMedia, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ImportInstallationMedia, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ImportInstallationMedia>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ImportInstallationMediaInput
sourceimpl ImportInstallationMediaInput
impl ImportInstallationMediaInput
sourcepub fn custom_availability_zone_id(&self) -> Option<&str>
pub fn custom_availability_zone_id(&self) -> Option<&str>
The identifier of the custom Availability Zone (AZ) to import the installation media to.
sourcepub fn engine(&self) -> Option<&str>
pub fn engine(&self) -> Option<&str>
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) -> Option<&str>
pub fn engine_version(&self) -> Option<&str>
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) -> Option<&str>
pub fn engine_installation_media_path(&self) -> Option<&str>
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) -> Option<&str>
pub fn os_installation_media_path(&self) -> Option<&str>
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 ImportInstallationMediaInput
impl Clone for ImportInstallationMediaInput
sourcefn clone(&self) -> ImportInstallationMediaInput
fn clone(&self) -> ImportInstallationMediaInput
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
sourceimpl Debug for ImportInstallationMediaInput
impl Debug for ImportInstallationMediaInput
sourceimpl PartialEq<ImportInstallationMediaInput> for ImportInstallationMediaInput
impl PartialEq<ImportInstallationMediaInput> for ImportInstallationMediaInput
sourcefn eq(&self, other: &ImportInstallationMediaInput) -> bool
fn eq(&self, other: &ImportInstallationMediaInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ImportInstallationMediaInput) -> bool
fn ne(&self, other: &ImportInstallationMediaInput) -> bool
This method tests for !=.
impl StructuralPartialEq for ImportInstallationMediaInput
Auto Trait Implementations
impl RefUnwindSafe for ImportInstallationMediaInput
impl Send for ImportInstallationMediaInput
impl Sync for ImportInstallationMediaInput
impl Unpin for ImportInstallationMediaInput
impl UnwindSafe for ImportInstallationMediaInput
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