interface TrustedCaCertificateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityAgent.CfnPentest.TrustedCaCertificateProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityagent#CfnPentest_TrustedCaCertificateProperty |
Java | software.amazon.awscdk.services.securityagent.CfnPentest.TrustedCaCertificateProperty |
Python | aws_cdk.aws_securityagent.CfnPentest.TrustedCaCertificateProperty |
TypeScript | aws-cdk-lib » aws_securityagent » CfnPentest » TrustedCaCertificateProperty |
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 { aws_securityagent as securityagent } from 'aws-cdk-lib';
const trustedCaCertificateProperty: securityagent.CfnPentest.TrustedCaCertificateProperty = {
source: {
artifactId: 'artifactId',
inlinePem: 'inlinePem',
s3Location: 's3Location',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| source | IResolvable | Ca | Source of a trusted CA certificate. |
source
Type:
IResolvable | Ca
Source of a trusted CA certificate.
Exactly one member must be set.

.NET
Go
Java
Python
TypeScript