Class: Aws::Mobile::Types::CreateProjectRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Mobile::Types::CreateProjectRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mobile/types.rb
Overview
Request structure used to request a project be created.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#contents ⇒ String
ZIP or YAML file which contains configuration settings to be used when creating the project.
-
#name ⇒ String
Name of the project.
-
#region ⇒ String
Default region where project resources should be created.
-
#snapshot_id ⇒ String
Unique identifier for an exported snapshot of project configuration.
Instance Attribute Details
#contents ⇒ String
ZIP or YAML file which contains configuration settings to be used when creating the project. This may be the contents of the file downloaded from the URL provided in an export project operation.
105 106 107 108 109 110 111 112 |
# File 'lib/aws-sdk-mobile/types.rb', line 105 class CreateProjectRequest < Struct.new( :name, :region, :contents, :snapshot_id) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Name of the project.
105 106 107 108 109 110 111 112 |
# File 'lib/aws-sdk-mobile/types.rb', line 105 class CreateProjectRequest < Struct.new( :name, :region, :contents, :snapshot_id) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
Default region where project resources should be created.
105 106 107 108 109 110 111 112 |
# File 'lib/aws-sdk-mobile/types.rb', line 105 class CreateProjectRequest < Struct.new( :name, :region, :contents, :snapshot_id) SENSITIVE = [] include Aws::Structure end |
#snapshot_id ⇒ String
Unique identifier for an exported snapshot of project configuration. This snapshot identifier is included in the share URL when a project is exported.
105 106 107 108 109 110 111 112 |
# File 'lib/aws-sdk-mobile/types.rb', line 105 class CreateProjectRequest < Struct.new( :name, :region, :contents, :snapshot_id) SENSITIVE = [] include Aws::Structure end |