@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:17.480Z") @Stability(value=Stable) public interface CfnUserProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnUserProps cfnUserProps = CfnUserProps.builder()
.engine("engine")
.userId("userId")
.userName("userName")
// the properties below are optional
.accessString("accessString")
.noPasswordRequired(false)
.passwords(List.of("passwords"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnUserProps.Builder
A builder for
CfnUserProps |
static class |
CfnUserProps.Jsii$Proxy
An implementation for
CfnUserProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnUserProps.Builder |
builder() |
default String |
getAccessString()
`AWS::ElastiCache::User.AccessString`.
|
String |
getEngine()
`AWS::ElastiCache::User.Engine`.
|
default Object |
getNoPasswordRequired()
`AWS::ElastiCache::User.NoPasswordRequired`.
|
default List<String> |
getPasswords()
`AWS::ElastiCache::User.Passwords`.
|
String |
getUserId()
`AWS::ElastiCache::User.UserId`.
|
String |
getUserName()
`AWS::ElastiCache::User.UserName`.
|
@Stability(value=Stable) @Nullable default String getAccessString()
@Stability(value=Stable) @NotNull String getEngine()
@Stability(value=Stable) @Nullable default Object getNoPasswordRequired()
@Stability(value=Stable) @Nullable default List<String> getPasswords()
@Stability(value=Stable) @NotNull String getUserId()
@Stability(value=Stable) @NotNull String getUserName()
@Stability(value=Stable) static CfnUserProps.Builder builder()
CfnUserProps.Builder of CfnUserPropsCopyright © 2021. All rights reserved.