Class: Aws::Mobile::Types::CreateProjectRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mobile/lib/aws-sdk-mobile/types.rb

Overview

Request structure used to request a project be created.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#contentsString

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.

Returns:

  • (String)


105
106
107
108
109
110
111
112
# File 'gems/aws-sdk-mobile/lib/aws-sdk-mobile/types.rb', line 105

class CreateProjectRequest < Struct.new(
  :name,
  :region,
  :contents,
  :snapshot_id)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

Name of the project.

Returns:

  • (String)


105
106
107
108
109
110
111
112
# File 'gems/aws-sdk-mobile/lib/aws-sdk-mobile/types.rb', line 105

class CreateProjectRequest < Struct.new(
  :name,
  :region,
  :contents,
  :snapshot_id)
  SENSITIVE = []
  include Aws::Structure
end

#regionString

Default region where project resources should be created.

Returns:

  • (String)


105
106
107
108
109
110
111
112
# File 'gems/aws-sdk-mobile/lib/aws-sdk-mobile/types.rb', line 105

class CreateProjectRequest < Struct.new(
  :name,
  :region,
  :contents,
  :snapshot_id)
  SENSITIVE = []
  include Aws::Structure
end

#snapshot_idString

Unique identifier for an exported snapshot of project configuration. This snapshot identifier is included in the share URL when a project is exported.

Returns:

  • (String)


105
106
107
108
109
110
111
112
# File 'gems/aws-sdk-mobile/lib/aws-sdk-mobile/types.rb', line 105

class CreateProjectRequest < Struct.new(
  :name,
  :region,
  :contents,
  :snapshot_id)
  SENSITIVE = []
  include Aws::Structure
end