// Code generated by smithy-go-codegen DO NOT EDIT. package types type EntityStatusCode string // Enum values for EntityStatusCode const ( EntityStatusCodeImpaired EntityStatusCode = "IMPAIRED" EntityStatusCodeUnimpaired EntityStatusCode = "UNIMPAIRED" EntityStatusCodeUnknown EntityStatusCode = "UNKNOWN" ) // Values returns all known values for EntityStatusCode. 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 (EntityStatusCode) Values() []EntityStatusCode { return []EntityStatusCode{ "IMPAIRED", "UNIMPAIRED", "UNKNOWN", } } type EventAggregateField string // Enum values for EventAggregateField const ( EventAggregateFieldEventTypeCategory EventAggregateField = "eventTypeCategory" ) // Values returns all known values for EventAggregateField. 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 (EventAggregateField) Values() []EventAggregateField { return []EventAggregateField{ "eventTypeCategory", } } type EventScopeCode string // Enum values for EventScopeCode const ( EventScopeCodePublic EventScopeCode = "PUBLIC" EventScopeCodeAccountSpecific EventScopeCode = "ACCOUNT_SPECIFIC" EventScopeCodeNone EventScopeCode = "NONE" ) // Values returns all known values for EventScopeCode. 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 (EventScopeCode) Values() []EventScopeCode { return []EventScopeCode{ "PUBLIC", "ACCOUNT_SPECIFIC", "NONE", } } type EventStatusCode string // Enum values for EventStatusCode const ( EventStatusCodeOpen EventStatusCode = "open" EventStatusCodeClosed EventStatusCode = "closed" EventStatusCodeUpcoming EventStatusCode = "upcoming" ) // Values returns all known values for EventStatusCode. 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 (EventStatusCode) Values() []EventStatusCode { return []EventStatusCode{ "open", "closed", "upcoming", } } type EventTypeCategory string // Enum values for EventTypeCategory const ( EventTypeCategoryIssue EventTypeCategory = "issue" EventTypeCategoryAccountNotification EventTypeCategory = "accountNotification" EventTypeCategoryScheduledChange EventTypeCategory = "scheduledChange" EventTypeCategoryInvestigation EventTypeCategory = "investigation" ) // Values returns all known values for EventTypeCategory. 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 (EventTypeCategory) Values() []EventTypeCategory { return []EventTypeCategory{ "issue", "accountNotification", "scheduledChange", "investigation", } }