Class: Aws::Imagebuilder::Types::ImagePipeline

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

Overview

Details of an image pipeline.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The Amazon Resource Name (ARN) of the image pipeline.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#consecutive_failuresInteger

Image Builder tracks the number of consecutive failures for scheduled pipeline executions and takes one of the following actions each time it runs on a schedule:

  • If the pipeline execution is successful, the number of consecutive failures resets to zero.

  • If the pipeline execution fails, Image Builder increments the number of consecutive failures. If the failure count exceeds the limit defined in the AutoDisablePolicy, Image Builder disables the pipeline.

The consecutive failure count is also reset to zero under the following conditions:

  • The pipeline runs manually and succeeds.

  • The pipeline configuration is updated.

If the pipeline runs manually and fails, the count remains the same. The next scheduled run continues to increment where it left off before.

Returns:

  • (Integer)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#container_recipe_arnString

The Amazon Resource Name (ARN) of the container recipe that is used for this pipeline.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#date_createdString

The date on which this image pipeline was created.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#date_last_runString

This is no longer supported, and does not return a value.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#date_next_runString

The next date when the pipeline is scheduled to run.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#date_updatedString

The date on which this image pipeline was last updated.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

The description of the image pipeline.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#distribution_configuration_arnString

The Amazon Resource Name (ARN) of the distribution configuration associated with this image pipeline.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#enhanced_image_metadata_enabledBoolean

Specifies whether to collect additional information about the image being created, including the operating system (OS) version and package list. Defaults to true.

Returns:

  • (Boolean)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#execution_roleString

The name or Amazon Resource Name (ARN) for the IAM role you create that grants Image Builder access to perform workflow actions.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#image_recipe_arnString

The Amazon Resource Name (ARN) of the image recipe associated with this image pipeline.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#image_scanning_configurationTypes::ImageScanningConfiguration

Contains settings for vulnerability scans.



4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#image_tagsHash<String,String>

The tags to be applied to the images produced by this pipeline.

Returns:

  • (Hash<String,String>)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#image_tests_configurationTypes::ImageTestsConfiguration

The image tests configuration of the image pipeline.



4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#infrastructure_configuration_arnString

The Amazon Resource Name (ARN) of the infrastructure configuration associated with this image pipeline.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#last_run_statusString

The status of the last image that this pipeline built, such as BUILDING, TESTING, FAILED, or AVAILABLE.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#logging_configurationTypes::PipelineLoggingConfiguration

Defines logging configuration for the output image.



4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the image pipeline.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#platformString

The platform of the image pipeline.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#scheduleTypes::Schedule

The schedule of the image pipeline.

Returns:



4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The status of the image pipeline.

Returns:

  • (String)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#tagsHash<String,String>

The tags of this image pipeline.

Returns:

  • (Hash<String,String>)


4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end

#workflowsArray<Types::WorkflowConfiguration>

Contains the workflows that run for the image pipeline.

Returns:



4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4224

class ImagePipeline < Struct.new(
  :arn,
  :name,
  :description,
  :platform,
  :enhanced_image_metadata_enabled,
  :image_recipe_arn,
  :container_recipe_arn,
  :infrastructure_configuration_arn,
  :distribution_configuration_arn,
  :image_tests_configuration,
  :schedule,
  :status,
  :date_created,
  :date_updated,
  :date_last_run,
  :last_run_status,
  :date_next_run,
  :tags,
  :image_scanning_configuration,
  :image_tags,
  :execution_role,
  :workflows,
  :logging_configuration,
  :consecutive_failures)
  SENSITIVE = []
  include Aws::Structure
end