Struct aws_sdk_elasticache::input::ModifyCacheSubnetGroupInput
source ·
[−]#[non_exhaustive]pub struct ModifyCacheSubnetGroupInput {
pub cache_subnet_group_name: Option<String>,
pub cache_subnet_group_description: Option<String>,
pub subnet_ids: Option<Vec<String>>,
}
Expand description
Represents the input of a ModifyCacheSubnetGroup
operation.
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.cache_subnet_group_name: Option<String>
The name for the cache subnet group. This value is stored as a lowercase string.
Constraints: Must contain no more than 255 alphanumeric characters or hyphens.
Example: mysubnetgroup
cache_subnet_group_description: Option<String>
A description of the cache subnet group.
subnet_ids: Option<Vec<String>>
The EC2 subnet IDs for the cache subnet group.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyCacheSubnetGroup, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyCacheSubnetGroup, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ModifyCacheSubnetGroup
>
Creates a new builder-style object to manufacture ModifyCacheSubnetGroupInput
The name for the cache subnet group. This value is stored as a lowercase string.
Constraints: Must contain no more than 255 alphanumeric characters or hyphens.
Example: mysubnetgroup
A description of the cache subnet group.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ModifyCacheSubnetGroupInput
impl Send for ModifyCacheSubnetGroupInput
impl Sync for ModifyCacheSubnetGroupInput
impl Unpin for ModifyCacheSubnetGroupInput
impl UnwindSafe for ModifyCacheSubnetGroupInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more