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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type GroupConfigurationStatus string
// Enum values for GroupConfigurationStatus
const (
GroupConfigurationStatusUpdating GroupConfigurationStatus = "UPDATING"
GroupConfigurationStatusUpdateComplete GroupConfigurationStatus = "UPDATE_COMPLETE"
GroupConfigurationStatusUpdateFailed GroupConfigurationStatus = "UPDATE_FAILED"
)
// Values returns all known values for GroupConfigurationStatus. 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 (GroupConfigurationStatus) Values() []GroupConfigurationStatus {
return []GroupConfigurationStatus{
"UPDATING",
"UPDATE_COMPLETE",
"UPDATE_FAILED",
}
}
type GroupFilterName string
// Enum values for GroupFilterName
const (
GroupFilterNameResourceType GroupFilterName = "resource-type"
GroupFilterNameConfigurationType GroupFilterName = "configuration-type"
)
// Values returns all known values for GroupFilterName. 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 (GroupFilterName) Values() []GroupFilterName {
return []GroupFilterName{
"resource-type",
"configuration-type",
}
}
type GroupLifecycleEventsDesiredStatus string
// Enum values for GroupLifecycleEventsDesiredStatus
const (
GroupLifecycleEventsDesiredStatusActive GroupLifecycleEventsDesiredStatus = "ACTIVE"
GroupLifecycleEventsDesiredStatusInactive GroupLifecycleEventsDesiredStatus = "INACTIVE"
)
// Values returns all known values for GroupLifecycleEventsDesiredStatus. 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 (GroupLifecycleEventsDesiredStatus) Values() []GroupLifecycleEventsDesiredStatus {
return []GroupLifecycleEventsDesiredStatus{
"ACTIVE",
"INACTIVE",
}
}
type GroupLifecycleEventsStatus string
// Enum values for GroupLifecycleEventsStatus
const (
GroupLifecycleEventsStatusActive GroupLifecycleEventsStatus = "ACTIVE"
GroupLifecycleEventsStatusInactive GroupLifecycleEventsStatus = "INACTIVE"
GroupLifecycleEventsStatusInProgress GroupLifecycleEventsStatus = "IN_PROGRESS"
GroupLifecycleEventsStatusError GroupLifecycleEventsStatus = "ERROR"
)
// Values returns all known values for GroupLifecycleEventsStatus. 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 (GroupLifecycleEventsStatus) Values() []GroupLifecycleEventsStatus {
return []GroupLifecycleEventsStatus{
"ACTIVE",
"INACTIVE",
"IN_PROGRESS",
"ERROR",
}
}
type QueryErrorCode string
// Enum values for QueryErrorCode
const (
QueryErrorCodeCloudformationStackInactive QueryErrorCode = "CLOUDFORMATION_STACK_INACTIVE"
QueryErrorCodeCloudformationStackNotExisting QueryErrorCode = "CLOUDFORMATION_STACK_NOT_EXISTING"
QueryErrorCodeCloudformationStackUnassumableRole QueryErrorCode = "CLOUDFORMATION_STACK_UNASSUMABLE_ROLE"
)
// Values returns all known values for QueryErrorCode. 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 (QueryErrorCode) Values() []QueryErrorCode {
return []QueryErrorCode{
"CLOUDFORMATION_STACK_INACTIVE",
"CLOUDFORMATION_STACK_NOT_EXISTING",
"CLOUDFORMATION_STACK_UNASSUMABLE_ROLE",
}
}
type QueryType string
// Enum values for QueryType
const (
QueryTypeTagFilters10 QueryType = "TAG_FILTERS_1_0"
QueryTypeCloudformationStack10 QueryType = "CLOUDFORMATION_STACK_1_0"
)
// Values returns all known values for QueryType. 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 (QueryType) Values() []QueryType {
return []QueryType{
"TAG_FILTERS_1_0",
"CLOUDFORMATION_STACK_1_0",
}
}
type ResourceFilterName string
// Enum values for ResourceFilterName
const (
ResourceFilterNameResourceType ResourceFilterName = "resource-type"
)
// Values returns all known values for ResourceFilterName. 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 (ResourceFilterName) Values() []ResourceFilterName {
return []ResourceFilterName{
"resource-type",
}
}
type ResourceStatusValue string
// Enum values for ResourceStatusValue
const (
ResourceStatusValuePending ResourceStatusValue = "PENDING"
)
// Values returns all known values for ResourceStatusValue. 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 (ResourceStatusValue) Values() []ResourceStatusValue {
return []ResourceStatusValue{
"PENDING",
}
}
|