Class: Aws::Mobile::Types::ExportProjectResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Mobile::Types::ExportProjectResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mobile/types.rb
Overview
Result structure used for requests to export project configuration details.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#download_url ⇒ String
URL which can be used to download the exported project configuation file(s).
-
#share_url ⇒ String
URL which can be shared to allow other AWS users to create their own project in AWS Mobile Hub with the same configuration as the specified project.
-
#snapshot_id ⇒ String
Unique identifier for the exported snapshot of the project configuration.
Instance Attribute Details
#download_url ⇒ String
URL which can be used to download the exported project configuation file(s).
310 311 312 313 314 315 316 |
# File 'lib/aws-sdk-mobile/types.rb', line 310 class ExportProjectResult < Struct.new( :download_url, :share_url, :snapshot_id) SENSITIVE = [] include Aws::Structure end |
#share_url ⇒ String
URL which can be shared to allow other AWS users to create their own project in AWS Mobile Hub with the same configuration as the specified project. This URL pertains to a snapshot in time of the project configuration that is created when this API is called. If you want to share additional changes to your project configuration, then you will need to create and share a new snapshot by calling this method again.
310 311 312 313 314 315 316 |
# File 'lib/aws-sdk-mobile/types.rb', line 310 class ExportProjectResult < Struct.new( :download_url, :share_url, :snapshot_id) SENSITIVE = [] include Aws::Structure end |
#snapshot_id ⇒ String
Unique identifier for the exported snapshot of the project configuration. This snapshot identifier is included in the share URL.
310 311 312 313 314 315 316 |
# File 'lib/aws-sdk-mobile/types.rb', line 310 class ExportProjectResult < Struct.new( :download_url, :share_url, :snapshot_id) SENSITIVE = [] include Aws::Structure end |