Class: Aws::DeviceFarm::Types::UpdateUploadRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::UpdateUploadRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the uploaded test spec.
-
#content_type ⇒ String
The upload’s content type (for example, ‘application/x-yaml`).
-
#edit_content ⇒ Boolean
Set to true if the YAML file has changed and must be updated.
-
#name ⇒ String
The upload’s test spec file name.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the uploaded test spec.
6263 6264 6265 6266 6267 6268 6269 6270 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 6263 class UpdateUploadRequest < Struct.new( :arn, :name, :content_type, :edit_content) SENSITIVE = [] include Aws::Structure end |
#content_type ⇒ String
The upload’s content type (for example, ‘application/x-yaml`).
6263 6264 6265 6266 6267 6268 6269 6270 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 6263 class UpdateUploadRequest < Struct.new( :arn, :name, :content_type, :edit_content) SENSITIVE = [] include Aws::Structure end |
#edit_content ⇒ Boolean
Set to true if the YAML file has changed and must be updated. Otherwise, set to false.
6263 6264 6265 6266 6267 6268 6269 6270 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 6263 class UpdateUploadRequest < Struct.new( :arn, :name, :content_type, :edit_content) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The upload’s test spec file name. The name must not contain any forward slashes (/). The test spec file name must end with the ‘.yaml` or `.yml` file extension.
6263 6264 6265 6266 6267 6268 6269 6270 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 6263 class UpdateUploadRequest < Struct.new( :arn, :name, :content_type, :edit_content) SENSITIVE = [] include Aws::Structure end |