Class: Aws::Greengrass::Types::StartBulkDeploymentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Greengrass::Types::StartBulkDeploymentRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrass/types.rb
Overview
Information about a bulk deployment. You cannot start a new bulk deployment while another one is still running or in a non-terminal state.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
- #amzn_client_token ⇒ String
-
#execution_role_arn ⇒ String
The ARN of the execution role to associate with the bulk deployment operation.
-
#input_file_uri ⇒ String
The URI of the input file contained in the S3 bucket.
-
#tags ⇒ Hash<String,String>
The key-value pair for the resource tag.
Instance Attribute Details
#amzn_client_token ⇒ String
4304 4305 4306 4307 4308 4309 4310 4311 |
# File 'lib/aws-sdk-greengrass/types.rb', line 4304 class StartBulkDeploymentRequest < Struct.new( :amzn_client_token, :execution_role_arn, :input_file_uri, :tags) SENSITIVE = [] include Aws::Structure end |
#execution_role_arn ⇒ String
The ARN of the execution role to associate with the bulk deployment operation. This IAM role must allow the ”greengrass:CreateDeployment” action for all group versions that are listed in the input file. This IAM role must have access to the S3 bucket containing the input file.
4304 4305 4306 4307 4308 4309 4310 4311 |
# File 'lib/aws-sdk-greengrass/types.rb', line 4304 class StartBulkDeploymentRequest < Struct.new( :amzn_client_token, :execution_role_arn, :input_file_uri, :tags) SENSITIVE = [] include Aws::Structure end |
#input_file_uri ⇒ String
The URI of the input file contained in the S3 bucket. The execution role must have ”getObject” permissions on this bucket to access the input file. The input file is a JSON-serialized, line delimited file with UTF-8 encoding that provides a list of group and version IDs and the deployment type. This file must be less than 100 MB. Currently, AWS IoT Greengrass supports only ”NewDeployment” deployment types.
4304 4305 4306 4307 4308 4309 4310 4311 |
# File 'lib/aws-sdk-greengrass/types.rb', line 4304 class StartBulkDeploymentRequest < Struct.new( :amzn_client_token, :execution_role_arn, :input_file_uri, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The key-value pair for the resource tag.
4304 4305 4306 4307 4308 4309 4310 4311 |
# File 'lib/aws-sdk-greengrass/types.rb', line 4304 class StartBulkDeploymentRequest < Struct.new( :amzn_client_token, :execution_role_arn, :input_file_uri, :tags) SENSITIVE = [] include Aws::Structure end |