Interface CfnPentest.TrustedCaCertificateProperty

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

@Stability(Stable) public static interface CfnPentest.TrustedCaCertificateProperty extends software.amazon.jsii.JsiiSerializable
Trust anchor used when validating a target endpoint's TLS certificate.

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.securityagent.*;
 TrustedCaCertificateProperty trustedCaCertificateProperty = TrustedCaCertificateProperty.builder()
         .source(CaCertificateSourceProperty.builder()
                 .artifactId("artifactId")
                 .inlinePem("inlinePem")
                 .s3Location("s3Location")
                 .build())
         .build();
 

See Also: