Class: Aws::Snowball::Types::CreateReturnShippingLabelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Snowball::Types::CreateReturnShippingLabelRequest
- Defined in:
- gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb
Overview
Note:
When making an API call, you may pass CreateReturnShippingLabelRequest data as a hash:
{
job_id: "JobId", # required
shipping_option: "SECOND_DAY", # accepts SECOND_DAY, NEXT_DAY, EXPRESS, STANDARD
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_id ⇒ String
The ID for a job that you want to create the return shipping label for.
-
#shipping_option ⇒ String
The shipping speed for a particular job.
Instance Attribute Details
#job_id ⇒ String
The ID for a job that you want to create the return shipping label
for. For example JID123e4567-e89b-12d3-a456-426655440000
.
837 838 839 840 841 842 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 837 class CreateReturnShippingLabelRequest < Struct.new( :job_id, :shipping_option) SENSITIVE = [] include Aws::Structure end |
#shipping_option ⇒ String
The shipping speed for a particular job. This speed doesn't dictate how soon the device is returned to AWS. This speed represents how quickly it moves to its destination while in transit. Regional shipping speeds are as follows:
837 838 839 840 841 842 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 837 class CreateReturnShippingLabelRequest < Struct.new( :job_id, :shipping_option) SENSITIVE = [] include Aws::Structure end |