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 SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBuildEnvironmentCertificatestatic final classAn implementation forBuildEnvironmentCertificate
- 
Method SummaryModifier 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- 
getBucketThe bucket where the certificate is.
- 
getObjectKeyThe full path and name of the key file.
- 
builder
 
-