Class: Aws::RoboMaker::Types::SourceConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::SourceConfig
- Defined in:
- gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb
Overview
Note:
When making an API call, you may pass SourceConfig data as a hash:
{
s3_bucket: "S3Bucket",
s3_key: "S3Key",
architecture: "X86_64", # accepts X86_64, ARM64, ARMHF
}
Information about a source configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#architecture ⇒ String
The target processor architecture for the application.
-
#s3_bucket ⇒ String
The Amazon S3 bucket name.
-
#s3_key ⇒ String
The s3 object key.
Instance Attribute Details
#architecture ⇒ String
The target processor architecture for the application.
6028 6029 6030 6031 6032 6033 6034 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 6028 class SourceConfig < Struct.new( :s3_bucket, :s3_key, :architecture) SENSITIVE = [] include Aws::Structure end |
#s3_bucket ⇒ String
The Amazon S3 bucket name.
6028 6029 6030 6031 6032 6033 6034 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 6028 class SourceConfig < Struct.new( :s3_bucket, :s3_key, :architecture) SENSITIVE = [] include Aws::Structure end |
#s3_key ⇒ String
The s3 object key.
6028 6029 6030 6031 6032 6033 6034 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 6028 class SourceConfig < Struct.new( :s3_bucket, :s3_key, :architecture) SENSITIVE = [] include Aws::Structure end |