Interface CfnPipelinePropsMixin.S3LocationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipelinePropsMixin.S3LocationProperty.Jsii$Proxy
- Enclosing class:
CfnPipelinePropsMixin
@Stability(Stable)
public static interface CfnPipelinePropsMixin.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.cfnpropertymixins.services.sagemaker.*;
S3LocationProperty s3LocationProperty = S3LocationProperty.builder()
.bucket("bucket")
.eTag("eTag")
.key("key")
.version("version")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipelinePropsMixin.S3LocationPropertystatic final classAn implementation forCfnPipelinePropsMixin.S3LocationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the S3 bucket.default StringgetETag()A file checksum of the pipeline definition file.default StringgetKey()The object key (or key name) which uniquely identifies the object in an S3 bucket.default StringThe 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:
-
getETag
A file checksum of the pipeline definition file.- See Also:
-
getKey
The object key (or key name) which uniquely identifies the object in an S3 bucket.- See Also:
-
getVersion
The version ID of the pipeline definition file.If not specified, Amazon SageMaker will retrieve the latest version.
- See Also:
-
builder
-