Struct aws_sdk_databasemigration::operation::modify_migration_project::ModifyMigrationProjectInput
source · #[non_exhaustive]pub struct ModifyMigrationProjectInput {
pub migration_project_identifier: Option<String>,
pub migration_project_name: Option<String>,
pub source_data_provider_descriptors: Option<Vec<DataProviderDescriptorDefinition>>,
pub target_data_provider_descriptors: Option<Vec<DataProviderDescriptorDefinition>>,
pub instance_profile_identifier: Option<String>,
pub transformation_rules: Option<String>,
pub description: Option<String>,
pub schema_conversion_application_attributes: Option<ScApplicationAttributes>,
}
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.migration_project_identifier: Option<String>
The identifier of the migration project. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.
migration_project_name: Option<String>
A user-friendly name for the migration project.
source_data_provider_descriptors: Option<Vec<DataProviderDescriptorDefinition>>
Information about the source data provider, including the name, ARN, and Amazon Web Services Secrets Manager parameters.
target_data_provider_descriptors: Option<Vec<DataProviderDescriptorDefinition>>
Information about the target data provider, including the name, ARN, and Amazon Web Services Secrets Manager parameters.
instance_profile_identifier: Option<String>
The name or Amazon Resource Name (ARN) for the instance profile.
transformation_rules: Option<String>
The settings in JSON format for migration rules. Migration rules make it possible for you to change the object names according to the rules that you specify. For example, you can change an object name to lowercase or uppercase, add or remove a prefix or suffix, or rename objects.
description: Option<String>
A user-friendly description of the migration project.
schema_conversion_application_attributes: Option<ScApplicationAttributes>
The schema conversion application attributes, including the Amazon S3 bucket name and Amazon S3 role ARN.
Implementations§
source§impl ModifyMigrationProjectInput
impl ModifyMigrationProjectInput
sourcepub fn migration_project_identifier(&self) -> Option<&str>
pub fn migration_project_identifier(&self) -> Option<&str>
The identifier of the migration project. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.
sourcepub fn migration_project_name(&self) -> Option<&str>
pub fn migration_project_name(&self) -> Option<&str>
A user-friendly name for the migration project.
sourcepub fn source_data_provider_descriptors(
&self
) -> &[DataProviderDescriptorDefinition]
pub fn source_data_provider_descriptors( &self ) -> &[DataProviderDescriptorDefinition]
Information about the source data provider, including the name, ARN, and Amazon Web Services Secrets Manager parameters.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .source_data_provider_descriptors.is_none()
.
sourcepub fn target_data_provider_descriptors(
&self
) -> &[DataProviderDescriptorDefinition]
pub fn target_data_provider_descriptors( &self ) -> &[DataProviderDescriptorDefinition]
Information about the target data provider, including the name, ARN, and Amazon Web Services Secrets Manager parameters.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .target_data_provider_descriptors.is_none()
.
sourcepub fn instance_profile_identifier(&self) -> Option<&str>
pub fn instance_profile_identifier(&self) -> Option<&str>
The name or Amazon Resource Name (ARN) for the instance profile.
sourcepub fn transformation_rules(&self) -> Option<&str>
pub fn transformation_rules(&self) -> Option<&str>
The settings in JSON format for migration rules. Migration rules make it possible for you to change the object names according to the rules that you specify. For example, you can change an object name to lowercase or uppercase, add or remove a prefix or suffix, or rename objects.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A user-friendly description of the migration project.
sourcepub fn schema_conversion_application_attributes(
&self
) -> Option<&ScApplicationAttributes>
pub fn schema_conversion_application_attributes( &self ) -> Option<&ScApplicationAttributes>
The schema conversion application attributes, including the Amazon S3 bucket name and Amazon S3 role ARN.
source§impl ModifyMigrationProjectInput
impl ModifyMigrationProjectInput
sourcepub fn builder() -> ModifyMigrationProjectInputBuilder
pub fn builder() -> ModifyMigrationProjectInputBuilder
Creates a new builder-style object to manufacture ModifyMigrationProjectInput
.
Trait Implementations§
source§impl Clone for ModifyMigrationProjectInput
impl Clone for ModifyMigrationProjectInput
source§fn clone(&self) -> ModifyMigrationProjectInput
fn clone(&self) -> ModifyMigrationProjectInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModifyMigrationProjectInput
impl Debug for ModifyMigrationProjectInput
source§impl PartialEq for ModifyMigrationProjectInput
impl PartialEq for ModifyMigrationProjectInput
source§fn eq(&self, other: &ModifyMigrationProjectInput) -> bool
fn eq(&self, other: &ModifyMigrationProjectInput) -> bool
self
and other
values to be equal, and is used
by ==
.