interface EndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElastiCache.CfnCacheCluster.EndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticache#CfnCacheCluster_EndpointProperty |
Java | software.amazon.awscdk.services.elasticache.CfnCacheCluster.EndpointProperty |
Python | aws_cdk.aws_elasticache.CfnCacheCluster.EndpointProperty |
TypeScript | aws-cdk-lib » aws_elasticache » CfnCacheCluster » EndpointProperty |
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-lib';
const endpointProperty: elasticache.CfnCacheCluster.EndpointProperty = {
address: 'address',
port: 'port',
};
Properties
| Name | Type | Description |
|---|---|---|
| address? | string | |
| port? | string |
address?
Type:
string
(optional)
port?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript