@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.012Z") @Stability(value=Stable) public class CfnUserGroup extends CfnResource implements IInspectable
For Redis engine version 6.0 onwards: Creates a Redis user group. For more information, see Using Role Based Access Control (RBAC)
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.elasticache.*;
CfnUserGroup cfnUserGroup = CfnUserGroup.Builder.create(this, "MyCfnUserGroup")
.engine("engine")
.userGroupId("userGroupId")
// the properties below are optional
.userIds(List.of("userIds"))
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
CfnUserGroup.Builder
A fluent builder for
CfnUserGroup. |
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnUserGroup(software.constructs.Construct scope,
String id,
CfnUserGroupProps props)
Create a new `AWS::ElastiCache::UserGroup`.
|
protected |
CfnUserGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnUserGroup(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttrArn()
The Amazon Resource Name (ARN) of the user group.
|
String |
getAttrStatus()
Indicates user group status.
|
protected Map<String,Object> |
getCfnProperties() |
String |
getEngine()
The current supported value is redis.
|
String |
getUserGroupId()
The ID of the user group.
|
List<String> |
getUserIds()
The list of user IDs that belong to the user group.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setEngine(String value)
The current supported value is redis.
|
void |
setUserGroupId(String value)
The ID of the user group.
|
void |
setUserIds(List<String> value)
The list of user IDs that belong to the user group.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnUserGroup(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnUserGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnUserGroup(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnUserGroupProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrArn()
@Stability(value=Stable) @NotNull public String getAttrStatus()
Can be "creating", "active", "modifying", "deleting".
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public String getEngine()
@Stability(value=Stable)
public void setEngine(@NotNull
String value)
@Stability(value=Stable) @NotNull public String getUserGroupId()
@Stability(value=Stable)
public void setUserGroupId(@NotNull
String value)
@Stability(value=Stable) @Nullable public List<String> getUserIds()
A user named default must be included.
Copyright © 2022. All rights reserved.