Interface CfnPentest.AssetsProperty

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

@Stability(Stable) public static interface CfnPentest.AssetsProperty extends software.amazon.jsii.JsiiSerializable
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.securityagent.*;
 AssetsProperty assetsProperty = AssetsProperty.builder()
         .actors(List.of(ActorProperty.builder()
                 .authentication(AuthenticationProperty.builder()
                         .providerType("providerType")
                         .value("value")
                         .build())
                 .description("description")
                 .identifier("identifier")
                 .uris(List.of("uris"))
                 .build()))
         .documents(List.of(DocumentInfoProperty.builder()
                 .artifactId("artifactId")
                 .s3Location("s3Location")
                 .build()))
         .endpoints(List.of(EndpointProperty.builder()
                 .uri("uri")
                 .build()))
         .integratedRepositories(List.of(IntegratedRepositoryProperty.builder()
                 .integrationId("integrationId")
                 .providerResourceId("providerResourceId")
                 .build()))
         .sourceCode(List.of(SourceCodeRepositoryProperty.builder()
                 .s3Location("s3Location")
                 .build()))
         .build();
 

See Also: