interface EndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ElastiCache.CfnServerlessCachePropsMixin.EndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awselasticache#CfnServerlessCachePropsMixin_EndpointProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.elasticache.CfnServerlessCachePropsMixin.EndpointProperty |
Python | aws_cdk.cfn_property_mixins.aws_elasticache.CfnServerlessCachePropsMixin.EndpointProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_elasticache » 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 { aws_elasticache as elasticache } from '@aws-cdk/cfn-property-mixins';
const endpointProperty: elasticache.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