Interface CfnRepository.S3Property

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRepository.S3Property.Jsii$Proxy
Enclosing class:
CfnRepository

@Stability(Stable) public static interface CfnRepository.S3Property extends software.amazon.jsii.JsiiSerializable
Information about the Amazon S3 bucket that contains the code that will be committed to the new repository.

Changes to this property are ignored after initial resource creation.

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.codecommit.*;
 S3Property s3Property = S3Property.builder()
         .bucket("bucket")
         .key("key")
         // the properties below are optional
         .objectVersion("objectVersion")
         .build();
 

See Also: