Class: Aws::States::Types::CreateActivityInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-states/types.rb

Overview

Note:

When making an API call, you may pass CreateActivityInput data as a hash:

{
  name: "Name", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the activity to create. This name must be unique for your AWS account and region for 90 days. For more information, see [ Limits Related to State Machine Executions] in the *AWS Step Functions Developer Guide*.

A name must not contain:

  • whitespace

  • brackets ‘< > { } [ ]`

  • wildcard characters ‘? *`

  • special characters “ “ # % \ ^ | ~ ‘ $ & , ; : / “

  • control characters (‘U+0000-001F`, `U+007F-009F`)

[1]: docs.aws.amazon.com/step-functions/latest/dg/limits.html#service-limits-state-machine-executions

Returns:

  • (String)


191
192
193
194
# File 'lib/aws-sdk-states/types.rb', line 191

class CreateActivityInput < Struct.new(
  :name)
  include Aws::Structure
end