Interface CfnServicePropsMixin.ServiceConnectTlsConfigurationProperty

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

@Stability(Stable) public static interface CfnServicePropsMixin.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.mixins.preview.services.ecs.mixins.*;
 ServiceConnectTlsConfigurationProperty serviceConnectTlsConfigurationProperty = ServiceConnectTlsConfigurationProperty.builder()
         .issuerCertificateAuthority(ServiceConnectTlsCertificateAuthorityProperty.builder()
                 .awsPcaAuthorityArn("awsPcaAuthorityArn")
                 .build())
         .kmsKey("kmsKey")
         .roleArn("roleArn")
         .build();
 

See Also: