DockerImageConfig

class aws_cdk.aws_stepfunctions_tasks.DockerImageConfig(*, image_uri)

Bases: object

Configuration for a using Docker image.

Parameters:

image_uri (str) – The fully qualified URI of the Docker image.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_stepfunctions_tasks as stepfunctions_tasks

docker_image_config = stepfunctions_tasks.DockerImageConfig(
    image_uri="imageUri"
)

Attributes

image_uri

The fully qualified URI of the Docker image.