@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.012Z") @Stability(value=Stable) public class CfnUser extends CfnResource implements IInspectable
For Redis engine version 6.0 onwards: Creates a Redis user. 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.*;
CfnUser cfnUser = CfnUser.Builder.create(this, "MyCfnUser")
.engine("engine")
.userId("userId")
.userName("userName")
// the properties below are optional
.accessString("accessString")
.noPasswordRequired(false)
.passwords(List.of("passwords"))
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
CfnUser.Builder
A fluent builder for
CfnUser. |
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 |
|---|---|
|
CfnUser(software.constructs.Construct scope,
String id,
CfnUserProps props)
Create a new `AWS::ElastiCache::User`.
|
protected |
CfnUser(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnUser(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAccessString()
Access permissions string used for this user.
|
String |
getAttrArn()
The Amazon Resource Name (ARN) of the user.
|
String |
getAttrStatus()
Indicates the user status.
|
protected Map<String,Object> |
getCfnProperties() |
String |
getEngine()
The current supported value is redis.
|
Object |
getNoPasswordRequired()
Indicates a password is not required for this user.
|
List<String> |
getPasswords()
Passwords used for this user.
|
String |
getUserId()
The ID of the user.
|
String |
getUserName()
The username of the user.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setAccessString(String value)
Access permissions string used for this user.
|
void |
setEngine(String value)
The current supported value is redis.
|
void |
setNoPasswordRequired(Boolean value)
Indicates a password is not required for this user.
|
void |
setNoPasswordRequired(IResolvable value)
Indicates a password is not required for this user.
|
void |
setPasswords(List<String> value)
Passwords used for this user.
|
void |
setUserId(String value)
The ID of the user.
|
void |
setUserName(String value)
The username of the user.
|
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 CfnUser(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnUser(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnUser(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnUserProps 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 "active", "modifying" or "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 getUserId()
@Stability(value=Stable)
public void setUserId(@NotNull
String value)
@Stability(value=Stable) @NotNull public String getUserName()
@Stability(value=Stable)
public void setUserName(@NotNull
String value)
@Stability(value=Stable) @Nullable public String getAccessString()
@Stability(value=Stable)
public void setAccessString(@Nullable
String value)
@Stability(value=Stable) @Nullable public Object getNoPasswordRequired()
@Stability(value=Stable)
public void setNoPasswordRequired(@Nullable
Boolean value)
@Stability(value=Stable)
public void setNoPasswordRequired(@Nullable
IResolvable value)
@Stability(value=Stable) @Nullable public List<String> getPasswords()
You can create up to two passwords for each user.
Copyright © 2022. All rights reserved.