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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPentest.TrustedCaCertificatePropertystatic final classAn implementation forCfnPentest.TrustedCaCertificateProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSource
Source of a trusted CA certificate.Exactly one member must be set.
Returns union: either
IResolvableorCfnPentest.CaCertificateSourceProperty- See Also:
-
builder
-