File: types.go

package info (click to toggle)
golang-github-aws-aws-sdk-go-v2 1.24.1-2~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 554,032 kB
  • sloc: java: 15,941; makefile: 419; sh: 175
file content (172 lines) | stat: -rw-r--r-- 3,807 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

import (
	smithydocument "github.com/aws/smithy-go/document"
	"time"
)

// The data associated with a deployment.
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 (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

	noSmithyDocumentSerde
}

// A summary of the deployment data.
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

	noSmithyDocumentSerde
}

// A summary of the deployment event data.
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

	noSmithyDocumentSerde
}

// 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 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

	noSmithyDocumentSerde
}

// Describes a workload.
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

	noSmithyDocumentSerde
}

// Describes workload data.
type WorkloadDataSummary struct {

	// The display name of the workload data.
	DisplayName *string

	// The name of the workload.
	WorkloadName *string

	noSmithyDocumentSerde
}

// Describes a workload deployment pattern.
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

	noSmithyDocumentSerde
}

type noSmithyDocumentSerde = smithydocument.NoSerde