Module: Aws::ApplicationSignals::Types

Defined in:
lib/aws-sdk-applicationsignals/types.rb

Defined Under Namespace

Classes: AccessDeniedException, AttributeFilter, AuditFinding, AuditTarget, AuditTargetEntity, AuditorResult, BatchGetServiceLevelObjectiveBudgetReportInput, BatchGetServiceLevelObjectiveBudgetReportOutput, BatchUpdateExclusionWindowsError, BatchUpdateExclusionWindowsInput, BatchUpdateExclusionWindowsOutput, BurnRateConfiguration, CalendarInterval, CanaryEntity, ChangeEvent, ConflictException, CreateServiceLevelObjectiveInput, CreateServiceLevelObjectiveOutput, DeleteGroupingConfigurationOutput, DeleteServiceLevelObjectiveInput, DeleteServiceLevelObjectiveOutput, DependencyConfig, DependencyGraph, Dimension, Edge, ExclusionWindow, GetServiceInput, GetServiceLevelObjectiveInput, GetServiceLevelObjectiveOutput, GetServiceOutput, Goal, GroupingAttributeDefinition, GroupingConfiguration, Interval, ListAuditFindingsInput, ListAuditFindingsOutput, ListEntityEventsInput, ListEntityEventsOutput, ListGroupingAttributeDefinitionsInput, ListGroupingAttributeDefinitionsOutput, ListServiceDependenciesInput, ListServiceDependenciesOutput, ListServiceDependentsInput, ListServiceDependentsOutput, ListServiceLevelObjectiveExclusionWindowsInput, ListServiceLevelObjectiveExclusionWindowsOutput, ListServiceLevelObjectivesInput, ListServiceLevelObjectivesOutput, ListServiceOperationsInput, ListServiceOperationsOutput, ListServiceStatesInput, ListServiceStatesOutput, ListServicesInput, ListServicesOutput, ListTagsForResourceRequest, ListTagsForResourceResponse, Metric, MetricDataQuery, MetricGraph, MetricReference, MetricStat, MonitoredRequestCountMetricDataQueries, Node, PutGroupingConfigurationInput, PutGroupingConfigurationOutput, RecurrenceRule, RequestBasedServiceLevelIndicator, RequestBasedServiceLevelIndicatorConfig, RequestBasedServiceLevelIndicatorMetric, RequestBasedServiceLevelIndicatorMetricConfig, ResourceNotFoundException, RollingInterval, Service, ServiceDependency, ServiceDependent, ServiceEntity, ServiceGroup, ServiceLevelIndicator, ServiceLevelIndicatorConfig, ServiceLevelIndicatorMetric, ServiceLevelIndicatorMetricConfig, ServiceLevelObjective, ServiceLevelObjectiveBudgetReport, ServiceLevelObjectiveBudgetReportError, ServiceLevelObjectiveEntity, ServiceLevelObjectiveSummary, ServiceOperation, ServiceOperationEntity, ServiceQuotaExceededException, ServiceState, ServiceSummary, StartDiscoveryInput, StartDiscoveryOutput, Tag, TagResourceRequest, TagResourceResponse, ThrottlingException, UntagResourceRequest, UntagResourceResponse, UpdateServiceLevelObjectiveInput, UpdateServiceLevelObjectiveOutput, ValidationException, Window

Instance Attribute Summary collapse

Instance Attribute Details

#bad_count_metricArray<Types::MetricDataQuery>

If you want to count “bad requests” to determine the percentage of successful requests for this request-based SLO, specify the metric to use as “bad requests” in this structure.

Returns:



2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
# File 'lib/aws-sdk-applicationsignals/types.rb', line 2276

class MonitoredRequestCountMetricDataQueries < Struct.new(
  :good_count_metric,
  :bad_count_metric,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class GoodCountMetric < MonitoredRequestCountMetricDataQueries; end
  class BadCountMetric < MonitoredRequestCountMetricDataQueries; end
  class Unknown < MonitoredRequestCountMetricDataQueries; end
end

#calendar_intervalTypes::CalendarInterval

If the interval is a calendar interval, this structure contains the interval specifications.



995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
# File 'lib/aws-sdk-applicationsignals/types.rb', line 995

class Interval < Struct.new(
  :rolling_interval,
  :calendar_interval,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class RollingInterval < Interval; end
  class CalendarInterval < Interval; end
  class Unknown < Interval; end
end

#canaryTypes::CanaryEntity

Canary entity information when the audit target is a CloudWatch Synthetics canary.

Returns:



148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/aws-sdk-applicationsignals/types.rb', line 148

class AuditTargetEntity < Struct.new(
  :service,
  :slo,
  :service_operation,
  :canary,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Service < AuditTargetEntity; end
  class Slo < AuditTargetEntity; end
  class ServiceOperation < AuditTargetEntity; end
  class Canary < AuditTargetEntity; end
  class Unknown < AuditTargetEntity; end
end

#good_count_metricArray<Types::MetricDataQuery>

If you want to count “good requests” to determine the percentage of successful requests for this request-based SLO, specify the metric to use as “good requests” in this structure.

Returns:



2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
# File 'lib/aws-sdk-applicationsignals/types.rb', line 2276

class MonitoredRequestCountMetricDataQueries < Struct.new(
  :good_count_metric,
  :bad_count_metric,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class GoodCountMetric < MonitoredRequestCountMetricDataQueries; end
  class BadCountMetric < MonitoredRequestCountMetricDataQueries; end
  class Unknown < MonitoredRequestCountMetricDataQueries; end
end

#rolling_intervalTypes::RollingInterval

If the interval is a rolling interval, this structure contains the interval specifications.



995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
# File 'lib/aws-sdk-applicationsignals/types.rb', line 995

class Interval < Struct.new(
  :rolling_interval,
  :calendar_interval,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class RollingInterval < Interval; end
  class CalendarInterval < Interval; end
  class Unknown < Interval; end
end

#serviceTypes::ServiceEntity

Service entity information when the audit target is a service.



148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/aws-sdk-applicationsignals/types.rb', line 148

class AuditTargetEntity < Struct.new(
  :service,
  :slo,
  :service_operation,
  :canary,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Service < AuditTargetEntity; end
  class Slo < AuditTargetEntity; end
  class ServiceOperation < AuditTargetEntity; end
  class Canary < AuditTargetEntity; end
  class Unknown < AuditTargetEntity; end
end

#service_operationTypes::ServiceOperationEntity

Service operation entity information when the audit target is a specific service operation.



148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/aws-sdk-applicationsignals/types.rb', line 148

class AuditTargetEntity < Struct.new(
  :service,
  :slo,
  :service_operation,
  :canary,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Service < AuditTargetEntity; end
  class Slo < AuditTargetEntity; end
  class ServiceOperation < AuditTargetEntity; end
  class Canary < AuditTargetEntity; end
  class Unknown < AuditTargetEntity; end
end

#sloTypes::ServiceLevelObjectiveEntity

SLO entity information when the audit target is a service level objective.



148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/aws-sdk-applicationsignals/types.rb', line 148

class AuditTargetEntity < Struct.new(
  :service,
  :slo,
  :service_operation,
  :canary,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Service < AuditTargetEntity; end
  class Slo < AuditTargetEntity; end
  class ServiceOperation < AuditTargetEntity; end
  class Canary < AuditTargetEntity; end
  class Unknown < AuditTargetEntity; end
end