Interface CfnService.ServiceConnectTlsConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnService.ServiceConnectTlsConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnService

@Stability(Stable) public static interface CfnService.ServiceConnectTlsConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ecs.*;
 ServiceConnectTlsConfigurationProperty serviceConnectTlsConfigurationProperty = ServiceConnectTlsConfigurationProperty.builder()
         .issuerCertificateAuthority(ServiceConnectTlsCertificateAuthorityProperty.builder()
                 .awsPcaAuthorityArn("awsPcaAuthorityArn")
                 .build())
         // the properties below are optional
         .kmsKey("kmsKey")
         .roleArn("roleArn")
         .build();
 

See Also: