Class: Aws::Mobile::Types::UpdateProjectRequest

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

Overview

Request structure used for requests to update project configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#contentsString

ZIP or YAML file which contains project configuration to be updated. This should be the contents of the file downloaded from the URL provided in an export project operation.

Returns:

  • (String)


630
631
632
633
634
635
# File 'gems/aws-sdk-mobile/lib/aws-sdk-mobile/types.rb', line 630

class UpdateProjectRequest < Struct.new(
  :contents,
  :project_id)
  SENSITIVE = []
  include Aws::Structure
end

#project_idString

Unique project identifier.

Returns:

  • (String)


630
631
632
633
634
635
# File 'gems/aws-sdk-mobile/lib/aws-sdk-mobile/types.rb', line 630

class UpdateProjectRequest < Struct.new(
  :contents,
  :project_id)
  SENSITIVE = []
  include Aws::Structure
end