Struct aws_sdk_databasemigration::operation::create_replication_subnet_group::CreateReplicationSubnetGroupInput
source · #[non_exhaustive]pub struct CreateReplicationSubnetGroupInput {
pub replication_subnet_group_identifier: Option<String>,
pub replication_subnet_group_description: Option<String>,
pub subnet_ids: Option<Vec<String>>,
pub tags: Option<Vec<Tag>>,
}
Expand description
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.replication_subnet_group_identifier: Option<String>
The name for the replication subnet group. This value is stored as a lowercase string.
Constraints: Must contain no more than 255 alphanumeric characters, periods, spaces, underscores, or hyphens. Must not be "default".
Example: mySubnetgroup
replication_subnet_group_description: Option<String>
The description for the subnet group.
subnet_ids: Option<Vec<String>>
Two or more subnet IDs to be assigned to the subnet group.
One or more tags to be assigned to the subnet group.
Implementations§
source§impl CreateReplicationSubnetGroupInput
impl CreateReplicationSubnetGroupInput
sourcepub fn replication_subnet_group_identifier(&self) -> Option<&str>
pub fn replication_subnet_group_identifier(&self) -> Option<&str>
The name for the replication subnet group. This value is stored as a lowercase string.
Constraints: Must contain no more than 255 alphanumeric characters, periods, spaces, underscores, or hyphens. Must not be "default".
Example: mySubnetgroup
sourcepub fn replication_subnet_group_description(&self) -> Option<&str>
pub fn replication_subnet_group_description(&self) -> Option<&str>
The description for the subnet group.
sourcepub fn subnet_ids(&self) -> &[String]
pub fn subnet_ids(&self) -> &[String]
Two or more subnet IDs to be assigned to the subnet group.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .subnet_ids.is_none()
.
One or more tags to be assigned to the subnet group.
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()
.
source§impl CreateReplicationSubnetGroupInput
impl CreateReplicationSubnetGroupInput
sourcepub fn builder() -> CreateReplicationSubnetGroupInputBuilder
pub fn builder() -> CreateReplicationSubnetGroupInputBuilder
Creates a new builder-style object to manufacture CreateReplicationSubnetGroupInput
.
Trait Implementations§
source§impl Clone for CreateReplicationSubnetGroupInput
impl Clone for CreateReplicationSubnetGroupInput
source§fn clone(&self) -> CreateReplicationSubnetGroupInput
fn clone(&self) -> CreateReplicationSubnetGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateReplicationSubnetGroupInput
impl PartialEq for CreateReplicationSubnetGroupInput
source§fn eq(&self, other: &CreateReplicationSubnetGroupInput) -> bool
fn eq(&self, other: &CreateReplicationSubnetGroupInput) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateReplicationSubnetGroupInput
Auto Trait Implementations§
impl Freeze for CreateReplicationSubnetGroupInput
impl RefUnwindSafe for CreateReplicationSubnetGroupInput
impl Send for CreateReplicationSubnetGroupInput
impl Sync for CreateReplicationSubnetGroupInput
impl Unpin for CreateReplicationSubnetGroupInput
impl UnwindSafe for CreateReplicationSubnetGroupInput
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