Documentation ¶
Index ¶
- type DeploymentData
- type DeploymentDataSummary
- type DeploymentEventDataSummary
- type DeploymentFilter
- type DeploymentFilterKey
- type DeploymentStatus
- type EventStatus
- type InternalServerException
- type ResourceLimitException
- type ResourceNotFoundException
- type ValidationException
- type WorkloadData
- type WorkloadDataSummary
- type WorkloadDeploymentPatternDataSummary
- type WorkloadDeploymentPatternStatus
- type WorkloadStatus
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DeploymentData ¶
type DeploymentData struct { // The time the deployment was created. CreatedAt *time.Time // The time the deployment was deleted. DeletedAt *time.Time // The ID of the deployment. Id *string // The name of the deployment. Name *string // The pattern name of the deployment. PatternName *string // The resource group of the deployment. ResourceGroup *string // The specifications of the deployment. For more information on specifications // for each deployment, see [Workload specifications]. // // [Workload specifications]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications.html Specifications map[string]string // The status of the deployment. Status DeploymentStatus // The name of the workload. WorkloadName *string // contains filtered or unexported fields }
The data associated with a deployment.
type DeploymentDataSummary ¶
type DeploymentDataSummary struct { // The time the deployment was created. CreatedAt *time.Time // The ID of the deployment. Id *string // The name of the deployment Name *string // The name of the workload deployment pattern. PatternName *string // The status of the deployment. Status DeploymentStatus // The name of the workload. WorkloadName *string // contains filtered or unexported fields }
A summary of the deployment data.
type DeploymentEventDataSummary ¶
type DeploymentEventDataSummary struct { // The description of the deployment event. Description *string // The name of the deployment event. Name *string // The status of the deployment event. Status EventStatus // The reason of the deployment event status. StatusReason *string // The timestamp of the deployment event. Timestamp *time.Time // contains filtered or unexported fields }
A summary of the deployment event data.
type DeploymentFilter ¶
type DeploymentFilter struct { // The name of the filter. Filter names are case-sensitive. Name DeploymentFilterKey // The filter values. Filter values are case-sensitive. If you specify multiple // values for a filter, the values are joined with an OR , and the request returns // all results that match any of the specified values. Values []string // contains filtered or unexported fields }
A filter name and value pair that is used to return more specific results from a describe operation. Filters can be used to match a set of resources by specific criteria.
type DeploymentFilterKey ¶
type DeploymentFilterKey string
const ( DeploymentFilterKeyWorkloadName DeploymentFilterKey = "WORKLOAD_NAME" DeploymentFilterKeyDeploymentStatus DeploymentFilterKey = "DEPLOYMENT_STATUS" )
Enum values for DeploymentFilterKey
func (DeploymentFilterKey) Values ¶
func (DeploymentFilterKey) Values() []DeploymentFilterKey
Values returns all known values for DeploymentFilterKey. Note that this can be expanded in the future, and so it is only as up to date as the client.
The ordering of this slice is not guaranteed to be stable across updates.
type DeploymentStatus ¶
type DeploymentStatus string
const ( DeploymentStatusCompleted DeploymentStatus = "COMPLETED" DeploymentStatusCreating DeploymentStatus = "CREATING" DeploymentStatusDeleteInProgress DeploymentStatus = "DELETE_IN_PROGRESS" DeploymentStatusDeleteInitiating DeploymentStatus = "DELETE_INITIATING" DeploymentStatusDeleteFailed DeploymentStatus = "DELETE_FAILED" DeploymentStatusDeleted DeploymentStatus = "DELETED" DeploymentStatusFailed DeploymentStatus = "FAILED" DeploymentStatusInProgress DeploymentStatus = "IN_PROGRESS" DeploymentStatusValidating DeploymentStatus = "VALIDATING" )
Enum values for DeploymentStatus
func (DeploymentStatus) Values ¶
func (DeploymentStatus) Values() []DeploymentStatus
Values returns all known values for DeploymentStatus. Note that this can be expanded in the future, and so it is only as up to date as the client.
The ordering of this slice is not guaranteed to be stable across updates.
type EventStatus ¶
type EventStatus string
const ( EventStatusCanceled EventStatus = "CANCELED" EventStatusCanceling EventStatus = "CANCELING" EventStatusCompleted EventStatus = "COMPLETED" EventStatusCreated EventStatus = "CREATED" EventStatusFailed EventStatus = "FAILED" EventStatusInProgress EventStatus = "IN_PROGRESS" EventStatusPending EventStatus = "PENDING" EventStatusTimedOut EventStatus = "TIMED_OUT" )
Enum values for EventStatus
func (EventStatus) Values ¶
func (EventStatus) Values() []EventStatus
Values returns all known values for EventStatus. Note that this can be expanded in the future, and so it is only as up to date as the client.
The ordering of this slice is not guaranteed to be stable across updates.
type InternalServerException ¶
type InternalServerException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
An internal error has occurred. Retry your request, but if the problem persists, contact us with details by posting a question on re:Post.
func (*InternalServerException) Error ¶
func (e *InternalServerException) Error() string
func (*InternalServerException) ErrorCode ¶
func (e *InternalServerException) ErrorCode() string
func (*InternalServerException) ErrorFault ¶
func (e *InternalServerException) ErrorFault() smithy.ErrorFault
func (*InternalServerException) ErrorMessage ¶
func (e *InternalServerException) ErrorMessage() string
type ResourceLimitException ¶
type ResourceLimitException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
You have exceeded an Launch Wizard resource limit. For example, you might have too many deployments in progress.
func (*ResourceLimitException) Error ¶
func (e *ResourceLimitException) Error() string
func (*ResourceLimitException) ErrorCode ¶
func (e *ResourceLimitException) ErrorCode() string
func (*ResourceLimitException) ErrorFault ¶
func (e *ResourceLimitException) ErrorFault() smithy.ErrorFault
func (*ResourceLimitException) ErrorMessage ¶
func (e *ResourceLimitException) ErrorMessage() string
type ResourceNotFoundException ¶
type ResourceNotFoundException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The specified workload or deployment resource can't be found.
func (*ResourceNotFoundException) Error ¶
func (e *ResourceNotFoundException) Error() string
func (*ResourceNotFoundException) ErrorCode ¶
func (e *ResourceNotFoundException) ErrorCode() string
func (*ResourceNotFoundException) ErrorFault ¶
func (e *ResourceNotFoundException) ErrorFault() smithy.ErrorFault
func (*ResourceNotFoundException) ErrorMessage ¶
func (e *ResourceNotFoundException) ErrorMessage() string
type ValidationException ¶
type ValidationException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The input fails to satisfy the constraints specified by an Amazon Web Services service.
func (*ValidationException) Error ¶
func (e *ValidationException) Error() string
func (*ValidationException) ErrorCode ¶
func (e *ValidationException) ErrorCode() string
func (*ValidationException) ErrorFault ¶
func (e *ValidationException) ErrorFault() smithy.ErrorFault
func (*ValidationException) ErrorMessage ¶
func (e *ValidationException) ErrorMessage() string
type WorkloadData ¶
type WorkloadData struct { // The description of a workload. Description *string // The display name of a workload. DisplayName *string // The URL of a workload document. DocumentationUrl *string // The URL of a workload icon. IconUrl *string // The status of a workload. Status WorkloadStatus // The message about a workload's status. StatusMessage *string // The name of the workload. WorkloadName *string // contains filtered or unexported fields }
Describes a workload.
type WorkloadDataSummary ¶
type WorkloadDataSummary struct { // The display name of the workload data. DisplayName *string // The name of the workload. WorkloadName *string // contains filtered or unexported fields }
Describes workload data.
type WorkloadDeploymentPatternDataSummary ¶
type WorkloadDeploymentPatternDataSummary struct { // The name of a workload deployment pattern. DeploymentPatternName *string // The description of a workload deployment pattern. Description *string // The display name of a workload deployment pattern. DisplayName *string // The status of a workload deployment pattern. Status WorkloadDeploymentPatternStatus // A message about a workload deployment pattern's status. StatusMessage *string // The name of the workload. WorkloadName *string // The name of the workload deployment pattern version. WorkloadVersionName *string // contains filtered or unexported fields }
Describes a workload deployment pattern.
type WorkloadDeploymentPatternStatus ¶
type WorkloadDeploymentPatternStatus string
const ( WorkloadDeploymentPatternStatusActive WorkloadDeploymentPatternStatus = "ACTIVE" WorkloadDeploymentPatternStatusInactive WorkloadDeploymentPatternStatus = "INACTIVE" WorkloadDeploymentPatternStatusDisabled WorkloadDeploymentPatternStatus = "DISABLED" WorkloadDeploymentPatternStatusDeleted WorkloadDeploymentPatternStatus = "DELETED" )
Enum values for WorkloadDeploymentPatternStatus
func (WorkloadDeploymentPatternStatus) Values ¶
func (WorkloadDeploymentPatternStatus) Values() []WorkloadDeploymentPatternStatus
Values returns all known values for WorkloadDeploymentPatternStatus. Note that this can be expanded in the future, and so it is only as up to date as the client.
The ordering of this slice is not guaranteed to be stable across updates.
type WorkloadStatus ¶
type WorkloadStatus string
const ( WorkloadStatusActive WorkloadStatus = "ACTIVE" WorkloadStatusInactive WorkloadStatus = "INACTIVE" WorkloadStatusDisabled WorkloadStatus = "DISABLED" WorkloadStatusDeleted WorkloadStatus = "DELETED" )
Enum values for WorkloadStatus
func (WorkloadStatus) Values ¶
func (WorkloadStatus) Values() []WorkloadStatus
Values returns all known values for WorkloadStatus. Note that this can be expanded in the future, and so it is only as up to date as the client.
The ordering of this slice is not guaranteed to be stable across updates.