Interface CfnRepositoryAssociationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRepositoryAssociationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.95.0 (build f1ff514)", date="2024-03-26T18:09:21.131Z") @Stability(Stable) public interface CfnRepositoryAssociationProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnRepositoryAssociation.

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.codegurureviewer.*;
 CfnRepositoryAssociationProps cfnRepositoryAssociationProps = CfnRepositoryAssociationProps.builder()
         .name("name")
         .type("type")
         // the properties below are optional
         .bucketName("bucketName")
         .connectionArn("connectionArn")
         .owner("owner")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: