interface EndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins.CfnServerlessCachePropsMixin.EndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/mixins#CfnServerlessCachePropsMixin_EndpointProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.mixins.CfnServerlessCachePropsMixin.EndpointProperty |
Python | aws_cdk.mixins_preview.aws_elasticache.mixins.CfnServerlessCachePropsMixin.EndpointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticache » mixins » CfnServerlessCachePropsMixin » EndpointProperty |
Represents the information required for client programs to connect to a cache node.
This value is read-only.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as elasticache_mixins } from '@aws-cdk/mixins-preview/aws-elasticache';
const endpointProperty: elasticache_mixins.CfnServerlessCachePropsMixin.EndpointProperty = {
address: 'address',
port: 'port',
};
Properties
| Name | Type | Description |
|---|---|---|
| address? | string | The DNS hostname of the cache node. |
| port? | string | The port number that the cache engine is listening on. |
address?
Type:
string
(optional)
The DNS hostname of the cache node.
port?
Type:
string
(optional)
The port number that the cache engine is listening on.

.NET
Go
Java
Python
TypeScript