// Code generated by smithy-go-codegen DO NOT EDIT. package types type CustomEventsStatus string // Enum values for CustomEventsStatus const ( CustomEventsStatusEnabled CustomEventsStatus = "ENABLED" CustomEventsStatusDisabled CustomEventsStatus = "DISABLED" ) // Values returns all known values for CustomEventsStatus. 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 (CustomEventsStatus) Values() []CustomEventsStatus { return []CustomEventsStatus{ "ENABLED", "DISABLED", } } type MetricDestination string // Enum values for MetricDestination const ( MetricDestinationCloudWatch MetricDestination = "CloudWatch" MetricDestinationEvidently MetricDestination = "Evidently" ) // Values returns all known values for MetricDestination. 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 (MetricDestination) Values() []MetricDestination { return []MetricDestination{ "CloudWatch", "Evidently", } } type StateEnum string // Enum values for StateEnum const ( StateEnumCreated StateEnum = "CREATED" StateEnumDeleting StateEnum = "DELETING" StateEnumActive StateEnum = "ACTIVE" ) // Values returns all known values for StateEnum. 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 (StateEnum) Values() []StateEnum { return []StateEnum{ "CREATED", "DELETING", "ACTIVE", } } type Telemetry string // Enum values for Telemetry const ( // Includes JS error event plugin TelemetryErrors Telemetry = "errors" // Includes navigation, paint, resource and web vital event plugins TelemetryPerformance Telemetry = "performance" // Includes X-Ray Xhr and X-Ray Fetch plugin TelemetryHttp Telemetry = "http" ) // Values returns all known values for Telemetry. 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 (Telemetry) Values() []Telemetry { return []Telemetry{ "errors", "performance", "http", } }