Interface BuildEnvironmentCertificate
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BuildEnvironmentCertificate.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:41.669Z")
@Stability(Stable)
public interface BuildEnvironmentCertificate
extends software.amazon.jsii.JsiiSerializable
Location of a PEM certificate on S3.
Example:
Repository ecrRepository; Project.Builder.create(this, "Project") .environment(BuildEnvironment.builder() .buildImage(WindowsBuildImage.fromEcrRepository(ecrRepository, "v1.0", WindowsImageType.SERVER_2019)) // optional certificate to include in the build image .certificate(BuildEnvironmentCertificate.builder() .bucket(Bucket.fromBucketName(this, "Bucket", "my-bucket")) .objectKey("path/to/cert.pem") .build()) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forBuildEnvironmentCertificate
static final class
An implementation forBuildEnvironmentCertificate
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The bucket where the certificate is.The full path and name of the key file.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The bucket where the certificate is. -
getObjectKey
The full path and name of the key file. -
builder
-