Show / Hide Table of Contents

Class ACLReference

A reference to a ACL resource.

Inheritance
object
ACLReference
Implements
IACLReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.MemoryDB
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ACLReference : IACLReference
Syntax (vb)
Public Class ACLReference Implements IACLReference
Remarks

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.MemoryDB;

            var aCLReference = new ACLReference {
                AclArn = "aclArn",
                AclName = "aclName"
            };

Synopsis

Constructors

ACLReference()

A reference to a ACL resource.

Properties

AclArn

The ARN of the ACL resource.

AclName

The ACLName of the ACL resource.

Constructors

ACLReference()

A reference to a ACL resource.

public ACLReference()
Remarks

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.MemoryDB;

            var aCLReference = new ACLReference {
                AclArn = "aclArn",
                AclName = "aclName"
            };

Properties

AclArn

The ARN of the ACL resource.

public string AclArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

AclName

The ACLName of the ACL resource.

public string AclName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IACLReference
Back to top Generated by DocFX