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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnServicePropsMixin.ServiceConnectTlsConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIssuerCertificateAuthority
The signer certificate authority.Returns union: either
IResolvableorCfnServicePropsMixin.ServiceConnectTlsCertificateAuthorityProperty- See Also:
-
getKmsKey
The AWS Key Management Service key.- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) of the IAM role that's associated with the Service Connect TLS.- See Also:
-
builder
@Stability(Stable) static CfnServicePropsMixin.ServiceConnectTlsConfigurationProperty.Builder builder()
-