Class CreateStateMachineRequest
- java.lang.Object
-
- software.amazon.awssdk.core.SdkRequest
-
- software.amazon.awssdk.awscore.AwsRequest
-
- software.amazon.awssdk.services.sfn.model.SfnRequest
-
- software.amazon.awssdk.services.sfn.model.CreateStateMachineRequest
-
- All Implemented Interfaces:
SdkPojo,ToCopyableBuilder<CreateStateMachineRequest.Builder,CreateStateMachineRequest>
@Generated("software.amazon.awssdk:codegen") public final class CreateStateMachineRequest extends SfnRequest implements ToCopyableBuilder<CreateStateMachineRequest.Builder,CreateStateMachineRequest>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceCreateStateMachineRequest.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateStateMachineRequest.Builderbuilder()Stringdefinition()The Amazon States Language definition of the state machine.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()booleanhasTags()For responses, this returns true if the service returned a value for the Tags property.LoggingConfigurationloggingConfiguration()Defines what execution history events are logged and where they are logged.Stringname()The name of the state machine.Booleanpublish()Set totrueto publish the first version of the state machine during creation.StringroleArn()The Amazon Resource Name (ARN) of the IAM role to use for this state machine.List<SdkField<?>>sdkFields()static Class<? extends CreateStateMachineRequest.Builder>serializableBuilderClass()List<Tag>tags()Tags to be added when creating a state machine.CreateStateMachineRequest.BuildertoBuilder()StringtoString()Returns a string representation of this object.TracingConfigurationtracingConfiguration()Selects whether X-Ray tracing is enabled.StateMachineTypetype()Determines whether a Standard or Express state machine is created.StringtypeAsString()Determines whether a Standard or Express state machine is created.StringversionDescription()Sets description about the state machine version.-
Methods inherited from class software.amazon.awssdk.awscore.AwsRequest
overrideConfiguration
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
name
public final String name()
The name of the state machine.
A name must not contain:
-
white space
-
brackets
< > { } [ ] -
wildcard characters
? * -
special characters
" # % \ ^ | ~ ` $ & , ; : / -
control characters (
U+0000-001F,U+007F-009F)
To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
- Returns:
- The name of the state machine.
A name must not contain:
-
white space
-
brackets
< > { } [ ] -
wildcard characters
? * -
special characters
" # % \ ^ | ~ ` $ & , ; : / -
control characters (
U+0000-001F,U+007F-009F)
To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
-
-
-
definition
public final String definition()
The Amazon States Language definition of the state machine. See Amazon States Language.
- Returns:
- The Amazon States Language definition of the state machine. See Amazon States Language.
-
roleArn
public final String roleArn()
The Amazon Resource Name (ARN) of the IAM role to use for this state machine.
- Returns:
- The Amazon Resource Name (ARN) of the IAM role to use for this state machine.
-
type
public final StateMachineType type()
Determines whether a Standard or Express state machine is created. The default is
STANDARD. You cannot update thetypeof a state machine once it has been created.If the service returns an enum value that is not available in the current SDK version,
typewill returnStateMachineType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromtypeAsString().- Returns:
- Determines whether a Standard or Express state machine is created. The default is
STANDARD. You cannot update thetypeof a state machine once it has been created. - See Also:
StateMachineType
-
typeAsString
public final String typeAsString()
Determines whether a Standard or Express state machine is created. The default is
STANDARD. You cannot update thetypeof a state machine once it has been created.If the service returns an enum value that is not available in the current SDK version,
typewill returnStateMachineType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromtypeAsString().- Returns:
- Determines whether a Standard or Express state machine is created. The default is
STANDARD. You cannot update thetypeof a state machine once it has been created. - See Also:
StateMachineType
-
loggingConfiguration
public final LoggingConfiguration loggingConfiguration()
Defines what execution history events are logged and where they are logged.
By default, the
levelis set toOFF. For more information see Log Levels in the Step Functions User Guide.- Returns:
- Defines what execution history events are logged and where they are logged.
By default, the
levelis set toOFF. For more information see Log Levels in the Step Functions User Guide.
-
hasTags
public final boolean hasTags()
For responses, this returns true if the service returned a value for the Tags property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
tags
public final List<Tag> tags()
Tags to be added when creating a state machine.
An array of key-value pairs. For more information, see Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide, and Controlling Access Using IAM Tags.
Tags may only contain Unicode letters, digits, white space, or these symbols:
_ . : / = + - @.Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasTags()method.- Returns:
- Tags to be added when creating a state machine.
An array of key-value pairs. For more information, see Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide, and Controlling Access Using IAM Tags.
Tags may only contain Unicode letters, digits, white space, or these symbols:
_ . : / = + - @.
-
tracingConfiguration
public final TracingConfiguration tracingConfiguration()
Selects whether X-Ray tracing is enabled.
- Returns:
- Selects whether X-Ray tracing is enabled.
-
publish
public final Boolean publish()
Set to
trueto publish the first version of the state machine during creation. The default isfalse.- Returns:
- Set to
trueto publish the first version of the state machine during creation. The default isfalse.
-
versionDescription
public final String versionDescription()
Sets description about the state machine version. You can only set the description if the
publishparameter is set totrue. Otherwise, if you setversionDescription, butpublishtofalse, this API action throwsValidationException.- Returns:
- Sets description about the state machine version. You can only set the description if the
publishparameter is set totrue. Otherwise, if you setversionDescription, butpublishtofalse, this API action throwsValidationException.
-
toBuilder
public CreateStateMachineRequest.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<CreateStateMachineRequest.Builder,CreateStateMachineRequest>- Specified by:
toBuilderin classSfnRequest
-
builder
public static CreateStateMachineRequest.Builder builder()
-
serializableBuilderClass
public static Class<? extends CreateStateMachineRequest.Builder> serializableBuilderClass()
-
hashCode
public final int hashCode()
- Overrides:
hashCodein classAwsRequest
-
equals
public final boolean equals(Object obj)
- Overrides:
equalsin classAwsRequest
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
getValueForField
public final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
- Overrides:
getValueForFieldin classSdkRequest
-
-