Show / Hide Table of Contents

Interface ICfnUserGroupProps

Properties for defining a CfnUserGroup.

Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnUserGroupProps
Syntax (vb)
Public Interface ICfnUserGroupProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.ElastiCache;

             var cfnUserGroupProps = new CfnUserGroupProps {
                 Engine = "engine",
                 UserGroupId = "userGroupId",
                 UserIds = new [] { "userIds" },

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Engine

The current supported values are valkey and redis.

Tags

The list of tags.

UserGroupId

The ID of the user group.

UserIds

The list of user IDs that belong to the user group.

Properties

Engine

The current supported values are valkey and redis.

string Engine { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html#cfn-elasticache-usergroup-engine

Tags

The list of tags.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html#cfn-elasticache-usergroup-tags

UserGroupId

The ID of the user group.

string UserGroupId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html#cfn-elasticache-usergroup-usergroupid

UserIds

The list of user IDs that belong to the user group.

string[] UserIds { get; }
Property Value

string[]

Remarks

A user named default must be included.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-usergroup.html#cfn-elasticache-usergroup-userids

Back to top Generated by DocFX