Class: Aws::Mobile::Types::UpdateProjectRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Mobile::Types::UpdateProjectRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mobile/types.rb
Overview
Request structure used for requests to update project configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#contents ⇒ String
ZIP or YAML file which contains project configuration to be updated.
-
#project_id ⇒ String
Unique project identifier.
Instance Attribute Details
#contents ⇒ String
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.
630 631 632 633 634 635 |
# File 'lib/aws-sdk-mobile/types.rb', line 630 class UpdateProjectRequest < Struct.new( :contents, :project_id) SENSITIVE = [] include Aws::Structure end |
#project_id ⇒ String
Unique project identifier.
630 631 632 633 634 635 |
# File 'lib/aws-sdk-mobile/types.rb', line 630 class UpdateProjectRequest < Struct.new( :contents, :project_id) SENSITIVE = [] include Aws::Structure end |