Interface CfnPipeline.S3LocationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipeline.S3LocationProperty.Jsii$Proxy
- Enclosing class:
CfnPipeline
@Stability(Stable)
public static interface CfnPipeline.S3LocationProperty
extends software.amazon.jsii.JsiiSerializable
The location of the pipeline definition stored in Amazon S3.
If specified, SageMaker will retrieve the pipeline definition from this location.
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.*; S3LocationProperty s3LocationProperty = S3LocationProperty.builder() .bucket("bucket") .key("key") // the properties below are optional .eTag("eTag") .version("version") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPipeline.S3LocationProperty
static final class
An implementation forCfnPipeline.S3LocationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the S3 bucket.default String
getETag()
A file checksum of the pipeline definition file.getKey()
The object key (or key name) which uniquely identifies the object in an S3 bucket.default String
The version ID of the pipeline definition file.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The name of the S3 bucket.- See Also:
-
getKey
The object key (or key name) which uniquely identifies the object in an S3 bucket.- See Also:
-
getETag
A file checksum of the pipeline definition file.- See Also:
-
getVersion
The version ID of the pipeline definition file.If not specified, Amazon SageMaker will retrieve the latest version.
- See Also:
-
builder
-