Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ParallelismConfiguration ¶
type ParallelismConfiguration struct { // Maximum parallel execution steps MaxParallelExecutionSteps int `json:"MaxParallelExecutionSteps"` }
ParallelismConfiguration
func (*ParallelismConfiguration) MarshalJSON ¶
func (strct *ParallelismConfiguration) MarshalJSON() ([]byte, error)
func (*ParallelismConfiguration) UnmarshalJSON ¶
func (strct *ParallelismConfiguration) UnmarshalJSON(b []byte) error
type Resource ¶
type Resource struct { ParallelismConfiguration *ParallelismConfiguration `json:"ParallelismConfiguration,omitempty"` PipelineDefinition *PipelineDefinition `json:"PipelineDefinition"` // The description of the Pipeline. PipelineDescription string `json:"PipelineDescription,omitempty"` // The display name of the Pipeline. PipelineDisplayName string `json:"PipelineDisplayName,omitempty"` // The name of the Pipeline. PipelineName string `json:"PipelineName"` // Role Arn RoleArn string `json:"RoleArn"` Tags []*Tag `json:"Tags,omitempty"` }
Resource Resource Type definition for AWS::SageMaker::Pipeline
func (*Resource) MarshalJSON ¶
func (*Resource) UnmarshalJSON ¶
type S3Location ¶
type S3Location struct { // The name of the S3 bucket where the PipelineDefinition file is stored. Bucket string `json:"Bucket"` // The Amazon S3 ETag (a file checksum) of the PipelineDefinition file. If you don't specify a value, SageMaker skips ETag validation of your PipelineDefinition file. ETag string `json:"ETag,omitempty"` // The file name of the PipelineDefinition file (Amazon S3 object name). Key string `json:"Key"` // For versioning-enabled buckets, a specific version of the PipelineDefinition file. Version string `json:"Version,omitempty"` }
S3Location
func (*S3Location) MarshalJSON ¶
func (strct *S3Location) MarshalJSON() ([]byte, error)
func (*S3Location) UnmarshalJSON ¶
func (strct *S3Location) UnmarshalJSON(b []byte) error
Click to show internal directories.
Click to hide internal directories.