sfnstub

package
v0.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 31, 2022 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client interface {
	CreateActivity(ctx workflow.Context, input *sfn.CreateActivityInput) (*sfn.CreateActivityOutput, error)
	CreateActivityAsync(ctx workflow.Context, input *sfn.CreateActivityInput) *CreateActivityFuture

	CreateStateMachine(ctx workflow.Context, input *sfn.CreateStateMachineInput) (*sfn.CreateStateMachineOutput, error)
	CreateStateMachineAsync(ctx workflow.Context, input *sfn.CreateStateMachineInput) *CreateStateMachineFuture

	DeleteActivity(ctx workflow.Context, input *sfn.DeleteActivityInput) (*sfn.DeleteActivityOutput, error)
	DeleteActivityAsync(ctx workflow.Context, input *sfn.DeleteActivityInput) *DeleteActivityFuture

	DeleteStateMachine(ctx workflow.Context, input *sfn.DeleteStateMachineInput) (*sfn.DeleteStateMachineOutput, error)
	DeleteStateMachineAsync(ctx workflow.Context, input *sfn.DeleteStateMachineInput) *DeleteStateMachineFuture

	DescribeActivity(ctx workflow.Context, input *sfn.DescribeActivityInput) (*sfn.DescribeActivityOutput, error)
	DescribeActivityAsync(ctx workflow.Context, input *sfn.DescribeActivityInput) *DescribeActivityFuture

	DescribeExecution(ctx workflow.Context, input *sfn.DescribeExecutionInput) (*sfn.DescribeExecutionOutput, error)
	DescribeExecutionAsync(ctx workflow.Context, input *sfn.DescribeExecutionInput) *DescribeExecutionFuture

	DescribeStateMachine(ctx workflow.Context, input *sfn.DescribeStateMachineInput) (*sfn.DescribeStateMachineOutput, error)
	DescribeStateMachineAsync(ctx workflow.Context, input *sfn.DescribeStateMachineInput) *DescribeStateMachineFuture

	DescribeStateMachineForExecution(ctx workflow.Context, input *sfn.DescribeStateMachineForExecutionInput) (*sfn.DescribeStateMachineForExecutionOutput, error)
	DescribeStateMachineForExecutionAsync(ctx workflow.Context, input *sfn.DescribeStateMachineForExecutionInput) *DescribeStateMachineForExecutionFuture

	GetActivityTask(ctx workflow.Context, input *sfn.GetActivityTaskInput) (*sfn.GetActivityTaskOutput, error)
	GetActivityTaskAsync(ctx workflow.Context, input *sfn.GetActivityTaskInput) *GetActivityTaskFuture

	GetExecutionHistory(ctx workflow.Context, input *sfn.GetExecutionHistoryInput) (*sfn.GetExecutionHistoryOutput, error)
	GetExecutionHistoryAsync(ctx workflow.Context, input *sfn.GetExecutionHistoryInput) *GetExecutionHistoryFuture

	ListActivities(ctx workflow.Context, input *sfn.ListActivitiesInput) (*sfn.ListActivitiesOutput, error)
	ListActivitiesAsync(ctx workflow.Context, input *sfn.ListActivitiesInput) *ListActivitiesFuture

	ListExecutions(ctx workflow.Context, input *sfn.ListExecutionsInput) (*sfn.ListExecutionsOutput, error)
	ListExecutionsAsync(ctx workflow.Context, input *sfn.ListExecutionsInput) *ListExecutionsFuture

	ListStateMachines(ctx workflow.Context, input *sfn.ListStateMachinesInput) (*sfn.ListStateMachinesOutput, error)
	ListStateMachinesAsync(ctx workflow.Context, input *sfn.ListStateMachinesInput) *ListStateMachinesFuture

	ListTagsForResource(ctx workflow.Context, input *sfn.ListTagsForResourceInput) (*sfn.ListTagsForResourceOutput, error)
	ListTagsForResourceAsync(ctx workflow.Context, input *sfn.ListTagsForResourceInput) *ListTagsForResourceFuture

	SendTaskFailure(ctx workflow.Context, input *sfn.SendTaskFailureInput) (*sfn.SendTaskFailureOutput, error)
	SendTaskFailureAsync(ctx workflow.Context, input *sfn.SendTaskFailureInput) *SendTaskFailureFuture

	SendTaskHeartbeat(ctx workflow.Context, input *sfn.SendTaskHeartbeatInput) (*sfn.SendTaskHeartbeatOutput, error)
	SendTaskHeartbeatAsync(ctx workflow.Context, input *sfn.SendTaskHeartbeatInput) *SendTaskHeartbeatFuture

	SendTaskSuccess(ctx workflow.Context, input *sfn.SendTaskSuccessInput) (*sfn.SendTaskSuccessOutput, error)
	SendTaskSuccessAsync(ctx workflow.Context, input *sfn.SendTaskSuccessInput) *SendTaskSuccessFuture

	StartExecution(ctx workflow.Context, input *sfn.StartExecutionInput) (*sfn.StartExecutionOutput, error)
	StartExecutionAsync(ctx workflow.Context, input *sfn.StartExecutionInput) *StartExecutionFuture

	StartSyncExecution(ctx workflow.Context, input *sfn.StartSyncExecutionInput) (*sfn.StartSyncExecutionOutput, error)
	StartSyncExecutionAsync(ctx workflow.Context, input *sfn.StartSyncExecutionInput) *StartSyncExecutionFuture

	StopExecution(ctx workflow.Context, input *sfn.StopExecutionInput) (*sfn.StopExecutionOutput, error)
	StopExecutionAsync(ctx workflow.Context, input *sfn.StopExecutionInput) *StopExecutionFuture

	TagResource(ctx workflow.Context, input *sfn.TagResourceInput) (*sfn.TagResourceOutput, error)
	TagResourceAsync(ctx workflow.Context, input *sfn.TagResourceInput) *TagResourceFuture

	UntagResource(ctx workflow.Context, input *sfn.UntagResourceInput) (*sfn.UntagResourceOutput, error)
	UntagResourceAsync(ctx workflow.Context, input *sfn.UntagResourceInput) *UntagResourceFuture

	UpdateStateMachine(ctx workflow.Context, input *sfn.UpdateStateMachineInput) (*sfn.UpdateStateMachineOutput, error)
	UpdateStateMachineAsync(ctx workflow.Context, input *sfn.UpdateStateMachineInput) *UpdateStateMachineFuture
}

func NewClient

func NewClient() Client

type CreateActivityFuture

type CreateActivityFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateActivityFuture) Get

type CreateStateMachineFuture

type CreateStateMachineFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateStateMachineFuture) Get

type DeleteActivityFuture

type DeleteActivityFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteActivityFuture) Get

type DeleteStateMachineFuture

type DeleteStateMachineFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteStateMachineFuture) Get

type DescribeActivityFuture

type DescribeActivityFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DescribeActivityFuture) Get

type DescribeExecutionFuture

type DescribeExecutionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DescribeExecutionFuture) Get

type DescribeStateMachineForExecutionFuture

type DescribeStateMachineForExecutionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DescribeStateMachineForExecutionFuture) Get

type DescribeStateMachineFuture

type DescribeStateMachineFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DescribeStateMachineFuture) Get

type GetActivityTaskFuture

type GetActivityTaskFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetActivityTaskFuture) Get

type GetExecutionHistoryFuture

type GetExecutionHistoryFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetExecutionHistoryFuture) Get

type ListActivitiesFuture

type ListActivitiesFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListActivitiesFuture) Get

type ListExecutionsFuture

type ListExecutionsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListExecutionsFuture) Get

type ListStateMachinesFuture

type ListStateMachinesFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListStateMachinesFuture) Get

type ListTagsForResourceFuture

type ListTagsForResourceFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListTagsForResourceFuture) Get

type SendTaskFailureFuture

type SendTaskFailureFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*SendTaskFailureFuture) Get

type SendTaskHeartbeatFuture

type SendTaskHeartbeatFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*SendTaskHeartbeatFuture) Get

type SendTaskSuccessFuture

type SendTaskSuccessFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*SendTaskSuccessFuture) Get

type StartExecutionFuture

type StartExecutionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StartExecutionFuture) Get

type StartSyncExecutionFuture

type StartSyncExecutionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StartSyncExecutionFuture) Get

type StopExecutionFuture

type StopExecutionFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*StopExecutionFuture) Get

type TagResourceFuture

type TagResourceFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*TagResourceFuture) Get

type UntagResourceFuture

type UntagResourceFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UntagResourceFuture) Get

type UpdateStateMachineFuture

type UpdateStateMachineFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateStateMachineFuture) Get

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL