interface ServiceConnectTlsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnService.ServiceConnectTlsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnService_ServiceConnectTlsConfigurationProperty |
Java | software.amazon.awscdk.services.ecs.CfnService.ServiceConnectTlsConfigurationProperty |
Python | aws_cdk.aws_ecs.CfnService.ServiceConnectTlsConfigurationProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnService » ServiceConnectTlsConfigurationProperty |
The key that encrypts and decrypts your resources for Service Connect TLS.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const serviceConnectTlsConfigurationProperty: ecs.CfnService.ServiceConnectTlsConfigurationProperty = {
issuerCertificateAuthority: {
awsPcaAuthorityArn: 'awsPcaAuthorityArn',
},
// the properties below are optional
kmsKey: 'kmsKey',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| issuer | IResolvable | Service | The signer certificate authority. |
| kms | string | The AWS Key Management Service key. |
| role | string | The Amazon Resource Name (ARN) of the IAM role that's associated with the Service Connect TLS. |
issuerCertificateAuthority
Type:
IResolvable | Service
The signer certificate authority.
kmsKey?
Type:
string
(optional)
The AWS Key Management Service key.
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role that's associated with the Service Connect TLS.

.NET
Go
Java
Python
TypeScript