#[non_exhaustive]pub struct ModifyDbShardGroupOutput {
pub db_shard_group_resource_id: Option<String>,
pub db_shard_group_identifier: Option<String>,
pub db_cluster_identifier: Option<String>,
pub max_acu: Option<f64>,
pub compute_redundancy: Option<i32>,
pub status: Option<String>,
pub publicly_accessible: Option<bool>,
pub endpoint: Option<String>,
/* private fields */
}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.db_shard_group_resource_id: Option<String>The Amazon Web Services Region-unique, immutable identifier for the DB shard group.
db_shard_group_identifier: Option<String>The name of the DB shard group.
db_cluster_identifier: Option<String>The name of the primary DB cluster for the DB shard group.
max_acu: Option<f64>The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
compute_redundancy: Option<i32>Specifies whether to create standby instances for the DB shard group. Valid values are the following:
-
0 - Creates a single, primary DB instance for each physical shard. This is the default value, and the only one supported for the preview.
-
1 - Creates a primary DB instance and a standby instance in a different Availability Zone (AZ) for each physical shard.
-
2 - Creates a primary DB instance and two standby instances in different AZs for each physical shard.
status: Option<String>The status of the DB shard group.
publicly_accessible: Option<bool>Indicates whether the DB shard group is publicly accessible.
When the DB shard group is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB shard group's virtual private cloud (VPC). It resolves to the public IP address from outside of the DB shard group's VPC. Access to the DB shard group is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB shard group doesn't permit it.
When the DB shard group isn't publicly accessible, it is an internal DB shard group with a DNS name that resolves to a private IP address.
For more information, see CreateDBShardGroup.
This setting is only for Aurora Limitless Database.
endpoint: Option<String>The connection endpoint for the DB shard group.
Implementations§
source§impl ModifyDbShardGroupOutput
impl ModifyDbShardGroupOutput
sourcepub fn db_shard_group_resource_id(&self) -> Option<&str>
pub fn db_shard_group_resource_id(&self) -> Option<&str>
The Amazon Web Services Region-unique, immutable identifier for the DB shard group.
sourcepub fn db_shard_group_identifier(&self) -> Option<&str>
pub fn db_shard_group_identifier(&self) -> Option<&str>
The name of the DB shard group.
sourcepub fn db_cluster_identifier(&self) -> Option<&str>
pub fn db_cluster_identifier(&self) -> Option<&str>
The name of the primary DB cluster for the DB shard group.
sourcepub fn max_acu(&self) -> Option<f64>
pub fn max_acu(&self) -> Option<f64>
The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
sourcepub fn compute_redundancy(&self) -> Option<i32>
pub fn compute_redundancy(&self) -> Option<i32>
Specifies whether to create standby instances for the DB shard group. Valid values are the following:
-
0 - Creates a single, primary DB instance for each physical shard. This is the default value, and the only one supported for the preview.
-
1 - Creates a primary DB instance and a standby instance in a different Availability Zone (AZ) for each physical shard.
-
2 - Creates a primary DB instance and two standby instances in different AZs for each physical shard.
sourcepub fn publicly_accessible(&self) -> Option<bool>
pub fn publicly_accessible(&self) -> Option<bool>
Indicates whether the DB shard group is publicly accessible.
When the DB shard group is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB shard group's virtual private cloud (VPC). It resolves to the public IP address from outside of the DB shard group's VPC. Access to the DB shard group is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB shard group doesn't permit it.
When the DB shard group isn't publicly accessible, it is an internal DB shard group with a DNS name that resolves to a private IP address.
For more information, see CreateDBShardGroup.
This setting is only for Aurora Limitless Database.
source§impl ModifyDbShardGroupOutput
impl ModifyDbShardGroupOutput
sourcepub fn builder() -> ModifyDbShardGroupOutputBuilder
pub fn builder() -> ModifyDbShardGroupOutputBuilder
Creates a new builder-style object to manufacture ModifyDbShardGroupOutput.
Trait Implementations§
source§impl Clone for ModifyDbShardGroupOutput
impl Clone for ModifyDbShardGroupOutput
source§fn clone(&self) -> ModifyDbShardGroupOutput
fn clone(&self) -> ModifyDbShardGroupOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ModifyDbShardGroupOutput
impl Debug for ModifyDbShardGroupOutput
source§impl PartialEq for ModifyDbShardGroupOutput
impl PartialEq for ModifyDbShardGroupOutput
source§fn eq(&self, other: &ModifyDbShardGroupOutput) -> bool
fn eq(&self, other: &ModifyDbShardGroupOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for ModifyDbShardGroupOutput
impl RequestId for ModifyDbShardGroupOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for ModifyDbShardGroupOutput
Auto Trait Implementations§
impl Freeze for ModifyDbShardGroupOutput
impl RefUnwindSafe for ModifyDbShardGroupOutput
impl Send for ModifyDbShardGroupOutput
impl Sync for ModifyDbShardGroupOutput
impl Unpin for ModifyDbShardGroupOutput
impl UnwindSafe for ModifyDbShardGroupOutput
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> 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