Struct aws_sdk_databasemigration::types::MigrationProject
source · #[non_exhaustive]pub struct MigrationProject {
pub migration_project_name: Option<String>,
pub migration_project_arn: Option<String>,
pub migration_project_creation_time: Option<DateTime>,
pub source_data_provider_descriptors: Option<Vec<DataProviderDescriptor>>,
pub target_data_provider_descriptors: Option<Vec<DataProviderDescriptor>>,
pub instance_profile_arn: Option<String>,
pub instance_profile_name: Option<String>,
pub transformation_rules: Option<String>,
pub description: Option<String>,
pub schema_conversion_application_attributes: Option<ScApplicationAttributes>,
}
Expand description
Provides information that defines a migration project.
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>
The name of the migration project.
migration_project_arn: Option<String>
The ARN string that uniquely identifies the migration project.
migration_project_creation_time: Option<DateTime>
The time when the migration project was created.
source_data_provider_descriptors: Option<Vec<DataProviderDescriptor>>
Information about the source data provider, including the name or ARN, and Secrets Manager parameters.
target_data_provider_descriptors: Option<Vec<DataProviderDescriptor>>
Information about the target data provider, including the name or ARN, and Secrets Manager parameters.
instance_profile_arn: Option<String>
The Amazon Resource Name (ARN) of the instance profile for your migration project.
instance_profile_name: Option<String>
The name of the associated 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 MigrationProject
impl MigrationProject
sourcepub fn migration_project_name(&self) -> Option<&str>
pub fn migration_project_name(&self) -> Option<&str>
The name of the migration project.
sourcepub fn migration_project_arn(&self) -> Option<&str>
pub fn migration_project_arn(&self) -> Option<&str>
The ARN string that uniquely identifies the migration project.
sourcepub fn migration_project_creation_time(&self) -> Option<&DateTime>
pub fn migration_project_creation_time(&self) -> Option<&DateTime>
The time when the migration project was created.
sourcepub fn source_data_provider_descriptors(&self) -> &[DataProviderDescriptor]
pub fn source_data_provider_descriptors(&self) -> &[DataProviderDescriptor]
Information about the source data provider, including the name or 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) -> &[DataProviderDescriptor]
pub fn target_data_provider_descriptors(&self) -> &[DataProviderDescriptor]
Information about the target data provider, including the name or 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 .target_data_provider_descriptors.is_none()
.
sourcepub fn instance_profile_arn(&self) -> Option<&str>
pub fn instance_profile_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the instance profile for your migration project.
sourcepub fn instance_profile_name(&self) -> Option<&str>
pub fn instance_profile_name(&self) -> Option<&str>
The name of the associated 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 MigrationProject
impl MigrationProject
sourcepub fn builder() -> MigrationProjectBuilder
pub fn builder() -> MigrationProjectBuilder
Creates a new builder-style object to manufacture MigrationProject
.
Trait Implementations§
source§impl Clone for MigrationProject
impl Clone for MigrationProject
source§fn clone(&self) -> MigrationProject
fn clone(&self) -> MigrationProject
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MigrationProject
impl Debug for MigrationProject
source§impl PartialEq for MigrationProject
impl PartialEq for MigrationProject
impl StructuralPartialEq for MigrationProject
Auto Trait Implementations§
impl Freeze for MigrationProject
impl RefUnwindSafe for MigrationProject
impl Send for MigrationProject
impl Sync for MigrationProject
impl Unpin for MigrationProject
impl UnwindSafe for MigrationProject
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more