Struct rusoto_stepfunctions::CreateActivityInput[][src]

pub struct CreateActivityInput {
    pub name: String,
}

Fields

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)

Trait Implementations

impl Default for CreateActivityInput
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateActivityInput
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateActivityInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateActivityInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations