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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnArtifact.ArtifactSourcePropertystatic final classAn implementation forCfnArtifact.ArtifactSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceUri
The URI of the source.- See Also:
-
getSourceTypes
A list of source types.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnArtifact.ArtifactSourceTypeProperty>- See Also:
-
builder
-