Struct aws_sdk_databasemigration::operation::create_migration_project::CreateMigrationProjectInput
source · #[non_exhaustive]pub struct CreateMigrationProjectInput {
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 tags: Option<Vec<Tag>>,
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_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 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 identifier of the associated instance profile. 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.
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.
One or more tags to be assigned to 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 CreateMigrationProjectInput
impl CreateMigrationProjectInput
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 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 identifier of the associated instance profile. 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 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.
One or more tags to be assigned to the migration project.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
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 CreateMigrationProjectInput
impl CreateMigrationProjectInput
sourcepub fn builder() -> CreateMigrationProjectInputBuilder
pub fn builder() -> CreateMigrationProjectInputBuilder
Creates a new builder-style object to manufacture CreateMigrationProjectInput
.
Trait Implementations§
source§impl Clone for CreateMigrationProjectInput
impl Clone for CreateMigrationProjectInput
source§fn clone(&self) -> CreateMigrationProjectInput
fn clone(&self) -> CreateMigrationProjectInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateMigrationProjectInput
impl Debug for CreateMigrationProjectInput
source§impl PartialEq for CreateMigrationProjectInput
impl PartialEq for CreateMigrationProjectInput
source§fn eq(&self, other: &CreateMigrationProjectInput) -> bool
fn eq(&self, other: &CreateMigrationProjectInput) -> bool
self
and other
values to be equal, and is used
by ==
.