interface CaCertificateSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityAgent.CfnPentest.CaCertificateSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityagent#CfnPentest_CaCertificateSourceProperty |
Java | software.amazon.awscdk.services.securityagent.CfnPentest.CaCertificateSourceProperty |
Python | aws_cdk.aws_securityagent.CfnPentest.CaCertificateSourceProperty |
TypeScript | aws-cdk-lib » aws_securityagent » CfnPentest » CaCertificateSourceProperty |
Source of a trusted CA certificate.
Exactly one member must be set.
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 caCertificateSourceProperty: securityagent.CfnPentest.CaCertificateSourceProperty = {
artifactId: 'artifactId',
inlinePem: 'inlinePem',
s3Location: 's3Location',
};
Properties
| Name | Type | Description |
|---|---|---|
| artifact | string | Artifact ID of an uploaded certificate file. |
| inline | string | PEM-encoded X.509 certificate supplied inline. |
| s3 | string | Amazon S3 location URI of a customer-staged certificate. |
artifactId?
Type:
string
(optional)
Artifact ID of an uploaded certificate file.
inlinePem?
Type:
string
(optional)
PEM-encoded X.509 certificate supplied inline.
s3Location?
Type:
string
(optional)
Amazon S3 location URI of a customer-staged certificate.

.NET
Go
Java
Python
TypeScript