Struct aws_sdk_elasticache::input::CreateUserGroupInput [−][src]
#[non_exhaustive]pub struct CreateUserGroupInput {
pub user_group_id: Option<String>,
pub engine: Option<String>,
pub user_ids: Option<Vec<String>>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.user_group_id: Option<String>
The ID of the user group.
engine: Option<String>
The current supported value is Redis.
user_ids: Option<Vec<String>>
The list of user IDs that belong to the user group.
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
Implementations
pub fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateUserGroup, AwsErrorRetryPolicy>, BuildError>
pub fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateUserGroup, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateUserGroup
>
Creates a new builder-style object to manufacture CreateUserGroupInput
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 CreateUserGroupInput
impl Send for CreateUserGroupInput
impl Sync for CreateUserGroupInput
impl Unpin for CreateUserGroupInput
impl UnwindSafe for CreateUserGroupInput
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