interface ServiceConnectTlsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnServicePropsMixin.ServiceConnectTlsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnServicePropsMixin_ServiceConnectTlsConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnServicePropsMixin.ServiceConnectTlsConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnServicePropsMixin.ServiceConnectTlsConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » CfnServicePropsMixin » 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 { mixins as ecs_mixins } from '@aws-cdk/mixins-preview/aws-ecs';
const serviceConnectTlsConfigurationProperty: ecs_mixins.CfnServicePropsMixin.ServiceConnectTlsConfigurationProperty = {
issuerCertificateAuthority: {
awsPcaAuthorityArn: 'awsPcaAuthorityArn',
},
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
(optional)
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