Class: Aws::RoboMaker::Types::TemplateLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::TemplateLocation
- Defined in:
- gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb
Overview
Note:
When making an API call, you may pass TemplateLocation data as a hash:
{
s3_bucket: "S3Bucket", # required
s3_key: "S3Key", # required
}
Information about a template location.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_bucket ⇒ String
The Amazon S3 bucket name.
-
#s3_key ⇒ String
The list of S3 keys identifying the data source files.
Instance Attribute Details
#s3_bucket ⇒ String
The Amazon S3 bucket name.
6516 6517 6518 6519 6520 6521 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 6516 class TemplateLocation < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |
#s3_key ⇒ String
The list of S3 keys identifying the data source files.
6516 6517 6518 6519 6520 6521 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 6516 class TemplateLocation < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |