Class: Aws::DeviceFarm::Types::UpdateUploadRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::UpdateUploadRequest
- Defined in:
- gems/aws-sdk-devicefarm/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.
6268 6269 6270 6271 6272 6273 6274 6275 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 6268 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
).
6268 6269 6270 6271 6272 6273 6274 6275 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 6268 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.
6268 6269 6270 6271 6272 6273 6274 6275 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 6268 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.
6268 6269 6270 6271 6272 6273 6274 6275 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 6268 class UpdateUploadRequest < Struct.new( :arn, :name, :content_type, :edit_content) SENSITIVE = [] include Aws::Structure end |