Class: Aws::LookoutforVision::Types::S3Location

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-lookoutforvision/lib/aws-sdk-lookoutforvision/types.rb

Overview

Information about the location of training output or the output of a model packaging job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The S3 bucket that contains the training or model packaging job output. If you are training a model, the bucket must in your AWS account. If you use an S3 bucket for a model packaging job, the S3 bucket must be in the same AWS Region and AWS account in which you use AWS IoT Greengrass.

Returns:

  • (String)


1634
1635
1636
1637
1638
1639
# File 'gems/aws-sdk-lookoutforvision/lib/aws-sdk-lookoutforvision/types.rb', line 1634

class S3Location < Struct.new(
  :bucket,
  :prefix)
  SENSITIVE = []
  include Aws::Structure
end

#prefixString

The path of the folder, within the S3 bucket, that contains the output.

Returns:

  • (String)


1634
1635
1636
1637
1638
1639
# File 'gems/aws-sdk-lookoutforvision/lib/aws-sdk-lookoutforvision/types.rb', line 1634

class S3Location < Struct.new(
  :bucket,
  :prefix)
  SENSITIVE = []
  include Aws::Structure
end