Class: Aws::MWAAServerless::Types::DefinitionS3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::MWAAServerless::Types::DefinitionS3Location
- Defined in:
- gems/aws-sdk-mwaaserverless/lib/aws-sdk-mwaaserverless/types.rb
Overview
Specifies the Amazon S3 location of a workflow definition file. This structure contains the bucket name, object key, and optional version ID for the workflow definition. Amazon Managed Workflows for Apache Airflow Serverless takes a snapshot of the definition file at the time of workflow creation or update, ensuring that the workflow behavior remains consistent even if the source file is modified. The definition must be a valid YAML file that uses supported Amazon Web Services operators and Amazon Managed Workflows for Apache Airflow Serverless syntax.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the Amazon S3 bucket that contains the workflow definition file.
-
#object_key ⇒ String
The key (name) of the workflow definition file within the S3 bucket.
-
#version_id ⇒ String
Optional.
Instance Attribute Details
#bucket ⇒ String
The name of the Amazon S3 bucket that contains the workflow definition file.
246 247 248 249 250 251 252 |
# File 'gems/aws-sdk-mwaaserverless/lib/aws-sdk-mwaaserverless/types.rb', line 246 class DefinitionS3Location < Struct.new( :bucket, :object_key, :version_id) SENSITIVE = [] include Aws::Structure end |
#object_key ⇒ String
The key (name) of the workflow definition file within the S3 bucket.
246 247 248 249 250 251 252 |
# File 'gems/aws-sdk-mwaaserverless/lib/aws-sdk-mwaaserverless/types.rb', line 246 class DefinitionS3Location < Struct.new( :bucket, :object_key, :version_id) SENSITIVE = [] include Aws::Structure end |
#version_id ⇒ String
Optional. The version ID of the workflow definition file in Amazon S3. If not specified, the latest version is used.
246 247 248 249 250 251 252 |
# File 'gems/aws-sdk-mwaaserverless/lib/aws-sdk-mwaaserverless/types.rb', line 246 class DefinitionS3Location < Struct.new( :bucket, :object_key, :version_id) SENSITIVE = [] include Aws::Structure end |