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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.ServiceConnectTlsConfigurationPropertystatic final classAn implementation forCfnService.ServiceConnectTlsConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIssuerCertificateAuthority
The signer certificate authority.Returns union: either
IResolvableorCfnService.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
-