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 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type CloudComponentState string
// Enum values for CloudComponentState
const (
CloudComponentStateRequested CloudComponentState = "REQUESTED"
CloudComponentStateInitiated CloudComponentState = "INITIATED"
CloudComponentStateDeployable CloudComponentState = "DEPLOYABLE"
CloudComponentStateFailed CloudComponentState = "FAILED"
CloudComponentStateDeprecated CloudComponentState = "DEPRECATED"
)
// Values returns all known values for CloudComponentState. 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.
func (CloudComponentState) Values() []CloudComponentState {
return []CloudComponentState{
"REQUESTED",
"INITIATED",
"DEPLOYABLE",
"FAILED",
"DEPRECATED",
}
}
type ComponentDependencyType string
// Enum values for ComponentDependencyType
const (
ComponentDependencyTypeHard ComponentDependencyType = "HARD"
ComponentDependencyTypeSoft ComponentDependencyType = "SOFT"
)
// Values returns all known values for ComponentDependencyType. 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.
func (ComponentDependencyType) Values() []ComponentDependencyType {
return []ComponentDependencyType{
"HARD",
"SOFT",
}
}
type ComponentVisibilityScope string
// Enum values for ComponentVisibilityScope
const (
ComponentVisibilityScopePrivate ComponentVisibilityScope = "PRIVATE"
ComponentVisibilityScopePublic ComponentVisibilityScope = "PUBLIC"
)
// Values returns all known values for ComponentVisibilityScope. 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.
func (ComponentVisibilityScope) Values() []ComponentVisibilityScope {
return []ComponentVisibilityScope{
"PRIVATE",
"PUBLIC",
}
}
type CoreDeviceStatus string
// Enum values for CoreDeviceStatus
const (
CoreDeviceStatusHealthy CoreDeviceStatus = "HEALTHY"
CoreDeviceStatusUnhealthy CoreDeviceStatus = "UNHEALTHY"
)
// Values returns all known values for CoreDeviceStatus. 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.
func (CoreDeviceStatus) Values() []CoreDeviceStatus {
return []CoreDeviceStatus{
"HEALTHY",
"UNHEALTHY",
}
}
type DeploymentComponentUpdatePolicyAction string
// Enum values for DeploymentComponentUpdatePolicyAction
const (
DeploymentComponentUpdatePolicyActionNotifyComponents DeploymentComponentUpdatePolicyAction = "NOTIFY_COMPONENTS"
DeploymentComponentUpdatePolicyActionSkipNotifyComponents DeploymentComponentUpdatePolicyAction = "SKIP_NOTIFY_COMPONENTS"
)
// Values returns all known values for DeploymentComponentUpdatePolicyAction. 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.
func (DeploymentComponentUpdatePolicyAction) Values() []DeploymentComponentUpdatePolicyAction {
return []DeploymentComponentUpdatePolicyAction{
"NOTIFY_COMPONENTS",
"SKIP_NOTIFY_COMPONENTS",
}
}
type DeploymentFailureHandlingPolicy string
// Enum values for DeploymentFailureHandlingPolicy
const (
DeploymentFailureHandlingPolicyRollback DeploymentFailureHandlingPolicy = "ROLLBACK"
DeploymentFailureHandlingPolicyDoNothing DeploymentFailureHandlingPolicy = "DO_NOTHING"
)
// Values returns all known values for DeploymentFailureHandlingPolicy. 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.
func (DeploymentFailureHandlingPolicy) Values() []DeploymentFailureHandlingPolicy {
return []DeploymentFailureHandlingPolicy{
"ROLLBACK",
"DO_NOTHING",
}
}
type DeploymentHistoryFilter string
// Enum values for DeploymentHistoryFilter
const (
DeploymentHistoryFilterAll DeploymentHistoryFilter = "ALL"
DeploymentHistoryFilterLatestOnly DeploymentHistoryFilter = "LATEST_ONLY"
)
// Values returns all known values for DeploymentHistoryFilter. 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.
func (DeploymentHistoryFilter) Values() []DeploymentHistoryFilter {
return []DeploymentHistoryFilter{
"ALL",
"LATEST_ONLY",
}
}
type DeploymentStatus string
// Enum values for DeploymentStatus
const (
DeploymentStatusActive DeploymentStatus = "ACTIVE"
DeploymentStatusCompleted DeploymentStatus = "COMPLETED"
DeploymentStatusCanceled DeploymentStatus = "CANCELED"
DeploymentStatusFailed DeploymentStatus = "FAILED"
DeploymentStatusInactive DeploymentStatus = "INACTIVE"
)
// 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.
func (DeploymentStatus) Values() []DeploymentStatus {
return []DeploymentStatus{
"ACTIVE",
"COMPLETED",
"CANCELED",
"FAILED",
"INACTIVE",
}
}
type EffectiveDeploymentExecutionStatus string
// Enum values for EffectiveDeploymentExecutionStatus
const (
EffectiveDeploymentExecutionStatusInProgress EffectiveDeploymentExecutionStatus = "IN_PROGRESS"
EffectiveDeploymentExecutionStatusQueued EffectiveDeploymentExecutionStatus = "QUEUED"
EffectiveDeploymentExecutionStatusFailed EffectiveDeploymentExecutionStatus = "FAILED"
EffectiveDeploymentExecutionStatusCompleted EffectiveDeploymentExecutionStatus = "COMPLETED"
EffectiveDeploymentExecutionStatusTimedOut EffectiveDeploymentExecutionStatus = "TIMED_OUT"
EffectiveDeploymentExecutionStatusCanceled EffectiveDeploymentExecutionStatus = "CANCELED"
EffectiveDeploymentExecutionStatusRejected EffectiveDeploymentExecutionStatus = "REJECTED"
)
// Values returns all known values for EffectiveDeploymentExecutionStatus. 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.
func (EffectiveDeploymentExecutionStatus) Values() []EffectiveDeploymentExecutionStatus {
return []EffectiveDeploymentExecutionStatus{
"IN_PROGRESS",
"QUEUED",
"FAILED",
"COMPLETED",
"TIMED_OUT",
"CANCELED",
"REJECTED",
}
}
type InstalledComponentLifecycleState string
// Enum values for InstalledComponentLifecycleState
const (
InstalledComponentLifecycleStateNew InstalledComponentLifecycleState = "NEW"
InstalledComponentLifecycleStateInstalled InstalledComponentLifecycleState = "INSTALLED"
InstalledComponentLifecycleStateStarting InstalledComponentLifecycleState = "STARTING"
InstalledComponentLifecycleStateRunning InstalledComponentLifecycleState = "RUNNING"
InstalledComponentLifecycleStateStopping InstalledComponentLifecycleState = "STOPPING"
InstalledComponentLifecycleStateErrored InstalledComponentLifecycleState = "ERRORED"
InstalledComponentLifecycleStateBroken InstalledComponentLifecycleState = "BROKEN"
InstalledComponentLifecycleStateFinished InstalledComponentLifecycleState = "FINISHED"
)
// Values returns all known values for InstalledComponentLifecycleState. 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.
func (InstalledComponentLifecycleState) Values() []InstalledComponentLifecycleState {
return []InstalledComponentLifecycleState{
"NEW",
"INSTALLED",
"STARTING",
"RUNNING",
"STOPPING",
"ERRORED",
"BROKEN",
"FINISHED",
}
}
type InstalledComponentTopologyFilter string
// Enum values for InstalledComponentTopologyFilter
const (
InstalledComponentTopologyFilterAll InstalledComponentTopologyFilter = "ALL"
InstalledComponentTopologyFilterRoot InstalledComponentTopologyFilter = "ROOT"
)
// Values returns all known values for InstalledComponentTopologyFilter. 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.
func (InstalledComponentTopologyFilter) Values() []InstalledComponentTopologyFilter {
return []InstalledComponentTopologyFilter{
"ALL",
"ROOT",
}
}
type IoTJobAbortAction string
// Enum values for IoTJobAbortAction
const (
IoTJobAbortActionCancel IoTJobAbortAction = "CANCEL"
)
// Values returns all known values for IoTJobAbortAction. 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.
func (IoTJobAbortAction) Values() []IoTJobAbortAction {
return []IoTJobAbortAction{
"CANCEL",
}
}
type IoTJobExecutionFailureType string
// Enum values for IoTJobExecutionFailureType
const (
IoTJobExecutionFailureTypeFailed IoTJobExecutionFailureType = "FAILED"
IoTJobExecutionFailureTypeRejected IoTJobExecutionFailureType = "REJECTED"
IoTJobExecutionFailureTypeTimedOut IoTJobExecutionFailureType = "TIMED_OUT"
IoTJobExecutionFailureTypeAll IoTJobExecutionFailureType = "ALL"
)
// Values returns all known values for IoTJobExecutionFailureType. 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.
func (IoTJobExecutionFailureType) Values() []IoTJobExecutionFailureType {
return []IoTJobExecutionFailureType{
"FAILED",
"REJECTED",
"TIMED_OUT",
"ALL",
}
}
type LambdaEventSourceType string
// Enum values for LambdaEventSourceType
const (
LambdaEventSourceTypePubSub LambdaEventSourceType = "PUB_SUB"
LambdaEventSourceTypeIotCore LambdaEventSourceType = "IOT_CORE"
)
// Values returns all known values for LambdaEventSourceType. 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.
func (LambdaEventSourceType) Values() []LambdaEventSourceType {
return []LambdaEventSourceType{
"PUB_SUB",
"IOT_CORE",
}
}
type LambdaFilesystemPermission string
// Enum values for LambdaFilesystemPermission
const (
LambdaFilesystemPermissionRo LambdaFilesystemPermission = "ro"
LambdaFilesystemPermissionRw LambdaFilesystemPermission = "rw"
)
// Values returns all known values for LambdaFilesystemPermission. 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.
func (LambdaFilesystemPermission) Values() []LambdaFilesystemPermission {
return []LambdaFilesystemPermission{
"ro",
"rw",
}
}
type LambdaInputPayloadEncodingType string
// Enum values for LambdaInputPayloadEncodingType
const (
LambdaInputPayloadEncodingTypeJson LambdaInputPayloadEncodingType = "json"
LambdaInputPayloadEncodingTypeBinary LambdaInputPayloadEncodingType = "binary"
)
// Values returns all known values for LambdaInputPayloadEncodingType. 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.
func (LambdaInputPayloadEncodingType) Values() []LambdaInputPayloadEncodingType {
return []LambdaInputPayloadEncodingType{
"json",
"binary",
}
}
type LambdaIsolationMode string
// Enum values for LambdaIsolationMode
const (
LambdaIsolationModeGreengrassContainer LambdaIsolationMode = "GreengrassContainer"
LambdaIsolationModeNoContainer LambdaIsolationMode = "NoContainer"
)
// Values returns all known values for LambdaIsolationMode. 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.
func (LambdaIsolationMode) Values() []LambdaIsolationMode {
return []LambdaIsolationMode{
"GreengrassContainer",
"NoContainer",
}
}
type RecipeOutputFormat string
// Enum values for RecipeOutputFormat
const (
RecipeOutputFormatJson RecipeOutputFormat = "JSON"
RecipeOutputFormatYaml RecipeOutputFormat = "YAML"
)
// Values returns all known values for RecipeOutputFormat. 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.
func (RecipeOutputFormat) Values() []RecipeOutputFormat {
return []RecipeOutputFormat{
"JSON",
"YAML",
}
}
type ValidationExceptionReason string
// Enum values for ValidationExceptionReason
const (
ValidationExceptionReasonUnknownOperation ValidationExceptionReason = "UNKNOWN_OPERATION"
ValidationExceptionReasonCannotParse ValidationExceptionReason = "CANNOT_PARSE"
ValidationExceptionReasonFieldValidationFailed ValidationExceptionReason = "FIELD_VALIDATION_FAILED"
ValidationExceptionReasonOther ValidationExceptionReason = "OTHER"
)
// Values returns all known values for ValidationExceptionReason. 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.
func (ValidationExceptionReason) Values() []ValidationExceptionReason {
return []ValidationExceptionReason{
"UNKNOWN_OPERATION",
"CANNOT_PARSE",
"FIELD_VALIDATION_FAILED",
"OTHER",
}
}
type VendorGuidance string
// Enum values for VendorGuidance
const (
VendorGuidanceActive VendorGuidance = "ACTIVE"
VendorGuidanceDiscontinued VendorGuidance = "DISCONTINUED"
VendorGuidanceDeleted VendorGuidance = "DELETED"
)
// Values returns all known values for VendorGuidance. 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.
func (VendorGuidance) Values() []VendorGuidance {
return []VendorGuidance{
"ACTIVE",
"DISCONTINUED",
"DELETED",
}
}
|