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