Interface CfnArtifact.ArtifactSourceProperty

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

@Stability(Stable) public static interface CfnArtifact.ArtifactSourceProperty 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.sagemaker.*;
 ArtifactSourceProperty artifactSourceProperty = ArtifactSourceProperty.builder()
         .sourceUri("sourceUri")
         // the properties below are optional
         .sourceTypes(List.of(ArtifactSourceTypeProperty.builder()
                 .sourceIdType("sourceIdType")
                 .value("value")
                 .build()))
         .build();
 

See Also: