Class StateMachineArgs


  • public final class StateMachineArgs
    extends com.pulumi.resources.ResourceArgs
    • Method Detail

      • definition

        public com.pulumi.core.Output<java.lang.String> definition()
        Returns:
        The [Amazon States Language](https://docs.aws.amazon.com/step-functions/latest/dg/concepts-amazon-states-language.html) definition of the state machine.
      • loggingConfiguration

        public java.util.Optional<com.pulumi.core.Output<StateMachineLoggingConfigurationArgs>> loggingConfiguration()
        Returns:
        Defines what execution history events are logged and where they are logged. The `logging_configuration` parameter is only valid when `type` is set to `EXPRESS`. Defaults to `OFF`. For more information see [Logging Express Workflows](https://docs.aws.amazon.com/step-functions/latest/dg/cw-logs.html) and [Log Levels](https://docs.aws.amazon.com/step-functions/latest/dg/cloudwatch-log-level.html) in the AWS Step Functions User Guide.
      • name

        public java.util.Optional<com.pulumi.core.Output<java.lang.String>> name()
        Returns:
        The name of the state machine. The name should only contain `0`-`9`, `A`-`Z`, `a`-`z`, `-` and `_`. If omitted, the provider will assign a random, unique name.
      • namePrefix

        public java.util.Optional<com.pulumi.core.Output<java.lang.String>> namePrefix()
        Returns:
        Creates a unique name beginning with the specified prefix. Conflicts with `name`.
      • publish

        public java.util.Optional<com.pulumi.core.Output<java.lang.Boolean>> publish()
        Returns:
        Set to true to publish a version of the state machine during creation. Default: false.
      • roleArn

        public com.pulumi.core.Output<java.lang.String> roleArn()
        Returns:
        The Amazon Resource Name (ARN) of the IAM role to use for this state machine.
      • tags

        public java.util.Optional<com.pulumi.core.Output<java.util.Map<java.lang.String,​java.lang.String>>> tags()
        Returns:
        Key-value map of resource tags. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
      • tracingConfiguration

        public java.util.Optional<com.pulumi.core.Output<StateMachineTracingConfigurationArgs>> tracingConfiguration()
        Returns:
        Selects whether AWS X-Ray tracing is enabled.
      • type

        public java.util.Optional<com.pulumi.core.Output<java.lang.String>> type()
        Returns:
        Determines whether a Standard or Express state machine is created. The default is `STANDARD`. You cannot update the type of a state machine once it has been created. Valid values: `STANDARD`, `EXPRESS`.