Show / Hide Table of Contents

Class ServerlessCacheReference

A reference to a ServerlessCache resource.

Inheritance
object
ServerlessCacheReference
Implements
IServerlessCacheReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ServerlessCacheReference : IServerlessCacheReference
Syntax (vb)
Public Class ServerlessCacheReference Implements IServerlessCacheReference
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.Interfaces.ElastiCache;

            var serverlessCacheReference = new ServerlessCacheReference {
                ServerlessCacheArn = "serverlessCacheArn",
                ServerlessCacheName = "serverlessCacheName"
            };

Synopsis

Constructors

ServerlessCacheReference()

A reference to a ServerlessCache resource.

Properties

ServerlessCacheArn

The ARN of the ServerlessCache resource.

ServerlessCacheName

The ServerlessCacheName of the ServerlessCache resource.

Constructors

ServerlessCacheReference()

A reference to a ServerlessCache resource.

public ServerlessCacheReference()
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.Interfaces.ElastiCache;

            var serverlessCacheReference = new ServerlessCacheReference {
                ServerlessCacheArn = "serverlessCacheArn",
                ServerlessCacheName = "serverlessCacheName"
            };

Properties

ServerlessCacheArn

The ARN of the ServerlessCache resource.

public string ServerlessCacheArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

ServerlessCacheName

The ServerlessCacheName of the ServerlessCache resource.

public string ServerlessCacheName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IServerlessCacheReference
Back to top Generated by DocFX