qldbstub

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 CancelJournalKinesisStreamFuture

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

func (*CancelJournalKinesisStreamFuture) Get

type Client

type Client interface {
	CancelJournalKinesisStream(ctx workflow.Context, input *qldb.CancelJournalKinesisStreamInput) (*qldb.CancelJournalKinesisStreamOutput, error)
	CancelJournalKinesisStreamAsync(ctx workflow.Context, input *qldb.CancelJournalKinesisStreamInput) *CancelJournalKinesisStreamFuture

	CreateLedger(ctx workflow.Context, input *qldb.CreateLedgerInput) (*qldb.CreateLedgerOutput, error)
	CreateLedgerAsync(ctx workflow.Context, input *qldb.CreateLedgerInput) *CreateLedgerFuture

	DeleteLedger(ctx workflow.Context, input *qldb.DeleteLedgerInput) (*qldb.DeleteLedgerOutput, error)
	DeleteLedgerAsync(ctx workflow.Context, input *qldb.DeleteLedgerInput) *DeleteLedgerFuture

	DescribeJournalKinesisStream(ctx workflow.Context, input *qldb.DescribeJournalKinesisStreamInput) (*qldb.DescribeJournalKinesisStreamOutput, error)
	DescribeJournalKinesisStreamAsync(ctx workflow.Context, input *qldb.DescribeJournalKinesisStreamInput) *DescribeJournalKinesisStreamFuture

	DescribeJournalS3Export(ctx workflow.Context, input *qldb.DescribeJournalS3ExportInput) (*qldb.DescribeJournalS3ExportOutput, error)
	DescribeJournalS3ExportAsync(ctx workflow.Context, input *qldb.DescribeJournalS3ExportInput) *DescribeJournalS3ExportFuture

	DescribeLedger(ctx workflow.Context, input *qldb.DescribeLedgerInput) (*qldb.DescribeLedgerOutput, error)
	DescribeLedgerAsync(ctx workflow.Context, input *qldb.DescribeLedgerInput) *DescribeLedgerFuture

	ExportJournalToS3(ctx workflow.Context, input *qldb.ExportJournalToS3Input) (*qldb.ExportJournalToS3Output, error)
	ExportJournalToS3Async(ctx workflow.Context, input *qldb.ExportJournalToS3Input) *ExportJournalToS3Future

	GetBlock(ctx workflow.Context, input *qldb.GetBlockInput) (*qldb.GetBlockOutput, error)
	GetBlockAsync(ctx workflow.Context, input *qldb.GetBlockInput) *GetBlockFuture

	GetDigest(ctx workflow.Context, input *qldb.GetDigestInput) (*qldb.GetDigestOutput, error)
	GetDigestAsync(ctx workflow.Context, input *qldb.GetDigestInput) *GetDigestFuture

	GetRevision(ctx workflow.Context, input *qldb.GetRevisionInput) (*qldb.GetRevisionOutput, error)
	GetRevisionAsync(ctx workflow.Context, input *qldb.GetRevisionInput) *GetRevisionFuture

	ListJournalKinesisStreamsForLedger(ctx workflow.Context, input *qldb.ListJournalKinesisStreamsForLedgerInput) (*qldb.ListJournalKinesisStreamsForLedgerOutput, error)
	ListJournalKinesisStreamsForLedgerAsync(ctx workflow.Context, input *qldb.ListJournalKinesisStreamsForLedgerInput) *ListJournalKinesisStreamsForLedgerFuture

	ListJournalS3Exports(ctx workflow.Context, input *qldb.ListJournalS3ExportsInput) (*qldb.ListJournalS3ExportsOutput, error)
	ListJournalS3ExportsAsync(ctx workflow.Context, input *qldb.ListJournalS3ExportsInput) *ListJournalS3ExportsFuture

	ListJournalS3ExportsForLedger(ctx workflow.Context, input *qldb.ListJournalS3ExportsForLedgerInput) (*qldb.ListJournalS3ExportsForLedgerOutput, error)
	ListJournalS3ExportsForLedgerAsync(ctx workflow.Context, input *qldb.ListJournalS3ExportsForLedgerInput) *ListJournalS3ExportsForLedgerFuture

	ListLedgers(ctx workflow.Context, input *qldb.ListLedgersInput) (*qldb.ListLedgersOutput, error)
	ListLedgersAsync(ctx workflow.Context, input *qldb.ListLedgersInput) *ListLedgersFuture

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

	StreamJournalToKinesis(ctx workflow.Context, input *qldb.StreamJournalToKinesisInput) (*qldb.StreamJournalToKinesisOutput, error)
	StreamJournalToKinesisAsync(ctx workflow.Context, input *qldb.StreamJournalToKinesisInput) *StreamJournalToKinesisFuture

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

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

	UpdateLedger(ctx workflow.Context, input *qldb.UpdateLedgerInput) (*qldb.UpdateLedgerOutput, error)
	UpdateLedgerAsync(ctx workflow.Context, input *qldb.UpdateLedgerInput) *UpdateLedgerFuture
}

func NewClient

func NewClient() Client

type CreateLedgerFuture

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

func (*CreateLedgerFuture) Get

type DeleteLedgerFuture

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

func (*DeleteLedgerFuture) Get

type DescribeJournalKinesisStreamFuture

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

func (*DescribeJournalKinesisStreamFuture) Get

type DescribeJournalS3ExportFuture

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

func (*DescribeJournalS3ExportFuture) Get

type DescribeLedgerFuture

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

func (*DescribeLedgerFuture) Get

type ExportJournalToS3Future

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

func (*ExportJournalToS3Future) Get

type GetBlockFuture

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

func (*GetBlockFuture) Get

type GetDigestFuture

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

func (*GetDigestFuture) Get

type GetRevisionFuture

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

func (*GetRevisionFuture) Get

type ListJournalKinesisStreamsForLedgerFuture

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

func (*ListJournalKinesisStreamsForLedgerFuture) Get

type ListJournalS3ExportsForLedgerFuture

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

func (*ListJournalS3ExportsForLedgerFuture) Get

type ListJournalS3ExportsFuture

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

func (*ListJournalS3ExportsFuture) Get

type ListLedgersFuture

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

func (*ListLedgersFuture) Get

type ListTagsForResourceFuture

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

func (*ListTagsForResourceFuture) Get

type StreamJournalToKinesisFuture

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

func (*StreamJournalToKinesisFuture) 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 UpdateLedgerFuture

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

func (*UpdateLedgerFuture) Get

Jump to

Keyboard shortcuts

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