Class ACLReference
A reference to a ACL resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
AclName
The ACLName of the ACL resource.
public string AclName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated