Method: Aws::MWAA::Types::CreateEnvironmentInput#startup_script_s3_object_version

Defined in:
lib/aws-sdk-mwaa/types.rb

#startup_script_s3_object_versionString

The version of the startup shell script in your Amazon S3 bucket. You must specify the [version ID] that Amazon S3 assigns to the file every time you update the script.

Version IDs are Unicode, UTF-8 encoded, URL-ready, opaque strings that are no more than 1,024 bytes long. The following is an example:

‘3sL4kqtJlcpXroDTDmJ+rmSpXd3dIbrHY+MTRCxf3vjVBH40Nr8X8gdRQBpUMLUo`

For more information, see [Using a startup script].

[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/versioning-workflows.html [2]: docs.aws.amazon.com/mwaa/latest/userguide/using-startup-script.html

Returns:

  • (String)


352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
# File 'lib/aws-sdk-mwaa/types.rb', line 352

class CreateEnvironmentInput < Struct.new(
  :name,
  :execution_role_arn,
  :source_bucket_arn,
  :dag_s3_path,
  :network_configuration,
  :plugins_s3_path,
  :plugins_s3_object_version,
  :requirements_s3_path,
  :requirements_s3_object_version,
  :startup_script_s3_path,
  :startup_script_s3_object_version,
  :airflow_configuration_options,
  :environment_class,
  :max_workers,
  :kms_key,
  :airflow_version,
  :logging_configuration,
  :weekly_maintenance_window_start,
  :tags,
  :webserver_access_mode,
  :min_workers,
  :schedulers,
  :endpoint_management,
  :min_webservers,
  :max_webservers)
  SENSITIVE = [:airflow_configuration_options]
  include Aws::Structure
end