interface ServiceConnectTlsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ECS.CfnServicePropsMixin.ServiceConnectTlsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsecs#CfnServicePropsMixin_ServiceConnectTlsConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ecs.CfnServicePropsMixin.ServiceConnectTlsConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ecs.CfnServicePropsMixin.ServiceConnectTlsConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ecs » 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 { aws_ecs as ecs } from '@aws-cdk/cfn-property-mixins';
const serviceConnectTlsConfigurationProperty: ecs.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