#[non_exhaustive]
pub struct ModifyCustomDbEngineVersionOutput { /* private fields */ }
Expand description

This data type is used as a response element in the action DescribeDBEngineVersions.

Implementations§

source§

impl ModifyCustomDbEngineVersionOutput

source

pub fn engine(&self) -> Option<&str>

The name of the database engine.

source

pub fn engine_version(&self) -> Option<&str>

The version number of the database engine.

source

pub fn db_parameter_group_family(&self) -> Option<&str>

The name of the DB parameter group family for the database engine.

source

pub fn db_engine_description(&self) -> Option<&str>

The description of the database engine.

source

pub fn db_engine_version_description(&self) -> Option<&str>

The description of the database engine version.

source

pub fn default_character_set(&self) -> Option<&CharacterSet>

The default character set for new instances of this engine version, if the CharacterSetName parameter of the CreateDBInstance API isn't specified.

source

pub fn image(&self) -> Option<&CustomDbEngineVersionAmi>

The EC2 image

source

pub fn db_engine_media_type(&self) -> Option<&str>

A value that indicates the source media provider of the AMI based on the usage operation. Applicable for RDS Custom for SQL Server.

source

pub fn supported_character_sets(&self) -> Option<&[CharacterSet]>

A list of the character sets supported by this engine for the CharacterSetName parameter of the CreateDBInstance operation.

source

pub fn supported_nchar_character_sets(&self) -> Option<&[CharacterSet]>

A list of the character sets supported by the Oracle DB engine for the NcharCharacterSetName parameter of the CreateDBInstance operation.

source

pub fn valid_upgrade_target(&self) -> Option<&[UpgradeTarget]>

A list of engine versions that this database engine version can be upgraded to.

source

pub fn supported_timezones(&self) -> Option<&[Timezone]>

A list of the time zones supported by this engine for the Timezone parameter of the CreateDBInstance action.

source

pub fn exportable_log_types(&self) -> Option<&[String]>

The types of logs that the database engine has available for export to CloudWatch Logs.

source

pub fn supports_log_exports_to_cloudwatch_logs(&self) -> bool

A value that indicates whether the engine version supports exporting the log types specified by ExportableLogTypes to CloudWatch Logs.

source

pub fn supports_read_replica(&self) -> bool

Indicates whether the database engine version supports read replicas.

source

pub fn supported_engine_modes(&self) -> Option<&[String]>

A list of the supported DB engine modes.

source

pub fn supported_feature_names(&self) -> Option<&[String]>

A list of features supported by the DB engine.

The supported features vary by DB engine and DB engine version.

To determine the supported features for a specific DB engine and DB engine version using the CLI, use the following command:

aws rds describe-db-engine-versions --engine --engine-version

For example, to determine the supported features for RDS for PostgreSQL version 13.3 using the CLI, use the following command:

aws rds describe-db-engine-versions --engine postgres --engine-version 13.3

The supported features are listed under SupportedFeatureNames in the output.

source

pub fn status(&self) -> Option<&str>

The status of the DB engine version, either available or deprecated.

source

pub fn supports_parallel_query(&self) -> bool

A value that indicates whether you can use Aurora parallel query with a specific DB engine version.

source

pub fn supports_global_databases(&self) -> bool

A value that indicates whether you can use Aurora global databases with a specific DB engine version.

source

pub fn major_engine_version(&self) -> Option<&str>

The major engine version of the CEV.

source

pub fn database_installation_files_s3_bucket_name(&self) -> Option<&str>

The name of the Amazon S3 bucket that contains your database installation files.

source

pub fn database_installation_files_s3_prefix(&self) -> Option<&str>

The Amazon S3 directory that contains the database installation files. If not specified, then no prefix is assumed.

source

pub fn db_engine_version_arn(&self) -> Option<&str>

The ARN of the custom engine version.

source

pub fn kms_key_id(&self) -> Option<&str>

The Amazon Web Services KMS key identifier for an encrypted CEV. This parameter is required for RDS Custom, but optional for Amazon RDS.

source

pub fn create_time(&self) -> Option<&DateTime>

The creation time of the DB engine version.

source

pub fn tag_list(&self) -> Option<&[Tag]>

A list of tags. For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.

source

pub fn supports_babelfish(&self) -> bool

A value that indicates whether the engine version supports Babelfish for Aurora PostgreSQL.

source

pub fn custom_db_engine_version_manifest(&self) -> Option<&str>

JSON string that lists the installation files and parameters that RDS Custom uses to create a custom engine version (CEV). RDS Custom applies the patches in the order in which they're listed in the manifest. You can set the Oracle home, Oracle base, and UNIX/Linux user and group using the installation parameters. For more information, see JSON fields in the CEV manifest in the Amazon RDS User Guide.

source

pub fn supports_certificate_rotation_without_restart(&self) -> Option<bool>

A value that indicates whether the engine version supports rotating the server certificate without rebooting the DB instance.

source

pub fn supported_ca_certificate_identifiers(&self) -> Option<&[String]>

A list of the supported CA certificate identifiers.

For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

source§

impl ModifyCustomDbEngineVersionOutput

source

pub fn builder() -> ModifyCustomDbEngineVersionOutputBuilder

Creates a new builder-style object to manufacture ModifyCustomDbEngineVersionOutput.

Trait Implementations§

source§

impl Clone for ModifyCustomDbEngineVersionOutput

source§

fn clone(&self) -> ModifyCustomDbEngineVersionOutput

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ModifyCustomDbEngineVersionOutput

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<ModifyCustomDbEngineVersionOutput> for ModifyCustomDbEngineVersionOutput

source§

fn eq(&self, other: &ModifyCustomDbEngineVersionOutput) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl RequestId for ModifyCustomDbEngineVersionOutput

source§

fn request_id(&self) -> Option<&str>

Returns the request ID, or None if the service could not be reached.
source§

impl StructuralPartialEq for ModifyCustomDbEngineVersionOutput

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more