Documentation ¶
Index ¶
- type CancelDeploymentFuture
- type Client
- type CreateComponentVersionFuture
- type CreateDeploymentFuture
- type DeleteComponentFuture
- type DeleteCoreDeviceFuture
- type DescribeComponentFuture
- type GetComponentFuture
- type GetComponentVersionArtifactFuture
- type GetCoreDeviceFuture
- type GetDeploymentFuture
- type ListComponentVersionsFuture
- type ListComponentsFuture
- type ListCoreDevicesFuture
- type ListDeploymentsFuture
- type ListEffectiveDeploymentsFuture
- type ListInstalledComponentsFuture
- type ListTagsForResourceFuture
- type ResolveComponentCandidatesFuture
- type TagResourceFuture
- type UntagResourceFuture
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CancelDeploymentFuture ¶
type CancelDeploymentFuture struct { // public to support Selector.addFuture Future workflow.Future }
func (*CancelDeploymentFuture) Get ¶
func (r *CancelDeploymentFuture) Get(ctx workflow.Context) (*greengrassv2.CancelDeploymentOutput, error)
type Client ¶
type Client interface { CancelDeployment(ctx workflow.Context, input *greengrassv2.CancelDeploymentInput) (*greengrassv2.CancelDeploymentOutput, error) CancelDeploymentAsync(ctx workflow.Context, input *greengrassv2.CancelDeploymentInput) *CancelDeploymentFuture CreateComponentVersion(ctx workflow.Context, input *greengrassv2.CreateComponentVersionInput) (*greengrassv2.CreateComponentVersionOutput, error) CreateComponentVersionAsync(ctx workflow.Context, input *greengrassv2.CreateComponentVersionInput) *CreateComponentVersionFuture CreateDeployment(ctx workflow.Context, input *greengrassv2.CreateDeploymentInput) (*greengrassv2.CreateDeploymentOutput, error) CreateDeploymentAsync(ctx workflow.Context, input *greengrassv2.CreateDeploymentInput) *CreateDeploymentFuture DeleteComponent(ctx workflow.Context, input *greengrassv2.DeleteComponentInput) (*greengrassv2.DeleteComponentOutput, error) DeleteComponentAsync(ctx workflow.Context, input *greengrassv2.DeleteComponentInput) *DeleteComponentFuture DeleteCoreDevice(ctx workflow.Context, input *greengrassv2.DeleteCoreDeviceInput) (*greengrassv2.DeleteCoreDeviceOutput, error) DeleteCoreDeviceAsync(ctx workflow.Context, input *greengrassv2.DeleteCoreDeviceInput) *DeleteCoreDeviceFuture DescribeComponent(ctx workflow.Context, input *greengrassv2.DescribeComponentInput) (*greengrassv2.DescribeComponentOutput, error) DescribeComponentAsync(ctx workflow.Context, input *greengrassv2.DescribeComponentInput) *DescribeComponentFuture GetComponent(ctx workflow.Context, input *greengrassv2.GetComponentInput) (*greengrassv2.GetComponentOutput, error) GetComponentAsync(ctx workflow.Context, input *greengrassv2.GetComponentInput) *GetComponentFuture GetComponentVersionArtifact(ctx workflow.Context, input *greengrassv2.GetComponentVersionArtifactInput) (*greengrassv2.GetComponentVersionArtifactOutput, error) GetComponentVersionArtifactAsync(ctx workflow.Context, input *greengrassv2.GetComponentVersionArtifactInput) *GetComponentVersionArtifactFuture GetCoreDevice(ctx workflow.Context, input *greengrassv2.GetCoreDeviceInput) (*greengrassv2.GetCoreDeviceOutput, error) GetCoreDeviceAsync(ctx workflow.Context, input *greengrassv2.GetCoreDeviceInput) *GetCoreDeviceFuture GetDeployment(ctx workflow.Context, input *greengrassv2.GetDeploymentInput) (*greengrassv2.GetDeploymentOutput, error) GetDeploymentAsync(ctx workflow.Context, input *greengrassv2.GetDeploymentInput) *GetDeploymentFuture ListComponentVersions(ctx workflow.Context, input *greengrassv2.ListComponentVersionsInput) (*greengrassv2.ListComponentVersionsOutput, error) ListComponentVersionsAsync(ctx workflow.Context, input *greengrassv2.ListComponentVersionsInput) *ListComponentVersionsFuture ListComponents(ctx workflow.Context, input *greengrassv2.ListComponentsInput) (*greengrassv2.ListComponentsOutput, error) ListComponentsAsync(ctx workflow.Context, input *greengrassv2.ListComponentsInput) *ListComponentsFuture ListCoreDevices(ctx workflow.Context, input *greengrassv2.ListCoreDevicesInput) (*greengrassv2.ListCoreDevicesOutput, error) ListCoreDevicesAsync(ctx workflow.Context, input *greengrassv2.ListCoreDevicesInput) *ListCoreDevicesFuture ListDeployments(ctx workflow.Context, input *greengrassv2.ListDeploymentsInput) (*greengrassv2.ListDeploymentsOutput, error) ListDeploymentsAsync(ctx workflow.Context, input *greengrassv2.ListDeploymentsInput) *ListDeploymentsFuture ListEffectiveDeployments(ctx workflow.Context, input *greengrassv2.ListEffectiveDeploymentsInput) (*greengrassv2.ListEffectiveDeploymentsOutput, error) ListEffectiveDeploymentsAsync(ctx workflow.Context, input *greengrassv2.ListEffectiveDeploymentsInput) *ListEffectiveDeploymentsFuture ListInstalledComponents(ctx workflow.Context, input *greengrassv2.ListInstalledComponentsInput) (*greengrassv2.ListInstalledComponentsOutput, error) ListInstalledComponentsAsync(ctx workflow.Context, input *greengrassv2.ListInstalledComponentsInput) *ListInstalledComponentsFuture ListTagsForResource(ctx workflow.Context, input *greengrassv2.ListTagsForResourceInput) (*greengrassv2.ListTagsForResourceOutput, error) ListTagsForResourceAsync(ctx workflow.Context, input *greengrassv2.ListTagsForResourceInput) *ListTagsForResourceFuture ResolveComponentCandidates(ctx workflow.Context, input *greengrassv2.ResolveComponentCandidatesInput) (*greengrassv2.ResolveComponentCandidatesOutput, error) ResolveComponentCandidatesAsync(ctx workflow.Context, input *greengrassv2.ResolveComponentCandidatesInput) *ResolveComponentCandidatesFuture TagResource(ctx workflow.Context, input *greengrassv2.TagResourceInput) (*greengrassv2.TagResourceOutput, error) TagResourceAsync(ctx workflow.Context, input *greengrassv2.TagResourceInput) *TagResourceFuture UntagResource(ctx workflow.Context, input *greengrassv2.UntagResourceInput) (*greengrassv2.UntagResourceOutput, error) UntagResourceAsync(ctx workflow.Context, input *greengrassv2.UntagResourceInput) *UntagResourceFuture }
type CreateComponentVersionFuture ¶
type CreateComponentVersionFuture struct { // public to support Selector.addFuture Future workflow.Future }
func (*CreateComponentVersionFuture) Get ¶
func (r *CreateComponentVersionFuture) Get(ctx workflow.Context) (*greengrassv2.CreateComponentVersionOutput, error)
type CreateDeploymentFuture ¶
type CreateDeploymentFuture struct { // public to support Selector.addFuture Future workflow.Future }
func (*CreateDeploymentFuture) Get ¶
func (r *CreateDeploymentFuture) Get(ctx workflow.Context) (*greengrassv2.CreateDeploymentOutput, error)
type DeleteComponentFuture ¶
type DeleteComponentFuture struct { // public to support Selector.addFuture Future workflow.Future }
func (*DeleteComponentFuture) Get ¶
func (r *DeleteComponentFuture) Get(ctx workflow.Context) (*greengrassv2.DeleteComponentOutput, error)
type DeleteCoreDeviceFuture ¶
type DeleteCoreDeviceFuture struct { // public to support Selector.addFuture Future workflow.Future }
func (*DeleteCoreDeviceFuture) Get ¶
func (r *DeleteCoreDeviceFuture) Get(ctx workflow.Context) (*greengrassv2.DeleteCoreDeviceOutput, error)
type DescribeComponentFuture ¶
type DescribeComponentFuture struct { // public to support Selector.addFuture Future workflow.Future }
func (*DescribeComponentFuture) Get ¶
func (r *DescribeComponentFuture) Get(ctx workflow.Context) (*greengrassv2.DescribeComponentOutput, error)
type GetComponentFuture ¶
func (*GetComponentFuture) Get ¶
func (r *GetComponentFuture) Get(ctx workflow.Context) (*greengrassv2.GetComponentOutput, error)
type GetComponentVersionArtifactFuture ¶
type GetComponentVersionArtifactFuture struct { // public to support Selector.addFuture Future workflow.Future }
func (*GetComponentVersionArtifactFuture) Get ¶
func (r *GetComponentVersionArtifactFuture) Get(ctx workflow.Context) (*greengrassv2.GetComponentVersionArtifactOutput, error)
type GetCoreDeviceFuture ¶
func (*GetCoreDeviceFuture) Get ¶
func (r *GetCoreDeviceFuture) Get(ctx workflow.Context) (*greengrassv2.GetCoreDeviceOutput, error)
type GetDeploymentFuture ¶
func (*GetDeploymentFuture) Get ¶
func (r *GetDeploymentFuture) Get(ctx workflow.Context) (*greengrassv2.GetDeploymentOutput, error)
type ListComponentVersionsFuture ¶
type ListComponentVersionsFuture struct { // public to support Selector.addFuture Future workflow.Future }
func (*ListComponentVersionsFuture) Get ¶
func (r *ListComponentVersionsFuture) Get(ctx workflow.Context) (*greengrassv2.ListComponentVersionsOutput, error)
type ListComponentsFuture ¶
func (*ListComponentsFuture) Get ¶
func (r *ListComponentsFuture) Get(ctx workflow.Context) (*greengrassv2.ListComponentsOutput, error)
type ListCoreDevicesFuture ¶
type ListCoreDevicesFuture struct { // public to support Selector.addFuture Future workflow.Future }
func (*ListCoreDevicesFuture) Get ¶
func (r *ListCoreDevicesFuture) Get(ctx workflow.Context) (*greengrassv2.ListCoreDevicesOutput, error)
type ListDeploymentsFuture ¶
type ListDeploymentsFuture struct { // public to support Selector.addFuture Future workflow.Future }
func (*ListDeploymentsFuture) Get ¶
func (r *ListDeploymentsFuture) Get(ctx workflow.Context) (*greengrassv2.ListDeploymentsOutput, error)
type ListEffectiveDeploymentsFuture ¶
type ListEffectiveDeploymentsFuture struct { // public to support Selector.addFuture Future workflow.Future }
func (*ListEffectiveDeploymentsFuture) Get ¶
func (r *ListEffectiveDeploymentsFuture) Get(ctx workflow.Context) (*greengrassv2.ListEffectiveDeploymentsOutput, error)
type ListInstalledComponentsFuture ¶
type ListInstalledComponentsFuture struct { // public to support Selector.addFuture Future workflow.Future }
func (*ListInstalledComponentsFuture) Get ¶
func (r *ListInstalledComponentsFuture) Get(ctx workflow.Context) (*greengrassv2.ListInstalledComponentsOutput, error)
type ListTagsForResourceFuture ¶
type ListTagsForResourceFuture struct { // public to support Selector.addFuture Future workflow.Future }
func (*ListTagsForResourceFuture) Get ¶
func (r *ListTagsForResourceFuture) Get(ctx workflow.Context) (*greengrassv2.ListTagsForResourceOutput, error)
type ResolveComponentCandidatesFuture ¶
type ResolveComponentCandidatesFuture struct { // public to support Selector.addFuture Future workflow.Future }
func (*ResolveComponentCandidatesFuture) Get ¶
func (r *ResolveComponentCandidatesFuture) Get(ctx workflow.Context) (*greengrassv2.ResolveComponentCandidatesOutput, error)
type TagResourceFuture ¶
func (*TagResourceFuture) Get ¶
func (r *TagResourceFuture) Get(ctx workflow.Context) (*greengrassv2.TagResourceOutput, error)
type UntagResourceFuture ¶
func (*UntagResourceFuture) Get ¶
func (r *UntagResourceFuture) Get(ctx workflow.Context) (*greengrassv2.UntagResourceOutput, error)
Click to show internal directories.
Click to hide internal directories.