Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.cloudwatch package.
Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.cloudwatch package.
(alarm-action-config-builder id config)
Creates a AlarmActionConfig$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `AlarmActionConfig$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(alarm-builder scope id config)
Creates a Alarm$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `Alarm$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(alarm-props-builder id config)
Creates a AlarmProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `AlarmProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(alarm-state config id item-key)
The alarm-state
function data interprets values in the provided config data into a
AlarmState
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
AlarmState
- the value is returned.:ok
- AlarmState/OK
is returned:insufficient-data
- AlarmState/INSUFFICIENT_DATA
is returned:alarm
- AlarmState/ALARM
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `alarm-state` function data interprets values in the provided config data into a `AlarmState` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `AlarmState` - the value is returned. * is `:ok` - `AlarmState/OK` is returned * is `:insufficient-data` - `AlarmState/INSUFFICIENT_DATA` is returned * is `:alarm` - `AlarmState/ALARM` is returned If a value is not found or matches the above criteria, nil is returned.
(alarm-status-widget-builder id config)
Creates a AlarmStatusWidget$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `AlarmStatusWidget$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(alarm-status-widget-props-builder id config)
Creates a AlarmStatusWidgetProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `AlarmStatusWidgetProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(alarm-status-widget-sort-by config id item-key)
The alarm-status-widget-sort-by
function data interprets values in the provided config data into a
AlarmStatusWidgetSortBy
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
AlarmStatusWidgetSortBy
- the value is returned.:default
- AlarmStatusWidgetSortBy/DEFAULT
is returned:state-updated-timestamp
- AlarmStatusWidgetSortBy/STATE_UPDATED_TIMESTAMP
is returned:timestamp
- AlarmStatusWidgetSortBy/TIMESTAMP
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `alarm-status-widget-sort-by` function data interprets values in the provided config data into a `AlarmStatusWidgetSortBy` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `AlarmStatusWidgetSortBy` - the value is returned. * is `:default` - `AlarmStatusWidgetSortBy/DEFAULT` is returned * is `:state-updated-timestamp` - `AlarmStatusWidgetSortBy/STATE_UPDATED_TIMESTAMP` is returned * is `:timestamp` - `AlarmStatusWidgetSortBy/TIMESTAMP` is returned If a value is not found or matches the above criteria, nil is returned.
(alarm-widget-builder id config)
Creates a AlarmWidget$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `AlarmWidget$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(alarm-widget-props-builder id config)
Creates a AlarmWidgetProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `AlarmWidgetProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(build-alarm-action-config-builder builder id config)
The build-alarm-action-config-builder function updates a AlarmActionConfig$Builder instance using the provided configuration. The function takes the AlarmActionConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
alarmActionArn | java.lang.String | cdk.support/lookup-entry | :alarm-action-arn |
The build-alarm-action-config-builder function updates a AlarmActionConfig$Builder instance using the provided configuration. The function takes the AlarmActionConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `alarmActionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-action-arn` |
(build-alarm-builder builder id config)
The build-alarm-builder function updates a Alarm$Builder instance using the provided configuration. The function takes the Alarm$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionsEnabled | java.lang.Boolean | cdk.support/lookup-entry | :actions-enabled |
alarmDescription | java.lang.String | cdk.support/lookup-entry | :alarm-description |
alarmName | java.lang.String | cdk.support/lookup-entry | :alarm-name |
comparisonOperator | software.amazon.awscdk.services.cloudwatch.ComparisonOperator | cdk.api.services.cloudwatch/comparison-operator | :comparison-operator |
datapointsToAlarm | java.lang.Number | cdk.support/lookup-entry | :datapoints-to-alarm |
evaluateLowSampleCountPercentile | java.lang.String | cdk.support/lookup-entry | :evaluate-low-sample-count-percentile |
evaluationPeriods | java.lang.Number | cdk.support/lookup-entry | :evaluation-periods |
metric | software.amazon.awscdk.services.cloudwatch.IMetric | cdk.support/lookup-entry | :metric |
threshold | java.lang.Number | cdk.support/lookup-entry | :threshold |
treatMissingData | software.amazon.awscdk.services.cloudwatch.TreatMissingData | cdk.api.services.cloudwatch/treat-missing-data | :treat-missing-data |
The build-alarm-builder function updates a Alarm$Builder instance using the provided configuration. The function takes the Alarm$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionsEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:actions-enabled` | | `alarmDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-description` | | `alarmName` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-name` | | `comparisonOperator` | software.amazon.awscdk.services.cloudwatch.ComparisonOperator | [[cdk.api.services.cloudwatch/comparison-operator]] | `:comparison-operator` | | `datapointsToAlarm` | java.lang.Number | [[cdk.support/lookup-entry]] | `:datapoints-to-alarm` | | `evaluateLowSampleCountPercentile` | java.lang.String | [[cdk.support/lookup-entry]] | `:evaluate-low-sample-count-percentile` | | `evaluationPeriods` | java.lang.Number | [[cdk.support/lookup-entry]] | `:evaluation-periods` | | `metric` | software.amazon.awscdk.services.cloudwatch.IMetric | [[cdk.support/lookup-entry]] | `:metric` | | `threshold` | java.lang.Number | [[cdk.support/lookup-entry]] | `:threshold` | | `treatMissingData` | software.amazon.awscdk.services.cloudwatch.TreatMissingData | [[cdk.api.services.cloudwatch/treat-missing-data]] | `:treat-missing-data` |
(build-alarm-props-builder builder id config)
The build-alarm-props-builder function updates a AlarmProps$Builder instance using the provided configuration. The function takes the AlarmProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionsEnabled | java.lang.Boolean | cdk.support/lookup-entry | :actions-enabled |
alarmDescription | java.lang.String | cdk.support/lookup-entry | :alarm-description |
alarmName | java.lang.String | cdk.support/lookup-entry | :alarm-name |
comparisonOperator | software.amazon.awscdk.services.cloudwatch.ComparisonOperator | cdk.api.services.cloudwatch/comparison-operator | :comparison-operator |
datapointsToAlarm | java.lang.Number | cdk.support/lookup-entry | :datapoints-to-alarm |
evaluateLowSampleCountPercentile | java.lang.String | cdk.support/lookup-entry | :evaluate-low-sample-count-percentile |
evaluationPeriods | java.lang.Number | cdk.support/lookup-entry | :evaluation-periods |
metric | software.amazon.awscdk.services.cloudwatch.IMetric | cdk.support/lookup-entry | :metric |
threshold | java.lang.Number | cdk.support/lookup-entry | :threshold |
treatMissingData | software.amazon.awscdk.services.cloudwatch.TreatMissingData | cdk.api.services.cloudwatch/treat-missing-data | :treat-missing-data |
The build-alarm-props-builder function updates a AlarmProps$Builder instance using the provided configuration. The function takes the AlarmProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionsEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:actions-enabled` | | `alarmDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-description` | | `alarmName` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-name` | | `comparisonOperator` | software.amazon.awscdk.services.cloudwatch.ComparisonOperator | [[cdk.api.services.cloudwatch/comparison-operator]] | `:comparison-operator` | | `datapointsToAlarm` | java.lang.Number | [[cdk.support/lookup-entry]] | `:datapoints-to-alarm` | | `evaluateLowSampleCountPercentile` | java.lang.String | [[cdk.support/lookup-entry]] | `:evaluate-low-sample-count-percentile` | | `evaluationPeriods` | java.lang.Number | [[cdk.support/lookup-entry]] | `:evaluation-periods` | | `metric` | software.amazon.awscdk.services.cloudwatch.IMetric | [[cdk.support/lookup-entry]] | `:metric` | | `threshold` | java.lang.Number | [[cdk.support/lookup-entry]] | `:threshold` | | `treatMissingData` | software.amazon.awscdk.services.cloudwatch.TreatMissingData | [[cdk.api.services.cloudwatch/treat-missing-data]] | `:treat-missing-data` |
(build-alarm-status-widget-builder builder id config)
The build-alarm-status-widget-builder function updates a AlarmStatusWidget$Builder instance using the provided configuration. The function takes the AlarmStatusWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
alarms | java.util.List | cdk.support/lookup-entry | :alarms |
height | java.lang.Number | cdk.support/lookup-entry | :height |
sortBy | software.amazon.awscdk.services.cloudwatch.AlarmStatusWidgetSortBy | cdk.api.services.cloudwatch/alarm-status-widget-sort-by | :sort-by |
states | java.util.List | cdk.support/lookup-entry | :states |
title | java.lang.String | cdk.support/lookup-entry | :title |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-alarm-status-widget-builder function updates a AlarmStatusWidget$Builder instance using the provided configuration. The function takes the AlarmStatusWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `alarms` | java.util.List | [[cdk.support/lookup-entry]] | `:alarms` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `sortBy` | software.amazon.awscdk.services.cloudwatch.AlarmStatusWidgetSortBy | [[cdk.api.services.cloudwatch/alarm-status-widget-sort-by]] | `:sort-by` | | `states` | java.util.List | [[cdk.support/lookup-entry]] | `:states` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-alarm-status-widget-props-builder builder id config)
The build-alarm-status-widget-props-builder function updates a AlarmStatusWidgetProps$Builder instance using the provided configuration. The function takes the AlarmStatusWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
alarms | java.util.List | cdk.support/lookup-entry | :alarms |
height | java.lang.Number | cdk.support/lookup-entry | :height |
sortBy | software.amazon.awscdk.services.cloudwatch.AlarmStatusWidgetSortBy | cdk.api.services.cloudwatch/alarm-status-widget-sort-by | :sort-by |
states | java.util.List | cdk.support/lookup-entry | :states |
title | java.lang.String | cdk.support/lookup-entry | :title |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-alarm-status-widget-props-builder function updates a AlarmStatusWidgetProps$Builder instance using the provided configuration. The function takes the AlarmStatusWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `alarms` | java.util.List | [[cdk.support/lookup-entry]] | `:alarms` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `sortBy` | software.amazon.awscdk.services.cloudwatch.AlarmStatusWidgetSortBy | [[cdk.api.services.cloudwatch/alarm-status-widget-sort-by]] | `:sort-by` | | `states` | java.util.List | [[cdk.support/lookup-entry]] | `:states` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-alarm-widget-builder builder id config)
The build-alarm-widget-builder function updates a AlarmWidget$Builder instance using the provided configuration. The function takes the AlarmWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
alarm | software.amazon.awscdk.services.cloudwatch.IAlarm | cdk.support/lookup-entry | :alarm |
height | java.lang.Number | cdk.support/lookup-entry | :height |
leftYAxis | software.amazon.awscdk.services.cloudwatch.YAxisProps | cdk.support/lookup-entry | :left-y-axis |
region | java.lang.String | cdk.support/lookup-entry | :region |
title | java.lang.String | cdk.support/lookup-entry | :title |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-alarm-widget-builder function updates a AlarmWidget$Builder instance using the provided configuration. The function takes the AlarmWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `alarm` | software.amazon.awscdk.services.cloudwatch.IAlarm | [[cdk.support/lookup-entry]] | `:alarm` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `leftYAxis` | software.amazon.awscdk.services.cloudwatch.YAxisProps | [[cdk.support/lookup-entry]] | `:left-y-axis` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-alarm-widget-props-builder builder id config)
The build-alarm-widget-props-builder function updates a AlarmWidgetProps$Builder instance using the provided configuration. The function takes the AlarmWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
alarm | software.amazon.awscdk.services.cloudwatch.IAlarm | cdk.support/lookup-entry | :alarm |
height | java.lang.Number | cdk.support/lookup-entry | :height |
leftYAxis | software.amazon.awscdk.services.cloudwatch.YAxisProps | cdk.support/lookup-entry | :left-y-axis |
region | java.lang.String | cdk.support/lookup-entry | :region |
title | java.lang.String | cdk.support/lookup-entry | :title |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-alarm-widget-props-builder function updates a AlarmWidgetProps$Builder instance using the provided configuration. The function takes the AlarmWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `alarm` | software.amazon.awscdk.services.cloudwatch.IAlarm | [[cdk.support/lookup-entry]] | `:alarm` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `leftYAxis` | software.amazon.awscdk.services.cloudwatch.YAxisProps | [[cdk.support/lookup-entry]] | `:left-y-axis` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-cfn-alarm-builder builder id config)
The build-cfn-alarm-builder function updates a CfnAlarm$Builder instance using the provided configuration. The function takes the CfnAlarm$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionsEnabled | java.lang.Boolean | cdk.support/lookup-entry | :actions-enabled |
alarmActions | java.util.List | cdk.support/lookup-entry | :alarm-actions |
alarmDescription | java.lang.String | cdk.support/lookup-entry | :alarm-description |
alarmName | java.lang.String | cdk.support/lookup-entry | :alarm-name |
comparisonOperator | java.lang.String | cdk.support/lookup-entry | :comparison-operator |
datapointsToAlarm | java.lang.Number | cdk.support/lookup-entry | :datapoints-to-alarm |
dimensions | java.util.List | cdk.support/lookup-entry | :dimensions |
evaluateLowSampleCountPercentile | java.lang.String | cdk.support/lookup-entry | :evaluate-low-sample-count-percentile |
evaluationPeriods | java.lang.Number | cdk.support/lookup-entry | :evaluation-periods |
extendedStatistic | java.lang.String | cdk.support/lookup-entry | :extended-statistic |
insufficientDataActions | java.util.List | cdk.support/lookup-entry | :insufficient-data-actions |
metricName | java.lang.String | cdk.support/lookup-entry | :metric-name |
metrics | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :metrics |
namespace | java.lang.String | cdk.support/lookup-entry | :namespace |
okActions | java.util.List | cdk.support/lookup-entry | :ok-actions |
period | java.lang.Number | cdk.support/lookup-entry | :period |
statistic | java.lang.String | cdk.support/lookup-entry | :statistic |
tags | java.util.List | cdk.support/lookup-entry | :tags |
threshold | java.lang.Number | cdk.support/lookup-entry | :threshold |
thresholdMetricId | java.lang.String | cdk.support/lookup-entry | :threshold-metric-id |
treatMissingData | java.lang.String | cdk.support/lookup-entry | :treat-missing-data |
unit | java.lang.String | cdk.support/lookup-entry | :unit |
The build-cfn-alarm-builder function updates a CfnAlarm$Builder instance using the provided configuration. The function takes the CfnAlarm$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionsEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:actions-enabled` | | `alarmActions` | java.util.List | [[cdk.support/lookup-entry]] | `:alarm-actions` | | `alarmDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-description` | | `alarmName` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-name` | | `comparisonOperator` | java.lang.String | [[cdk.support/lookup-entry]] | `:comparison-operator` | | `datapointsToAlarm` | java.lang.Number | [[cdk.support/lookup-entry]] | `:datapoints-to-alarm` | | `dimensions` | java.util.List | [[cdk.support/lookup-entry]] | `:dimensions` | | `evaluateLowSampleCountPercentile` | java.lang.String | [[cdk.support/lookup-entry]] | `:evaluate-low-sample-count-percentile` | | `evaluationPeriods` | java.lang.Number | [[cdk.support/lookup-entry]] | `:evaluation-periods` | | `extendedStatistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:extended-statistic` | | `insufficientDataActions` | java.util.List | [[cdk.support/lookup-entry]] | `:insufficient-data-actions` | | `metricName` | java.lang.String | [[cdk.support/lookup-entry]] | `:metric-name` | | `metrics` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:metrics` | | `namespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:namespace` | | `okActions` | java.util.List | [[cdk.support/lookup-entry]] | `:ok-actions` | | `period` | java.lang.Number | [[cdk.support/lookup-entry]] | `:period` | | `statistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:statistic` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `threshold` | java.lang.Number | [[cdk.support/lookup-entry]] | `:threshold` | | `thresholdMetricId` | java.lang.String | [[cdk.support/lookup-entry]] | `:threshold-metric-id` | | `treatMissingData` | java.lang.String | [[cdk.support/lookup-entry]] | `:treat-missing-data` | | `unit` | java.lang.String | [[cdk.support/lookup-entry]] | `:unit` |
(build-cfn-alarm-dimension-property-builder builder id config)
The build-cfn-alarm-dimension-property-builder function updates a CfnAlarm$DimensionProperty$Builder instance using the provided configuration. The function takes the CfnAlarm$DimensionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
name | java.lang.String | cdk.support/lookup-entry | :name |
value | java.lang.String | cdk.support/lookup-entry | :value |
The build-cfn-alarm-dimension-property-builder function updates a CfnAlarm$DimensionProperty$Builder instance using the provided configuration. The function takes the CfnAlarm$DimensionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `value` | java.lang.String | [[cdk.support/lookup-entry]] | `:value` |
(build-cfn-alarm-metric-data-query-property-builder builder id config)
The build-cfn-alarm-metric-data-query-property-builder function updates a CfnAlarm$MetricDataQueryProperty$Builder instance using the provided configuration. The function takes the CfnAlarm$MetricDataQueryProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
accountId | java.lang.String | cdk.support/lookup-entry | :account-id |
expression | java.lang.String | cdk.support/lookup-entry | :expression |
id | java.lang.String | cdk.support/lookup-entry | :id |
label | java.lang.String | cdk.support/lookup-entry | :label |
metricStat | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :metric-stat |
period | java.lang.Number | cdk.support/lookup-entry | :period |
returnData | java.lang.Boolean | cdk.support/lookup-entry | :return-data |
The build-cfn-alarm-metric-data-query-property-builder function updates a CfnAlarm$MetricDataQueryProperty$Builder instance using the provided configuration. The function takes the CfnAlarm$MetricDataQueryProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `accountId` | java.lang.String | [[cdk.support/lookup-entry]] | `:account-id` | | `expression` | java.lang.String | [[cdk.support/lookup-entry]] | `:expression` | | `id` | java.lang.String | [[cdk.support/lookup-entry]] | `:id` | | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `metricStat` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:metric-stat` | | `period` | java.lang.Number | [[cdk.support/lookup-entry]] | `:period` | | `returnData` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:return-data` |
(build-cfn-alarm-metric-property-builder builder id config)
The build-cfn-alarm-metric-property-builder function updates a CfnAlarm$MetricProperty$Builder instance using the provided configuration. The function takes the CfnAlarm$MetricProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
dimensions | java.util.List | cdk.support/lookup-entry | :dimensions |
metricName | java.lang.String | cdk.support/lookup-entry | :metric-name |
namespace | java.lang.String | cdk.support/lookup-entry | :namespace |
The build-cfn-alarm-metric-property-builder function updates a CfnAlarm$MetricProperty$Builder instance using the provided configuration. The function takes the CfnAlarm$MetricProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `dimensions` | java.util.List | [[cdk.support/lookup-entry]] | `:dimensions` | | `metricName` | java.lang.String | [[cdk.support/lookup-entry]] | `:metric-name` | | `namespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:namespace` |
(build-cfn-alarm-metric-stat-property-builder builder id config)
The build-cfn-alarm-metric-stat-property-builder function updates a CfnAlarm$MetricStatProperty$Builder instance using the provided configuration. The function takes the CfnAlarm$MetricStatProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
metric | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :metric |
period | java.lang.Number | cdk.support/lookup-entry | :period |
stat | java.lang.String | cdk.support/lookup-entry | :stat |
unit | java.lang.String | cdk.support/lookup-entry | :unit |
The build-cfn-alarm-metric-stat-property-builder function updates a CfnAlarm$MetricStatProperty$Builder instance using the provided configuration. The function takes the CfnAlarm$MetricStatProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `metric` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:metric` | | `period` | java.lang.Number | [[cdk.support/lookup-entry]] | `:period` | | `stat` | java.lang.String | [[cdk.support/lookup-entry]] | `:stat` | | `unit` | java.lang.String | [[cdk.support/lookup-entry]] | `:unit` |
(build-cfn-alarm-props-builder builder id config)
The build-cfn-alarm-props-builder function updates a CfnAlarmProps$Builder instance using the provided configuration. The function takes the CfnAlarmProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionsEnabled | java.lang.Boolean | cdk.support/lookup-entry | :actions-enabled |
alarmActions | java.util.List | cdk.support/lookup-entry | :alarm-actions |
alarmDescription | java.lang.String | cdk.support/lookup-entry | :alarm-description |
alarmName | java.lang.String | cdk.support/lookup-entry | :alarm-name |
comparisonOperator | java.lang.String | cdk.support/lookup-entry | :comparison-operator |
datapointsToAlarm | java.lang.Number | cdk.support/lookup-entry | :datapoints-to-alarm |
dimensions | java.util.List | cdk.support/lookup-entry | :dimensions |
evaluateLowSampleCountPercentile | java.lang.String | cdk.support/lookup-entry | :evaluate-low-sample-count-percentile |
evaluationPeriods | java.lang.Number | cdk.support/lookup-entry | :evaluation-periods |
extendedStatistic | java.lang.String | cdk.support/lookup-entry | :extended-statistic |
insufficientDataActions | java.util.List | cdk.support/lookup-entry | :insufficient-data-actions |
metricName | java.lang.String | cdk.support/lookup-entry | :metric-name |
metrics | java.util.List | cdk.support/lookup-entry | :metrics |
namespace | java.lang.String | cdk.support/lookup-entry | :namespace |
okActions | java.util.List | cdk.support/lookup-entry | :ok-actions |
period | java.lang.Number | cdk.support/lookup-entry | :period |
statistic | java.lang.String | cdk.support/lookup-entry | :statistic |
tags | java.util.List | cdk.support/lookup-entry | :tags |
threshold | java.lang.Number | cdk.support/lookup-entry | :threshold |
thresholdMetricId | java.lang.String | cdk.support/lookup-entry | :threshold-metric-id |
treatMissingData | java.lang.String | cdk.support/lookup-entry | :treat-missing-data |
unit | java.lang.String | cdk.support/lookup-entry | :unit |
The build-cfn-alarm-props-builder function updates a CfnAlarmProps$Builder instance using the provided configuration. The function takes the CfnAlarmProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionsEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:actions-enabled` | | `alarmActions` | java.util.List | [[cdk.support/lookup-entry]] | `:alarm-actions` | | `alarmDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-description` | | `alarmName` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-name` | | `comparisonOperator` | java.lang.String | [[cdk.support/lookup-entry]] | `:comparison-operator` | | `datapointsToAlarm` | java.lang.Number | [[cdk.support/lookup-entry]] | `:datapoints-to-alarm` | | `dimensions` | java.util.List | [[cdk.support/lookup-entry]] | `:dimensions` | | `evaluateLowSampleCountPercentile` | java.lang.String | [[cdk.support/lookup-entry]] | `:evaluate-low-sample-count-percentile` | | `evaluationPeriods` | java.lang.Number | [[cdk.support/lookup-entry]] | `:evaluation-periods` | | `extendedStatistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:extended-statistic` | | `insufficientDataActions` | java.util.List | [[cdk.support/lookup-entry]] | `:insufficient-data-actions` | | `metricName` | java.lang.String | [[cdk.support/lookup-entry]] | `:metric-name` | | `metrics` | java.util.List | [[cdk.support/lookup-entry]] | `:metrics` | | `namespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:namespace` | | `okActions` | java.util.List | [[cdk.support/lookup-entry]] | `:ok-actions` | | `period` | java.lang.Number | [[cdk.support/lookup-entry]] | `:period` | | `statistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:statistic` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `threshold` | java.lang.Number | [[cdk.support/lookup-entry]] | `:threshold` | | `thresholdMetricId` | java.lang.String | [[cdk.support/lookup-entry]] | `:threshold-metric-id` | | `treatMissingData` | java.lang.String | [[cdk.support/lookup-entry]] | `:treat-missing-data` | | `unit` | java.lang.String | [[cdk.support/lookup-entry]] | `:unit` |
(build-cfn-anomaly-detector-builder builder id config)
The build-cfn-anomaly-detector-builder function updates a CfnAnomalyDetector$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
configuration | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :configuration |
dimensions | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :dimensions |
metricCharacteristics | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :metric-characteristics |
metricMathAnomalyDetector | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :metric-math-anomaly-detector |
metricName | java.lang.String | cdk.support/lookup-entry | :metric-name |
namespace | java.lang.String | cdk.support/lookup-entry | :namespace |
singleMetricAnomalyDetector | software.amazon.awscdk.services.cloudwatch.CfnAnomalyDetector$SingleMetricAnomalyDetectorProperty | cdk.support/lookup-entry | :single-metric-anomaly-detector |
stat | java.lang.String | cdk.support/lookup-entry | :stat |
The build-cfn-anomaly-detector-builder function updates a CfnAnomalyDetector$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `configuration` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:configuration` | | `dimensions` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:dimensions` | | `metricCharacteristics` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:metric-characteristics` | | `metricMathAnomalyDetector` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:metric-math-anomaly-detector` | | `metricName` | java.lang.String | [[cdk.support/lookup-entry]] | `:metric-name` | | `namespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:namespace` | | `singleMetricAnomalyDetector` | software.amazon.awscdk.services.cloudwatch.CfnAnomalyDetector$SingleMetricAnomalyDetectorProperty | [[cdk.support/lookup-entry]] | `:single-metric-anomaly-detector` | | `stat` | java.lang.String | [[cdk.support/lookup-entry]] | `:stat` |
(build-cfn-anomaly-detector-configuration-property-builder builder id config)
The build-cfn-anomaly-detector-configuration-property-builder function updates a CfnAnomalyDetector$ConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$ConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
excludedTimeRanges | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :excluded-time-ranges |
metricTimeZone | java.lang.String | cdk.support/lookup-entry | :metric-time-zone |
The build-cfn-anomaly-detector-configuration-property-builder function updates a CfnAnomalyDetector$ConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$ConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `excludedTimeRanges` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:excluded-time-ranges` | | `metricTimeZone` | java.lang.String | [[cdk.support/lookup-entry]] | `:metric-time-zone` |
(build-cfn-anomaly-detector-dimension-property-builder builder id config)
The build-cfn-anomaly-detector-dimension-property-builder function updates a CfnAnomalyDetector$DimensionProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$DimensionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
name | java.lang.String | cdk.support/lookup-entry | :name |
value | java.lang.String | cdk.support/lookup-entry | :value |
The build-cfn-anomaly-detector-dimension-property-builder function updates a CfnAnomalyDetector$DimensionProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$DimensionProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `value` | java.lang.String | [[cdk.support/lookup-entry]] | `:value` |
(build-cfn-anomaly-detector-metric-characteristics-property-builder builder
id
config)
The build-cfn-anomaly-detector-metric-characteristics-property-builder function updates a CfnAnomalyDetector$MetricCharacteristicsProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$MetricCharacteristicsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
periodicSpikes | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :periodic-spikes |
The build-cfn-anomaly-detector-metric-characteristics-property-builder function updates a CfnAnomalyDetector$MetricCharacteristicsProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$MetricCharacteristicsProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `periodicSpikes` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:periodic-spikes` |
(build-cfn-anomaly-detector-metric-data-query-property-builder builder
id
config)
The build-cfn-anomaly-detector-metric-data-query-property-builder function updates a CfnAnomalyDetector$MetricDataQueryProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$MetricDataQueryProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
accountId | java.lang.String | cdk.support/lookup-entry | :account-id |
expression | java.lang.String | cdk.support/lookup-entry | :expression |
id | java.lang.String | cdk.support/lookup-entry | :id |
label | java.lang.String | cdk.support/lookup-entry | :label |
metricStat | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :metric-stat |
period | java.lang.Number | cdk.support/lookup-entry | :period |
returnData | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :return-data |
The build-cfn-anomaly-detector-metric-data-query-property-builder function updates a CfnAnomalyDetector$MetricDataQueryProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$MetricDataQueryProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `accountId` | java.lang.String | [[cdk.support/lookup-entry]] | `:account-id` | | `expression` | java.lang.String | [[cdk.support/lookup-entry]] | `:expression` | | `id` | java.lang.String | [[cdk.support/lookup-entry]] | `:id` | | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `metricStat` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:metric-stat` | | `period` | java.lang.Number | [[cdk.support/lookup-entry]] | `:period` | | `returnData` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:return-data` |
(build-cfn-anomaly-detector-metric-math-anomaly-detector-property-builder
builder
id
config)
The build-cfn-anomaly-detector-metric-math-anomaly-detector-property-builder function updates a CfnAnomalyDetector$MetricMathAnomalyDetectorProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$MetricMathAnomalyDetectorProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
metricDataQueries | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :metric-data-queries |
The build-cfn-anomaly-detector-metric-math-anomaly-detector-property-builder function updates a CfnAnomalyDetector$MetricMathAnomalyDetectorProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$MetricMathAnomalyDetectorProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `metricDataQueries` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:metric-data-queries` |
(build-cfn-anomaly-detector-metric-property-builder builder id config)
The build-cfn-anomaly-detector-metric-property-builder function updates a CfnAnomalyDetector$MetricProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$MetricProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
dimensions | java.util.List | cdk.support/lookup-entry | :dimensions |
metricName | java.lang.String | cdk.support/lookup-entry | :metric-name |
namespace | java.lang.String | cdk.support/lookup-entry | :namespace |
The build-cfn-anomaly-detector-metric-property-builder function updates a CfnAnomalyDetector$MetricProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$MetricProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `dimensions` | java.util.List | [[cdk.support/lookup-entry]] | `:dimensions` | | `metricName` | java.lang.String | [[cdk.support/lookup-entry]] | `:metric-name` | | `namespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:namespace` |
(build-cfn-anomaly-detector-metric-stat-property-builder builder id config)
The build-cfn-anomaly-detector-metric-stat-property-builder function updates a CfnAnomalyDetector$MetricStatProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$MetricStatProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
metric | software.amazon.awscdk.services.cloudwatch.CfnAnomalyDetector$MetricProperty | cdk.support/lookup-entry | :metric |
period | java.lang.Number | cdk.support/lookup-entry | :period |
stat | java.lang.String | cdk.support/lookup-entry | :stat |
unit | java.lang.String | cdk.support/lookup-entry | :unit |
The build-cfn-anomaly-detector-metric-stat-property-builder function updates a CfnAnomalyDetector$MetricStatProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$MetricStatProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `metric` | software.amazon.awscdk.services.cloudwatch.CfnAnomalyDetector$MetricProperty | [[cdk.support/lookup-entry]] | `:metric` | | `period` | java.lang.Number | [[cdk.support/lookup-entry]] | `:period` | | `stat` | java.lang.String | [[cdk.support/lookup-entry]] | `:stat` | | `unit` | java.lang.String | [[cdk.support/lookup-entry]] | `:unit` |
(build-cfn-anomaly-detector-props-builder builder id config)
The build-cfn-anomaly-detector-props-builder function updates a CfnAnomalyDetectorProps$Builder instance using the provided configuration. The function takes the CfnAnomalyDetectorProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
configuration | software.amazon.awscdk.services.cloudwatch.CfnAnomalyDetector$ConfigurationProperty | cdk.support/lookup-entry | :configuration |
dimensions | java.util.List | cdk.support/lookup-entry | :dimensions |
metricCharacteristics | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :metric-characteristics |
metricMathAnomalyDetector | software.amazon.awscdk.services.cloudwatch.CfnAnomalyDetector$MetricMathAnomalyDetectorProperty | cdk.support/lookup-entry | :metric-math-anomaly-detector |
metricName | java.lang.String | cdk.support/lookup-entry | :metric-name |
namespace | java.lang.String | cdk.support/lookup-entry | :namespace |
singleMetricAnomalyDetector | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :single-metric-anomaly-detector |
stat | java.lang.String | cdk.support/lookup-entry | :stat |
The build-cfn-anomaly-detector-props-builder function updates a CfnAnomalyDetectorProps$Builder instance using the provided configuration. The function takes the CfnAnomalyDetectorProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `configuration` | software.amazon.awscdk.services.cloudwatch.CfnAnomalyDetector$ConfigurationProperty | [[cdk.support/lookup-entry]] | `:configuration` | | `dimensions` | java.util.List | [[cdk.support/lookup-entry]] | `:dimensions` | | `metricCharacteristics` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:metric-characteristics` | | `metricMathAnomalyDetector` | software.amazon.awscdk.services.cloudwatch.CfnAnomalyDetector$MetricMathAnomalyDetectorProperty | [[cdk.support/lookup-entry]] | `:metric-math-anomaly-detector` | | `metricName` | java.lang.String | [[cdk.support/lookup-entry]] | `:metric-name` | | `namespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:namespace` | | `singleMetricAnomalyDetector` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:single-metric-anomaly-detector` | | `stat` | java.lang.String | [[cdk.support/lookup-entry]] | `:stat` |
(build-cfn-anomaly-detector-range-property-builder builder id config)
The build-cfn-anomaly-detector-range-property-builder function updates a CfnAnomalyDetector$RangeProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$RangeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
endTime | java.lang.String | cdk.support/lookup-entry | :end-time |
startTime | java.lang.String | cdk.support/lookup-entry | :start-time |
The build-cfn-anomaly-detector-range-property-builder function updates a CfnAnomalyDetector$RangeProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$RangeProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `endTime` | java.lang.String | [[cdk.support/lookup-entry]] | `:end-time` | | `startTime` | java.lang.String | [[cdk.support/lookup-entry]] | `:start-time` |
(build-cfn-anomaly-detector-single-metric-anomaly-detector-property-builder
builder
id
config)
The build-cfn-anomaly-detector-single-metric-anomaly-detector-property-builder function updates a CfnAnomalyDetector$SingleMetricAnomalyDetectorProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$SingleMetricAnomalyDetectorProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
accountId | java.lang.String | cdk.support/lookup-entry | :account-id |
dimensions | java.util.List | cdk.support/lookup-entry | :dimensions |
metricName | java.lang.String | cdk.support/lookup-entry | :metric-name |
namespace | java.lang.String | cdk.support/lookup-entry | :namespace |
stat | java.lang.String | cdk.support/lookup-entry | :stat |
The build-cfn-anomaly-detector-single-metric-anomaly-detector-property-builder function updates a CfnAnomalyDetector$SingleMetricAnomalyDetectorProperty$Builder instance using the provided configuration. The function takes the CfnAnomalyDetector$SingleMetricAnomalyDetectorProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `accountId` | java.lang.String | [[cdk.support/lookup-entry]] | `:account-id` | | `dimensions` | java.util.List | [[cdk.support/lookup-entry]] | `:dimensions` | | `metricName` | java.lang.String | [[cdk.support/lookup-entry]] | `:metric-name` | | `namespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:namespace` | | `stat` | java.lang.String | [[cdk.support/lookup-entry]] | `:stat` |
(build-cfn-composite-alarm-builder builder id config)
The build-cfn-composite-alarm-builder function updates a CfnCompositeAlarm$Builder instance using the provided configuration. The function takes the CfnCompositeAlarm$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionsEnabled | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :actions-enabled |
actionsSuppressor | java.lang.String | cdk.support/lookup-entry | :actions-suppressor |
actionsSuppressorExtensionPeriod | java.lang.Number | cdk.support/lookup-entry | :actions-suppressor-extension-period |
actionsSuppressorWaitPeriod | java.lang.Number | cdk.support/lookup-entry | :actions-suppressor-wait-period |
alarmActions | java.util.List | cdk.support/lookup-entry | :alarm-actions |
alarmDescription | java.lang.String | cdk.support/lookup-entry | :alarm-description |
alarmName | java.lang.String | cdk.support/lookup-entry | :alarm-name |
alarmRule | java.lang.String | cdk.support/lookup-entry | :alarm-rule |
insufficientDataActions | java.util.List | cdk.support/lookup-entry | :insufficient-data-actions |
okActions | java.util.List | cdk.support/lookup-entry | :ok-actions |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-composite-alarm-builder function updates a CfnCompositeAlarm$Builder instance using the provided configuration. The function takes the CfnCompositeAlarm$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionsEnabled` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:actions-enabled` | | `actionsSuppressor` | java.lang.String | [[cdk.support/lookup-entry]] | `:actions-suppressor` | | `actionsSuppressorExtensionPeriod` | java.lang.Number | [[cdk.support/lookup-entry]] | `:actions-suppressor-extension-period` | | `actionsSuppressorWaitPeriod` | java.lang.Number | [[cdk.support/lookup-entry]] | `:actions-suppressor-wait-period` | | `alarmActions` | java.util.List | [[cdk.support/lookup-entry]] | `:alarm-actions` | | `alarmDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-description` | | `alarmName` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-name` | | `alarmRule` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-rule` | | `insufficientDataActions` | java.util.List | [[cdk.support/lookup-entry]] | `:insufficient-data-actions` | | `okActions` | java.util.List | [[cdk.support/lookup-entry]] | `:ok-actions` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-composite-alarm-props-builder builder id config)
The build-cfn-composite-alarm-props-builder function updates a CfnCompositeAlarmProps$Builder instance using the provided configuration. The function takes the CfnCompositeAlarmProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionsEnabled | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :actions-enabled |
actionsSuppressor | java.lang.String | cdk.support/lookup-entry | :actions-suppressor |
actionsSuppressorExtensionPeriod | java.lang.Number | cdk.support/lookup-entry | :actions-suppressor-extension-period |
actionsSuppressorWaitPeriod | java.lang.Number | cdk.support/lookup-entry | :actions-suppressor-wait-period |
alarmActions | java.util.List | cdk.support/lookup-entry | :alarm-actions |
alarmDescription | java.lang.String | cdk.support/lookup-entry | :alarm-description |
alarmName | java.lang.String | cdk.support/lookup-entry | :alarm-name |
alarmRule | java.lang.String | cdk.support/lookup-entry | :alarm-rule |
insufficientDataActions | java.util.List | cdk.support/lookup-entry | :insufficient-data-actions |
okActions | java.util.List | cdk.support/lookup-entry | :ok-actions |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-composite-alarm-props-builder function updates a CfnCompositeAlarmProps$Builder instance using the provided configuration. The function takes the CfnCompositeAlarmProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionsEnabled` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:actions-enabled` | | `actionsSuppressor` | java.lang.String | [[cdk.support/lookup-entry]] | `:actions-suppressor` | | `actionsSuppressorExtensionPeriod` | java.lang.Number | [[cdk.support/lookup-entry]] | `:actions-suppressor-extension-period` | | `actionsSuppressorWaitPeriod` | java.lang.Number | [[cdk.support/lookup-entry]] | `:actions-suppressor-wait-period` | | `alarmActions` | java.util.List | [[cdk.support/lookup-entry]] | `:alarm-actions` | | `alarmDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-description` | | `alarmName` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-name` | | `alarmRule` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-rule` | | `insufficientDataActions` | java.util.List | [[cdk.support/lookup-entry]] | `:insufficient-data-actions` | | `okActions` | java.util.List | [[cdk.support/lookup-entry]] | `:ok-actions` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-dashboard-builder builder id config)
The build-cfn-dashboard-builder function updates a CfnDashboard$Builder instance using the provided configuration. The function takes the CfnDashboard$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
dashboardBody | java.lang.String | cdk.support/lookup-entry | :dashboard-body |
dashboardName | java.lang.String | cdk.support/lookup-entry | :dashboard-name |
The build-cfn-dashboard-builder function updates a CfnDashboard$Builder instance using the provided configuration. The function takes the CfnDashboard$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `dashboardBody` | java.lang.String | [[cdk.support/lookup-entry]] | `:dashboard-body` | | `dashboardName` | java.lang.String | [[cdk.support/lookup-entry]] | `:dashboard-name` |
(build-cfn-dashboard-props-builder builder id config)
The build-cfn-dashboard-props-builder function updates a CfnDashboardProps$Builder instance using the provided configuration. The function takes the CfnDashboardProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
dashboardBody | java.lang.String | cdk.support/lookup-entry | :dashboard-body |
dashboardName | java.lang.String | cdk.support/lookup-entry | :dashboard-name |
The build-cfn-dashboard-props-builder function updates a CfnDashboardProps$Builder instance using the provided configuration. The function takes the CfnDashboardProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `dashboardBody` | java.lang.String | [[cdk.support/lookup-entry]] | `:dashboard-body` | | `dashboardName` | java.lang.String | [[cdk.support/lookup-entry]] | `:dashboard-name` |
(build-cfn-insight-rule-builder builder id config)
The build-cfn-insight-rule-builder function updates a CfnInsightRule$Builder instance using the provided configuration. The function takes the CfnInsightRule$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
ruleBody | java.lang.String | cdk.support/lookup-entry | :rule-body |
ruleName | java.lang.String | cdk.support/lookup-entry | :rule-name |
ruleState | java.lang.String | cdk.support/lookup-entry | :rule-state |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-insight-rule-builder function updates a CfnInsightRule$Builder instance using the provided configuration. The function takes the CfnInsightRule$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `ruleBody` | java.lang.String | [[cdk.support/lookup-entry]] | `:rule-body` | | `ruleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:rule-name` | | `ruleState` | java.lang.String | [[cdk.support/lookup-entry]] | `:rule-state` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-insight-rule-props-builder builder id config)
The build-cfn-insight-rule-props-builder function updates a CfnInsightRuleProps$Builder instance using the provided configuration. The function takes the CfnInsightRuleProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
ruleBody | java.lang.String | cdk.support/lookup-entry | :rule-body |
ruleName | java.lang.String | cdk.support/lookup-entry | :rule-name |
ruleState | java.lang.String | cdk.support/lookup-entry | :rule-state |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-insight-rule-props-builder function updates a CfnInsightRuleProps$Builder instance using the provided configuration. The function takes the CfnInsightRuleProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `ruleBody` | java.lang.String | [[cdk.support/lookup-entry]] | `:rule-body` | | `ruleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:rule-name` | | `ruleState` | java.lang.String | [[cdk.support/lookup-entry]] | `:rule-state` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-metric-stream-builder builder id config)
The build-cfn-metric-stream-builder function updates a CfnMetricStream$Builder instance using the provided configuration. The function takes the CfnMetricStream$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
excludeFilters | java.util.List | cdk.support/lookup-entry | :exclude-filters |
firehoseArn | java.lang.String | cdk.support/lookup-entry | :firehose-arn |
includeFilters | java.util.List | cdk.support/lookup-entry | :include-filters |
includeLinkedAccountsMetrics | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :include-linked-accounts-metrics |
name | java.lang.String | cdk.support/lookup-entry | :name |
outputFormat | java.lang.String | cdk.support/lookup-entry | :output-format |
roleArn | java.lang.String | cdk.support/lookup-entry | :role-arn |
statisticsConfigurations | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :statistics-configurations |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-metric-stream-builder function updates a CfnMetricStream$Builder instance using the provided configuration. The function takes the CfnMetricStream$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `excludeFilters` | java.util.List | [[cdk.support/lookup-entry]] | `:exclude-filters` | | `firehoseArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:firehose-arn` | | `includeFilters` | java.util.List | [[cdk.support/lookup-entry]] | `:include-filters` | | `includeLinkedAccountsMetrics` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:include-linked-accounts-metrics` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `outputFormat` | java.lang.String | [[cdk.support/lookup-entry]] | `:output-format` | | `roleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-arn` | | `statisticsConfigurations` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:statistics-configurations` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-metric-stream-metric-stream-filter-property-builder builder
id
config)
The build-cfn-metric-stream-metric-stream-filter-property-builder function updates a CfnMetricStream$MetricStreamFilterProperty$Builder instance using the provided configuration. The function takes the CfnMetricStream$MetricStreamFilterProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
metricNames | java.util.List | cdk.support/lookup-entry | :metric-names |
namespace | java.lang.String | cdk.support/lookup-entry | :namespace |
The build-cfn-metric-stream-metric-stream-filter-property-builder function updates a CfnMetricStream$MetricStreamFilterProperty$Builder instance using the provided configuration. The function takes the CfnMetricStream$MetricStreamFilterProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `metricNames` | java.util.List | [[cdk.support/lookup-entry]] | `:metric-names` | | `namespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:namespace` |
(build-cfn-metric-stream-metric-stream-statistics-configuration-property-builder
builder
id
config)
The build-cfn-metric-stream-metric-stream-statistics-configuration-property-builder function updates a CfnMetricStream$MetricStreamStatisticsConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnMetricStream$MetricStreamStatisticsConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
additionalStatistics | java.util.List | cdk.support/lookup-entry | :additional-statistics |
includeMetrics | java.util.List | cdk.support/lookup-entry | :include-metrics |
The build-cfn-metric-stream-metric-stream-statistics-configuration-property-builder function updates a CfnMetricStream$MetricStreamStatisticsConfigurationProperty$Builder instance using the provided configuration. The function takes the CfnMetricStream$MetricStreamStatisticsConfigurationProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `additionalStatistics` | java.util.List | [[cdk.support/lookup-entry]] | `:additional-statistics` | | `includeMetrics` | java.util.List | [[cdk.support/lookup-entry]] | `:include-metrics` |
(build-cfn-metric-stream-metric-stream-statistics-metric-property-builder
builder
id
config)
The build-cfn-metric-stream-metric-stream-statistics-metric-property-builder function updates a CfnMetricStream$MetricStreamStatisticsMetricProperty$Builder instance using the provided configuration. The function takes the CfnMetricStream$MetricStreamStatisticsMetricProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
metricName | java.lang.String | cdk.support/lookup-entry | :metric-name |
namespace | java.lang.String | cdk.support/lookup-entry | :namespace |
The build-cfn-metric-stream-metric-stream-statistics-metric-property-builder function updates a CfnMetricStream$MetricStreamStatisticsMetricProperty$Builder instance using the provided configuration. The function takes the CfnMetricStream$MetricStreamStatisticsMetricProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `metricName` | java.lang.String | [[cdk.support/lookup-entry]] | `:metric-name` | | `namespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:namespace` |
(build-cfn-metric-stream-props-builder builder id config)
The build-cfn-metric-stream-props-builder function updates a CfnMetricStreamProps$Builder instance using the provided configuration. The function takes the CfnMetricStreamProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
excludeFilters | java.util.List | cdk.support/lookup-entry | :exclude-filters |
firehoseArn | java.lang.String | cdk.support/lookup-entry | :firehose-arn |
includeFilters | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :include-filters |
includeLinkedAccountsMetrics | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :include-linked-accounts-metrics |
name | java.lang.String | cdk.support/lookup-entry | :name |
outputFormat | java.lang.String | cdk.support/lookup-entry | :output-format |
roleArn | java.lang.String | cdk.support/lookup-entry | :role-arn |
statisticsConfigurations | java.util.List | cdk.support/lookup-entry | :statistics-configurations |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-metric-stream-props-builder function updates a CfnMetricStreamProps$Builder instance using the provided configuration. The function takes the CfnMetricStreamProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `excludeFilters` | java.util.List | [[cdk.support/lookup-entry]] | `:exclude-filters` | | `firehoseArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:firehose-arn` | | `includeFilters` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:include-filters` | | `includeLinkedAccountsMetrics` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:include-linked-accounts-metrics` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `outputFormat` | java.lang.String | [[cdk.support/lookup-entry]] | `:output-format` | | `roleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-arn` | | `statisticsConfigurations` | java.util.List | [[cdk.support/lookup-entry]] | `:statistics-configurations` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-common-metric-options-builder builder id config)
The build-common-metric-options-builder function updates a CommonMetricOptions$Builder instance using the provided configuration. The function takes the CommonMetricOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
account | java.lang.String | cdk.support/lookup-entry | :account |
color | java.lang.String | cdk.support/lookup-entry | :color |
dimensionsMap | java.util.Map | cdk.support/lookup-entry | :dimensions-map |
label | java.lang.String | cdk.support/lookup-entry | :label |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
region | java.lang.String | cdk.support/lookup-entry | :region |
statistic | java.lang.String | cdk.support/lookup-entry | :statistic |
unit | software.amazon.awscdk.services.cloudwatch.Unit | cdk.api.services.cloudwatch/unit | :unit |
The build-common-metric-options-builder function updates a CommonMetricOptions$Builder instance using the provided configuration. The function takes the CommonMetricOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `account` | java.lang.String | [[cdk.support/lookup-entry]] | `:account` | | `color` | java.lang.String | [[cdk.support/lookup-entry]] | `:color` | | `dimensionsMap` | java.util.Map | [[cdk.support/lookup-entry]] | `:dimensions-map` | | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `statistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:statistic` | | `unit` | software.amazon.awscdk.services.cloudwatch.Unit | [[cdk.api.services.cloudwatch/unit]] | `:unit` |
(build-composite-alarm-builder builder id config)
The build-composite-alarm-builder function updates a CompositeAlarm$Builder instance using the provided configuration. The function takes the CompositeAlarm$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionsEnabled | java.lang.Boolean | cdk.support/lookup-entry | :actions-enabled |
actionsSuppressor | software.amazon.awscdk.services.cloudwatch.IAlarm | cdk.support/lookup-entry | :actions-suppressor |
actionsSuppressorExtensionPeriod | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :actions-suppressor-extension-period |
actionsSuppressorWaitPeriod | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :actions-suppressor-wait-period |
alarmDescription | java.lang.String | cdk.support/lookup-entry | :alarm-description |
alarmRule | software.amazon.awscdk.services.cloudwatch.IAlarmRule | cdk.support/lookup-entry | :alarm-rule |
compositeAlarmName | java.lang.String | cdk.support/lookup-entry | :composite-alarm-name |
The build-composite-alarm-builder function updates a CompositeAlarm$Builder instance using the provided configuration. The function takes the CompositeAlarm$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionsEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:actions-enabled` | | `actionsSuppressor` | software.amazon.awscdk.services.cloudwatch.IAlarm | [[cdk.support/lookup-entry]] | `:actions-suppressor` | | `actionsSuppressorExtensionPeriod` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:actions-suppressor-extension-period` | | `actionsSuppressorWaitPeriod` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:actions-suppressor-wait-period` | | `alarmDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-description` | | `alarmRule` | software.amazon.awscdk.services.cloudwatch.IAlarmRule | [[cdk.support/lookup-entry]] | `:alarm-rule` | | `compositeAlarmName` | java.lang.String | [[cdk.support/lookup-entry]] | `:composite-alarm-name` |
(build-composite-alarm-props-builder builder id config)
The build-composite-alarm-props-builder function updates a CompositeAlarmProps$Builder instance using the provided configuration. The function takes the CompositeAlarmProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionsEnabled | java.lang.Boolean | cdk.support/lookup-entry | :actions-enabled |
actionsSuppressor | software.amazon.awscdk.services.cloudwatch.IAlarm | cdk.support/lookup-entry | :actions-suppressor |
actionsSuppressorExtensionPeriod | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :actions-suppressor-extension-period |
actionsSuppressorWaitPeriod | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :actions-suppressor-wait-period |
alarmDescription | java.lang.String | cdk.support/lookup-entry | :alarm-description |
alarmRule | software.amazon.awscdk.services.cloudwatch.IAlarmRule | cdk.support/lookup-entry | :alarm-rule |
compositeAlarmName | java.lang.String | cdk.support/lookup-entry | :composite-alarm-name |
The build-composite-alarm-props-builder function updates a CompositeAlarmProps$Builder instance using the provided configuration. The function takes the CompositeAlarmProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionsEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:actions-enabled` | | `actionsSuppressor` | software.amazon.awscdk.services.cloudwatch.IAlarm | [[cdk.support/lookup-entry]] | `:actions-suppressor` | | `actionsSuppressorExtensionPeriod` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:actions-suppressor-extension-period` | | `actionsSuppressorWaitPeriod` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:actions-suppressor-wait-period` | | `alarmDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-description` | | `alarmRule` | software.amazon.awscdk.services.cloudwatch.IAlarmRule | [[cdk.support/lookup-entry]] | `:alarm-rule` | | `compositeAlarmName` | java.lang.String | [[cdk.support/lookup-entry]] | `:composite-alarm-name` |
(build-create-alarm-options-builder builder id config)
The build-create-alarm-options-builder function updates a CreateAlarmOptions$Builder instance using the provided configuration. The function takes the CreateAlarmOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actionsEnabled | java.lang.Boolean | cdk.support/lookup-entry | :actions-enabled |
alarmDescription | java.lang.String | cdk.support/lookup-entry | :alarm-description |
alarmName | java.lang.String | cdk.support/lookup-entry | :alarm-name |
comparisonOperator | software.amazon.awscdk.services.cloudwatch.ComparisonOperator | cdk.api.services.cloudwatch/comparison-operator | :comparison-operator |
datapointsToAlarm | java.lang.Number | cdk.support/lookup-entry | :datapoints-to-alarm |
evaluateLowSampleCountPercentile | java.lang.String | cdk.support/lookup-entry | :evaluate-low-sample-count-percentile |
evaluationPeriods | java.lang.Number | cdk.support/lookup-entry | :evaluation-periods |
threshold | java.lang.Number | cdk.support/lookup-entry | :threshold |
treatMissingData | software.amazon.awscdk.services.cloudwatch.TreatMissingData | cdk.api.services.cloudwatch/treat-missing-data | :treat-missing-data |
The build-create-alarm-options-builder function updates a CreateAlarmOptions$Builder instance using the provided configuration. The function takes the CreateAlarmOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actionsEnabled` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:actions-enabled` | | `alarmDescription` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-description` | | `alarmName` | java.lang.String | [[cdk.support/lookup-entry]] | `:alarm-name` | | `comparisonOperator` | software.amazon.awscdk.services.cloudwatch.ComparisonOperator | [[cdk.api.services.cloudwatch/comparison-operator]] | `:comparison-operator` | | `datapointsToAlarm` | java.lang.Number | [[cdk.support/lookup-entry]] | `:datapoints-to-alarm` | | `evaluateLowSampleCountPercentile` | java.lang.String | [[cdk.support/lookup-entry]] | `:evaluate-low-sample-count-percentile` | | `evaluationPeriods` | java.lang.Number | [[cdk.support/lookup-entry]] | `:evaluation-periods` | | `threshold` | java.lang.Number | [[cdk.support/lookup-entry]] | `:threshold` | | `treatMissingData` | software.amazon.awscdk.services.cloudwatch.TreatMissingData | [[cdk.api.services.cloudwatch/treat-missing-data]] | `:treat-missing-data` |
(build-custom-widget-builder builder id config)
The build-custom-widget-builder function updates a CustomWidget$Builder instance using the provided configuration. The function takes the CustomWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
functionArn | java.lang.String | cdk.support/lookup-entry | :function-arn |
height | java.lang.Number | cdk.support/lookup-entry | :height |
params | java.lang.Object | cdk.support/lookup-entry | :params |
title | java.lang.String | cdk.support/lookup-entry | :title |
updateOnRefresh | java.lang.Boolean | cdk.support/lookup-entry | :update-on-refresh |
updateOnResize | java.lang.Boolean | cdk.support/lookup-entry | :update-on-resize |
updateOnTimeRangeChange | java.lang.Boolean | cdk.support/lookup-entry | :update-on-time-range-change |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-custom-widget-builder function updates a CustomWidget$Builder instance using the provided configuration. The function takes the CustomWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `functionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-arn` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `params` | java.lang.Object | [[cdk.support/lookup-entry]] | `:params` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `updateOnRefresh` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:update-on-refresh` | | `updateOnResize` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:update-on-resize` | | `updateOnTimeRangeChange` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:update-on-time-range-change` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-custom-widget-props-builder builder id config)
The build-custom-widget-props-builder function updates a CustomWidgetProps$Builder instance using the provided configuration. The function takes the CustomWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
functionArn | java.lang.String | cdk.support/lookup-entry | :function-arn |
height | java.lang.Number | cdk.support/lookup-entry | :height |
params | java.lang.Object | cdk.support/lookup-entry | :params |
title | java.lang.String | cdk.support/lookup-entry | :title |
updateOnRefresh | java.lang.Boolean | cdk.support/lookup-entry | :update-on-refresh |
updateOnResize | java.lang.Boolean | cdk.support/lookup-entry | :update-on-resize |
updateOnTimeRangeChange | java.lang.Boolean | cdk.support/lookup-entry | :update-on-time-range-change |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-custom-widget-props-builder function updates a CustomWidgetProps$Builder instance using the provided configuration. The function takes the CustomWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `functionArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-arn` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `params` | java.lang.Object | [[cdk.support/lookup-entry]] | `:params` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `updateOnRefresh` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:update-on-refresh` | | `updateOnResize` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:update-on-resize` | | `updateOnTimeRangeChange` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:update-on-time-range-change` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-dashboard-builder builder id config)
The build-dashboard-builder function updates a Dashboard$Builder instance using the provided configuration. The function takes the Dashboard$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
dashboardName | java.lang.String | cdk.support/lookup-entry | :dashboard-name |
defaultInterval | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :default-interval |
end | java.lang.String | cdk.support/lookup-entry | :end |
periodOverride | software.amazon.awscdk.services.cloudwatch.PeriodOverride | cdk.api.services.cloudwatch/period-override | :period-override |
start | java.lang.String | cdk.support/lookup-entry | :start |
variables | java.util.List | cdk.support/lookup-entry | :variables |
widgets | java.util.List | cdk.support/lookup-entry | :widgets |
The build-dashboard-builder function updates a Dashboard$Builder instance using the provided configuration. The function takes the Dashboard$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `dashboardName` | java.lang.String | [[cdk.support/lookup-entry]] | `:dashboard-name` | | `defaultInterval` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:default-interval` | | `end` | java.lang.String | [[cdk.support/lookup-entry]] | `:end` | | `periodOverride` | software.amazon.awscdk.services.cloudwatch.PeriodOverride | [[cdk.api.services.cloudwatch/period-override]] | `:period-override` | | `start` | java.lang.String | [[cdk.support/lookup-entry]] | `:start` | | `variables` | java.util.List | [[cdk.support/lookup-entry]] | `:variables` | | `widgets` | java.util.List | [[cdk.support/lookup-entry]] | `:widgets` |
(build-dashboard-props-builder builder id config)
The build-dashboard-props-builder function updates a DashboardProps$Builder instance using the provided configuration. The function takes the DashboardProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
dashboardName | java.lang.String | cdk.support/lookup-entry | :dashboard-name |
defaultInterval | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :default-interval |
end | java.lang.String | cdk.support/lookup-entry | :end |
periodOverride | software.amazon.awscdk.services.cloudwatch.PeriodOverride | cdk.api.services.cloudwatch/period-override | :period-override |
start | java.lang.String | cdk.support/lookup-entry | :start |
variables | java.util.List | cdk.support/lookup-entry | :variables |
widgets | java.util.List | cdk.support/lookup-entry | :widgets |
The build-dashboard-props-builder function updates a DashboardProps$Builder instance using the provided configuration. The function takes the DashboardProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `dashboardName` | java.lang.String | [[cdk.support/lookup-entry]] | `:dashboard-name` | | `defaultInterval` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:default-interval` | | `end` | java.lang.String | [[cdk.support/lookup-entry]] | `:end` | | `periodOverride` | software.amazon.awscdk.services.cloudwatch.PeriodOverride | [[cdk.api.services.cloudwatch/period-override]] | `:period-override` | | `start` | java.lang.String | [[cdk.support/lookup-entry]] | `:start` | | `variables` | java.util.List | [[cdk.support/lookup-entry]] | `:variables` | | `widgets` | java.util.List | [[cdk.support/lookup-entry]] | `:widgets` |
(build-dashboard-variable-builder builder id config)
The build-dashboard-variable-builder function updates a DashboardVariable$Builder instance using the provided configuration. The function takes the DashboardVariable$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
defaultValue | software.amazon.awscdk.services.cloudwatch.DefaultValue | cdk.support/lookup-entry | :default-value |
id | java.lang.String | cdk.support/lookup-entry | :id |
inputType | software.amazon.awscdk.services.cloudwatch.VariableInputType | cdk.api.services.cloudwatch/variable-input-type | :input-type |
label | java.lang.String | cdk.support/lookup-entry | :label |
type | software.amazon.awscdk.services.cloudwatch.VariableType | cdk.api.services.cloudwatch/variable-type | :type |
value | java.lang.String | cdk.support/lookup-entry | :value |
values | software.amazon.awscdk.services.cloudwatch.Values | cdk.support/lookup-entry | :values |
visible | java.lang.Boolean | cdk.support/lookup-entry | :visible |
The build-dashboard-variable-builder function updates a DashboardVariable$Builder instance using the provided configuration. The function takes the DashboardVariable$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `defaultValue` | software.amazon.awscdk.services.cloudwatch.DefaultValue | [[cdk.support/lookup-entry]] | `:default-value` | | `id` | java.lang.String | [[cdk.support/lookup-entry]] | `:id` | | `inputType` | software.amazon.awscdk.services.cloudwatch.VariableInputType | [[cdk.api.services.cloudwatch/variable-input-type]] | `:input-type` | | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `type` | software.amazon.awscdk.services.cloudwatch.VariableType | [[cdk.api.services.cloudwatch/variable-type]] | `:type` | | `value` | java.lang.String | [[cdk.support/lookup-entry]] | `:value` | | `values` | software.amazon.awscdk.services.cloudwatch.Values | [[cdk.support/lookup-entry]] | `:values` | | `visible` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:visible` |
(build-dashboard-variable-options-builder builder id config)
The build-dashboard-variable-options-builder function updates a DashboardVariableOptions$Builder instance using the provided configuration. The function takes the DashboardVariableOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
defaultValue | software.amazon.awscdk.services.cloudwatch.DefaultValue | cdk.support/lookup-entry | :default-value |
id | java.lang.String | cdk.support/lookup-entry | :id |
inputType | software.amazon.awscdk.services.cloudwatch.VariableInputType | cdk.api.services.cloudwatch/variable-input-type | :input-type |
label | java.lang.String | cdk.support/lookup-entry | :label |
type | software.amazon.awscdk.services.cloudwatch.VariableType | cdk.api.services.cloudwatch/variable-type | :type |
value | java.lang.String | cdk.support/lookup-entry | :value |
values | software.amazon.awscdk.services.cloudwatch.Values | cdk.support/lookup-entry | :values |
visible | java.lang.Boolean | cdk.support/lookup-entry | :visible |
The build-dashboard-variable-options-builder function updates a DashboardVariableOptions$Builder instance using the provided configuration. The function takes the DashboardVariableOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `defaultValue` | software.amazon.awscdk.services.cloudwatch.DefaultValue | [[cdk.support/lookup-entry]] | `:default-value` | | `id` | java.lang.String | [[cdk.support/lookup-entry]] | `:id` | | `inputType` | software.amazon.awscdk.services.cloudwatch.VariableInputType | [[cdk.api.services.cloudwatch/variable-input-type]] | `:input-type` | | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `type` | software.amazon.awscdk.services.cloudwatch.VariableType | [[cdk.api.services.cloudwatch/variable-type]] | `:type` | | `value` | java.lang.String | [[cdk.support/lookup-entry]] | `:value` | | `values` | software.amazon.awscdk.services.cloudwatch.Values | [[cdk.support/lookup-entry]] | `:values` | | `visible` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:visible` |
(build-dimension-builder builder id config)
The build-dimension-builder function updates a Dimension$Builder instance using the provided configuration. The function takes the Dimension$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
name | java.lang.String | cdk.support/lookup-entry | :name |
value | java.lang.Object | cdk.support/lookup-entry | :value |
The build-dimension-builder function updates a Dimension$Builder instance using the provided configuration. The function takes the Dimension$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `value` | java.lang.Object | [[cdk.support/lookup-entry]] | `:value` |
(build-gauge-widget-builder builder id config)
The build-gauge-widget-builder function updates a GaugeWidget$Builder instance using the provided configuration. The function takes the GaugeWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
annotations | java.util.List | cdk.support/lookup-entry | :annotations |
end | java.lang.String | cdk.support/lookup-entry | :end |
height | java.lang.Number | cdk.support/lookup-entry | :height |
leftYAxis | software.amazon.awscdk.services.cloudwatch.YAxisProps | cdk.support/lookup-entry | :left-y-axis |
legendPosition | software.amazon.awscdk.services.cloudwatch.LegendPosition | cdk.api.services.cloudwatch/legend-position | :legend-position |
liveData | java.lang.Boolean | cdk.support/lookup-entry | :live-data |
metrics | java.util.List | cdk.support/lookup-entry | :metrics |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
region | java.lang.String | cdk.support/lookup-entry | :region |
setPeriodToTimeRange | java.lang.Boolean | cdk.support/lookup-entry | :set-period-to-time-range |
start | java.lang.String | cdk.support/lookup-entry | :start |
statistic | java.lang.String | cdk.support/lookup-entry | :statistic |
title | java.lang.String | cdk.support/lookup-entry | :title |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-gauge-widget-builder function updates a GaugeWidget$Builder instance using the provided configuration. The function takes the GaugeWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `annotations` | java.util.List | [[cdk.support/lookup-entry]] | `:annotations` | | `end` | java.lang.String | [[cdk.support/lookup-entry]] | `:end` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `leftYAxis` | software.amazon.awscdk.services.cloudwatch.YAxisProps | [[cdk.support/lookup-entry]] | `:left-y-axis` | | `legendPosition` | software.amazon.awscdk.services.cloudwatch.LegendPosition | [[cdk.api.services.cloudwatch/legend-position]] | `:legend-position` | | `liveData` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:live-data` | | `metrics` | java.util.List | [[cdk.support/lookup-entry]] | `:metrics` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `setPeriodToTimeRange` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:set-period-to-time-range` | | `start` | java.lang.String | [[cdk.support/lookup-entry]] | `:start` | | `statistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:statistic` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-gauge-widget-props-builder builder id config)
The build-gauge-widget-props-builder function updates a GaugeWidgetProps$Builder instance using the provided configuration. The function takes the GaugeWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
annotations | java.util.List | cdk.support/lookup-entry | :annotations |
end | java.lang.String | cdk.support/lookup-entry | :end |
height | java.lang.Number | cdk.support/lookup-entry | :height |
leftYAxis | software.amazon.awscdk.services.cloudwatch.YAxisProps | cdk.support/lookup-entry | :left-y-axis |
legendPosition | software.amazon.awscdk.services.cloudwatch.LegendPosition | cdk.api.services.cloudwatch/legend-position | :legend-position |
liveData | java.lang.Boolean | cdk.support/lookup-entry | :live-data |
metrics | java.util.List | cdk.support/lookup-entry | :metrics |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
region | java.lang.String | cdk.support/lookup-entry | :region |
setPeriodToTimeRange | java.lang.Boolean | cdk.support/lookup-entry | :set-period-to-time-range |
start | java.lang.String | cdk.support/lookup-entry | :start |
statistic | java.lang.String | cdk.support/lookup-entry | :statistic |
title | java.lang.String | cdk.support/lookup-entry | :title |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-gauge-widget-props-builder function updates a GaugeWidgetProps$Builder instance using the provided configuration. The function takes the GaugeWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `annotations` | java.util.List | [[cdk.support/lookup-entry]] | `:annotations` | | `end` | java.lang.String | [[cdk.support/lookup-entry]] | `:end` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `leftYAxis` | software.amazon.awscdk.services.cloudwatch.YAxisProps | [[cdk.support/lookup-entry]] | `:left-y-axis` | | `legendPosition` | software.amazon.awscdk.services.cloudwatch.LegendPosition | [[cdk.api.services.cloudwatch/legend-position]] | `:legend-position` | | `liveData` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:live-data` | | `metrics` | java.util.List | [[cdk.support/lookup-entry]] | `:metrics` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `setPeriodToTimeRange` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:set-period-to-time-range` | | `start` | java.lang.String | [[cdk.support/lookup-entry]] | `:start` | | `statistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:statistic` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-graph-widget-builder builder id config)
The build-graph-widget-builder function updates a GraphWidget$Builder instance using the provided configuration. The function takes the GraphWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
end | java.lang.String | cdk.support/lookup-entry | :end |
height | java.lang.Number | cdk.support/lookup-entry | :height |
left | java.util.List | cdk.support/lookup-entry | :left |
leftAnnotations | java.util.List | cdk.support/lookup-entry | :left-annotations |
leftYAxis | software.amazon.awscdk.services.cloudwatch.YAxisProps | cdk.support/lookup-entry | :left-y-axis |
legendPosition | software.amazon.awscdk.services.cloudwatch.LegendPosition | cdk.api.services.cloudwatch/legend-position | :legend-position |
liveData | java.lang.Boolean | cdk.support/lookup-entry | :live-data |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
region | java.lang.String | cdk.support/lookup-entry | :region |
right | java.util.List | cdk.support/lookup-entry | :right |
rightAnnotations | java.util.List | cdk.support/lookup-entry | :right-annotations |
rightYAxis | software.amazon.awscdk.services.cloudwatch.YAxisProps | cdk.support/lookup-entry | :right-y-axis |
setPeriodToTimeRange | java.lang.Boolean | cdk.support/lookup-entry | :set-period-to-time-range |
stacked | java.lang.Boolean | cdk.support/lookup-entry | :stacked |
start | java.lang.String | cdk.support/lookup-entry | :start |
statistic | java.lang.String | cdk.support/lookup-entry | :statistic |
title | java.lang.String | cdk.support/lookup-entry | :title |
verticalAnnotations | java.util.List | cdk.support/lookup-entry | :vertical-annotations |
view | software.amazon.awscdk.services.cloudwatch.GraphWidgetView | cdk.api.services.cloudwatch/graph-widget-view | :view |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-graph-widget-builder function updates a GraphWidget$Builder instance using the provided configuration. The function takes the GraphWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `end` | java.lang.String | [[cdk.support/lookup-entry]] | `:end` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `left` | java.util.List | [[cdk.support/lookup-entry]] | `:left` | | `leftAnnotations` | java.util.List | [[cdk.support/lookup-entry]] | `:left-annotations` | | `leftYAxis` | software.amazon.awscdk.services.cloudwatch.YAxisProps | [[cdk.support/lookup-entry]] | `:left-y-axis` | | `legendPosition` | software.amazon.awscdk.services.cloudwatch.LegendPosition | [[cdk.api.services.cloudwatch/legend-position]] | `:legend-position` | | `liveData` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:live-data` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `right` | java.util.List | [[cdk.support/lookup-entry]] | `:right` | | `rightAnnotations` | java.util.List | [[cdk.support/lookup-entry]] | `:right-annotations` | | `rightYAxis` | software.amazon.awscdk.services.cloudwatch.YAxisProps | [[cdk.support/lookup-entry]] | `:right-y-axis` | | `setPeriodToTimeRange` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:set-period-to-time-range` | | `stacked` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:stacked` | | `start` | java.lang.String | [[cdk.support/lookup-entry]] | `:start` | | `statistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:statistic` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `verticalAnnotations` | java.util.List | [[cdk.support/lookup-entry]] | `:vertical-annotations` | | `view` | software.amazon.awscdk.services.cloudwatch.GraphWidgetView | [[cdk.api.services.cloudwatch/graph-widget-view]] | `:view` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-graph-widget-props-builder builder id config)
The build-graph-widget-props-builder function updates a GraphWidgetProps$Builder instance using the provided configuration. The function takes the GraphWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
end | java.lang.String | cdk.support/lookup-entry | :end |
height | java.lang.Number | cdk.support/lookup-entry | :height |
left | java.util.List | cdk.support/lookup-entry | :left |
leftAnnotations | java.util.List | cdk.support/lookup-entry | :left-annotations |
leftYAxis | software.amazon.awscdk.services.cloudwatch.YAxisProps | cdk.support/lookup-entry | :left-y-axis |
legendPosition | software.amazon.awscdk.services.cloudwatch.LegendPosition | cdk.api.services.cloudwatch/legend-position | :legend-position |
liveData | java.lang.Boolean | cdk.support/lookup-entry | :live-data |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
region | java.lang.String | cdk.support/lookup-entry | :region |
right | java.util.List | cdk.support/lookup-entry | :right |
rightAnnotations | java.util.List | cdk.support/lookup-entry | :right-annotations |
rightYAxis | software.amazon.awscdk.services.cloudwatch.YAxisProps | cdk.support/lookup-entry | :right-y-axis |
setPeriodToTimeRange | java.lang.Boolean | cdk.support/lookup-entry | :set-period-to-time-range |
stacked | java.lang.Boolean | cdk.support/lookup-entry | :stacked |
start | java.lang.String | cdk.support/lookup-entry | :start |
statistic | java.lang.String | cdk.support/lookup-entry | :statistic |
title | java.lang.String | cdk.support/lookup-entry | :title |
verticalAnnotations | java.util.List | cdk.support/lookup-entry | :vertical-annotations |
view | software.amazon.awscdk.services.cloudwatch.GraphWidgetView | cdk.api.services.cloudwatch/graph-widget-view | :view |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-graph-widget-props-builder function updates a GraphWidgetProps$Builder instance using the provided configuration. The function takes the GraphWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `end` | java.lang.String | [[cdk.support/lookup-entry]] | `:end` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `left` | java.util.List | [[cdk.support/lookup-entry]] | `:left` | | `leftAnnotations` | java.util.List | [[cdk.support/lookup-entry]] | `:left-annotations` | | `leftYAxis` | software.amazon.awscdk.services.cloudwatch.YAxisProps | [[cdk.support/lookup-entry]] | `:left-y-axis` | | `legendPosition` | software.amazon.awscdk.services.cloudwatch.LegendPosition | [[cdk.api.services.cloudwatch/legend-position]] | `:legend-position` | | `liveData` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:live-data` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `right` | java.util.List | [[cdk.support/lookup-entry]] | `:right` | | `rightAnnotations` | java.util.List | [[cdk.support/lookup-entry]] | `:right-annotations` | | `rightYAxis` | software.amazon.awscdk.services.cloudwatch.YAxisProps | [[cdk.support/lookup-entry]] | `:right-y-axis` | | `setPeriodToTimeRange` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:set-period-to-time-range` | | `stacked` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:stacked` | | `start` | java.lang.String | [[cdk.support/lookup-entry]] | `:start` | | `statistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:statistic` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `verticalAnnotations` | java.util.List | [[cdk.support/lookup-entry]] | `:vertical-annotations` | | `view` | software.amazon.awscdk.services.cloudwatch.GraphWidgetView | [[cdk.api.services.cloudwatch/graph-widget-view]] | `:view` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-horizontal-annotation-builder builder id config)
The build-horizontal-annotation-builder function updates a HorizontalAnnotation$Builder instance using the provided configuration. The function takes the HorizontalAnnotation$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
color | java.lang.String | cdk.support/lookup-entry | :color |
fill | software.amazon.awscdk.services.cloudwatch.Shading | cdk.api.services.cloudwatch/shading | :fill |
label | java.lang.String | cdk.support/lookup-entry | :label |
value | java.lang.Number | cdk.support/lookup-entry | :value |
visible | java.lang.Boolean | cdk.support/lookup-entry | :visible |
The build-horizontal-annotation-builder function updates a HorizontalAnnotation$Builder instance using the provided configuration. The function takes the HorizontalAnnotation$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `color` | java.lang.String | [[cdk.support/lookup-entry]] | `:color` | | `fill` | software.amazon.awscdk.services.cloudwatch.Shading | [[cdk.api.services.cloudwatch/shading]] | `:fill` | | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `value` | java.lang.Number | [[cdk.support/lookup-entry]] | `:value` | | `visible` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:visible` |
(build-log-query-widget-builder builder id config)
The build-log-query-widget-builder function updates a LogQueryWidget$Builder instance using the provided configuration. The function takes the LogQueryWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
height | java.lang.Number | cdk.support/lookup-entry | :height |
logGroupNames | java.util.List | cdk.support/lookup-entry | :log-group-names |
queryLines | java.util.List | cdk.support/lookup-entry | :query-lines |
queryString | java.lang.String | cdk.support/lookup-entry | :query-string |
region | java.lang.String | cdk.support/lookup-entry | :region |
title | java.lang.String | cdk.support/lookup-entry | :title |
view | software.amazon.awscdk.services.cloudwatch.LogQueryVisualizationType | cdk.api.services.cloudwatch/log-query-visualization-type | :view |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-log-query-widget-builder function updates a LogQueryWidget$Builder instance using the provided configuration. The function takes the LogQueryWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `logGroupNames` | java.util.List | [[cdk.support/lookup-entry]] | `:log-group-names` | | `queryLines` | java.util.List | [[cdk.support/lookup-entry]] | `:query-lines` | | `queryString` | java.lang.String | [[cdk.support/lookup-entry]] | `:query-string` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `view` | software.amazon.awscdk.services.cloudwatch.LogQueryVisualizationType | [[cdk.api.services.cloudwatch/log-query-visualization-type]] | `:view` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-log-query-widget-props-builder builder id config)
The build-log-query-widget-props-builder function updates a LogQueryWidgetProps$Builder instance using the provided configuration. The function takes the LogQueryWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
height | java.lang.Number | cdk.support/lookup-entry | :height |
logGroupNames | java.util.List | cdk.support/lookup-entry | :log-group-names |
queryLines | java.util.List | cdk.support/lookup-entry | :query-lines |
queryString | java.lang.String | cdk.support/lookup-entry | :query-string |
region | java.lang.String | cdk.support/lookup-entry | :region |
title | java.lang.String | cdk.support/lookup-entry | :title |
view | software.amazon.awscdk.services.cloudwatch.LogQueryVisualizationType | cdk.api.services.cloudwatch/log-query-visualization-type | :view |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-log-query-widget-props-builder function updates a LogQueryWidgetProps$Builder instance using the provided configuration. The function takes the LogQueryWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `logGroupNames` | java.util.List | [[cdk.support/lookup-entry]] | `:log-group-names` | | `queryLines` | java.util.List | [[cdk.support/lookup-entry]] | `:query-lines` | | `queryString` | java.lang.String | [[cdk.support/lookup-entry]] | `:query-string` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `view` | software.amazon.awscdk.services.cloudwatch.LogQueryVisualizationType | [[cdk.api.services.cloudwatch/log-query-visualization-type]] | `:view` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-math-expression-builder builder id config)
The build-math-expression-builder function updates a MathExpression$Builder instance using the provided configuration. The function takes the MathExpression$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
color | java.lang.String | cdk.support/lookup-entry | :color |
expression | java.lang.String | cdk.support/lookup-entry | :expression |
label | java.lang.String | cdk.support/lookup-entry | :label |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
searchAccount | java.lang.String | cdk.support/lookup-entry | :search-account |
searchRegion | java.lang.String | cdk.support/lookup-entry | :search-region |
usingMetrics | java.util.Map | cdk.support/lookup-entry | :using-metrics |
The build-math-expression-builder function updates a MathExpression$Builder instance using the provided configuration. The function takes the MathExpression$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `color` | java.lang.String | [[cdk.support/lookup-entry]] | `:color` | | `expression` | java.lang.String | [[cdk.support/lookup-entry]] | `:expression` | | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `searchAccount` | java.lang.String | [[cdk.support/lookup-entry]] | `:search-account` | | `searchRegion` | java.lang.String | [[cdk.support/lookup-entry]] | `:search-region` | | `usingMetrics` | java.util.Map | [[cdk.support/lookup-entry]] | `:using-metrics` |
(build-math-expression-options-builder builder id config)
The build-math-expression-options-builder function updates a MathExpressionOptions$Builder instance using the provided configuration. The function takes the MathExpressionOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
color | java.lang.String | cdk.support/lookup-entry | :color |
label | java.lang.String | cdk.support/lookup-entry | :label |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
searchAccount | java.lang.String | cdk.support/lookup-entry | :search-account |
searchRegion | java.lang.String | cdk.support/lookup-entry | :search-region |
The build-math-expression-options-builder function updates a MathExpressionOptions$Builder instance using the provided configuration. The function takes the MathExpressionOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `color` | java.lang.String | [[cdk.support/lookup-entry]] | `:color` | | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `searchAccount` | java.lang.String | [[cdk.support/lookup-entry]] | `:search-account` | | `searchRegion` | java.lang.String | [[cdk.support/lookup-entry]] | `:search-region` |
(build-math-expression-props-builder builder id config)
The build-math-expression-props-builder function updates a MathExpressionProps$Builder instance using the provided configuration. The function takes the MathExpressionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
color | java.lang.String | cdk.support/lookup-entry | :color |
expression | java.lang.String | cdk.support/lookup-entry | :expression |
label | java.lang.String | cdk.support/lookup-entry | :label |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
searchAccount | java.lang.String | cdk.support/lookup-entry | :search-account |
searchRegion | java.lang.String | cdk.support/lookup-entry | :search-region |
usingMetrics | java.util.Map | cdk.support/lookup-entry | :using-metrics |
The build-math-expression-props-builder function updates a MathExpressionProps$Builder instance using the provided configuration. The function takes the MathExpressionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `color` | java.lang.String | [[cdk.support/lookup-entry]] | `:color` | | `expression` | java.lang.String | [[cdk.support/lookup-entry]] | `:expression` | | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `searchAccount` | java.lang.String | [[cdk.support/lookup-entry]] | `:search-account` | | `searchRegion` | java.lang.String | [[cdk.support/lookup-entry]] | `:search-region` | | `usingMetrics` | java.util.Map | [[cdk.support/lookup-entry]] | `:using-metrics` |
(build-metric-builder builder id config)
The build-metric-builder function updates a Metric$Builder instance using the provided configuration. The function takes the Metric$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
account | java.lang.String | cdk.support/lookup-entry | :account |
color | java.lang.String | cdk.support/lookup-entry | :color |
dimensionsMap | java.util.Map | cdk.support/lookup-entry | :dimensions-map |
label | java.lang.String | cdk.support/lookup-entry | :label |
metricName | java.lang.String | cdk.support/lookup-entry | :metric-name |
namespace | java.lang.String | cdk.support/lookup-entry | :namespace |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
region | java.lang.String | cdk.support/lookup-entry | :region |
statistic | java.lang.String | cdk.support/lookup-entry | :statistic |
unit | software.amazon.awscdk.services.cloudwatch.Unit | cdk.api.services.cloudwatch/unit | :unit |
The build-metric-builder function updates a Metric$Builder instance using the provided configuration. The function takes the Metric$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `account` | java.lang.String | [[cdk.support/lookup-entry]] | `:account` | | `color` | java.lang.String | [[cdk.support/lookup-entry]] | `:color` | | `dimensionsMap` | java.util.Map | [[cdk.support/lookup-entry]] | `:dimensions-map` | | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `metricName` | java.lang.String | [[cdk.support/lookup-entry]] | `:metric-name` | | `namespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:namespace` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `statistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:statistic` | | `unit` | software.amazon.awscdk.services.cloudwatch.Unit | [[cdk.api.services.cloudwatch/unit]] | `:unit` |
(build-metric-config-builder builder id config)
The build-metric-config-builder function updates a MetricConfig$Builder instance using the provided configuration. The function takes the MetricConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
mathExpression | software.amazon.awscdk.services.cloudwatch.MetricExpressionConfig | cdk.support/lookup-entry | :math-expression |
metricStat | software.amazon.awscdk.services.cloudwatch.MetricStatConfig | cdk.support/lookup-entry | :metric-stat |
renderingProperties | java.util.Map | cdk.support/lookup-entry | :rendering-properties |
The build-metric-config-builder function updates a MetricConfig$Builder instance using the provided configuration. The function takes the MetricConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `mathExpression` | software.amazon.awscdk.services.cloudwatch.MetricExpressionConfig | [[cdk.support/lookup-entry]] | `:math-expression` | | `metricStat` | software.amazon.awscdk.services.cloudwatch.MetricStatConfig | [[cdk.support/lookup-entry]] | `:metric-stat` | | `renderingProperties` | java.util.Map | [[cdk.support/lookup-entry]] | `:rendering-properties` |
(build-metric-expression-config-builder builder id config)
The build-metric-expression-config-builder function updates a MetricExpressionConfig$Builder instance using the provided configuration. The function takes the MetricExpressionConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
expression | java.lang.String | cdk.support/lookup-entry | :expression |
period | java.lang.Number | cdk.support/lookup-entry | :period |
searchAccount | java.lang.String | cdk.support/lookup-entry | :search-account |
searchRegion | java.lang.String | cdk.support/lookup-entry | :search-region |
usingMetrics | java.util.Map | cdk.support/lookup-entry | :using-metrics |
The build-metric-expression-config-builder function updates a MetricExpressionConfig$Builder instance using the provided configuration. The function takes the MetricExpressionConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `expression` | java.lang.String | [[cdk.support/lookup-entry]] | `:expression` | | `period` | java.lang.Number | [[cdk.support/lookup-entry]] | `:period` | | `searchAccount` | java.lang.String | [[cdk.support/lookup-entry]] | `:search-account` | | `searchRegion` | java.lang.String | [[cdk.support/lookup-entry]] | `:search-region` | | `usingMetrics` | java.util.Map | [[cdk.support/lookup-entry]] | `:using-metrics` |
(build-metric-options-builder builder id config)
The build-metric-options-builder function updates a MetricOptions$Builder instance using the provided configuration. The function takes the MetricOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
account | java.lang.String | cdk.support/lookup-entry | :account |
color | java.lang.String | cdk.support/lookup-entry | :color |
dimensionsMap | java.util.Map | cdk.support/lookup-entry | :dimensions-map |
label | java.lang.String | cdk.support/lookup-entry | :label |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
region | java.lang.String | cdk.support/lookup-entry | :region |
statistic | java.lang.String | cdk.support/lookup-entry | :statistic |
unit | software.amazon.awscdk.services.cloudwatch.Unit | cdk.api.services.cloudwatch/unit | :unit |
The build-metric-options-builder function updates a MetricOptions$Builder instance using the provided configuration. The function takes the MetricOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `account` | java.lang.String | [[cdk.support/lookup-entry]] | `:account` | | `color` | java.lang.String | [[cdk.support/lookup-entry]] | `:color` | | `dimensionsMap` | java.util.Map | [[cdk.support/lookup-entry]] | `:dimensions-map` | | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `statistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:statistic` | | `unit` | software.amazon.awscdk.services.cloudwatch.Unit | [[cdk.api.services.cloudwatch/unit]] | `:unit` |
(build-metric-props-builder builder id config)
The build-metric-props-builder function updates a MetricProps$Builder instance using the provided configuration. The function takes the MetricProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
account | java.lang.String | cdk.support/lookup-entry | :account |
color | java.lang.String | cdk.support/lookup-entry | :color |
dimensionsMap | java.util.Map | cdk.support/lookup-entry | :dimensions-map |
label | java.lang.String | cdk.support/lookup-entry | :label |
metricName | java.lang.String | cdk.support/lookup-entry | :metric-name |
namespace | java.lang.String | cdk.support/lookup-entry | :namespace |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
region | java.lang.String | cdk.support/lookup-entry | :region |
statistic | java.lang.String | cdk.support/lookup-entry | :statistic |
unit | software.amazon.awscdk.services.cloudwatch.Unit | cdk.api.services.cloudwatch/unit | :unit |
The build-metric-props-builder function updates a MetricProps$Builder instance using the provided configuration. The function takes the MetricProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `account` | java.lang.String | [[cdk.support/lookup-entry]] | `:account` | | `color` | java.lang.String | [[cdk.support/lookup-entry]] | `:color` | | `dimensionsMap` | java.util.Map | [[cdk.support/lookup-entry]] | `:dimensions-map` | | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `metricName` | java.lang.String | [[cdk.support/lookup-entry]] | `:metric-name` | | `namespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:namespace` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `statistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:statistic` | | `unit` | software.amazon.awscdk.services.cloudwatch.Unit | [[cdk.api.services.cloudwatch/unit]] | `:unit` |
(build-metric-stat-config-builder builder id config)
The build-metric-stat-config-builder function updates a MetricStatConfig$Builder instance using the provided configuration. The function takes the MetricStatConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
account | java.lang.String | cdk.support/lookup-entry | :account |
dimensions | java.util.List | cdk.support/lookup-entry | :dimensions |
metricName | java.lang.String | cdk.support/lookup-entry | :metric-name |
namespace | java.lang.String | cdk.support/lookup-entry | :namespace |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
region | java.lang.String | cdk.support/lookup-entry | :region |
statistic | java.lang.String | cdk.support/lookup-entry | :statistic |
unitFilter | software.amazon.awscdk.services.cloudwatch.Unit | cdk.api.services.cloudwatch/unit | :unit-filter |
The build-metric-stat-config-builder function updates a MetricStatConfig$Builder instance using the provided configuration. The function takes the MetricStatConfig$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `account` | java.lang.String | [[cdk.support/lookup-entry]] | `:account` | | `dimensions` | java.util.List | [[cdk.support/lookup-entry]] | `:dimensions` | | `metricName` | java.lang.String | [[cdk.support/lookup-entry]] | `:metric-name` | | `namespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:namespace` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `statistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:statistic` | | `unitFilter` | software.amazon.awscdk.services.cloudwatch.Unit | [[cdk.api.services.cloudwatch/unit]] | `:unit-filter` |
(build-metric-widget-props-builder builder id config)
The build-metric-widget-props-builder function updates a MetricWidgetProps$Builder instance using the provided configuration. The function takes the MetricWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
height | java.lang.Number | cdk.support/lookup-entry | :height |
region | java.lang.String | cdk.support/lookup-entry | :region |
title | java.lang.String | cdk.support/lookup-entry | :title |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-metric-widget-props-builder function updates a MetricWidgetProps$Builder instance using the provided configuration. The function takes the MetricWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-search-components-builder builder id config)
The build-search-components-builder function updates a SearchComponents$Builder instance using the provided configuration. The function takes the SearchComponents$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
dimensions | java.util.List | cdk.support/lookup-entry | :dimensions |
metricName | java.lang.String | cdk.support/lookup-entry | :metric-name |
namespace | java.lang.String | cdk.support/lookup-entry | :namespace |
populateFrom | java.lang.String | cdk.support/lookup-entry | :populate-from |
The build-search-components-builder function updates a SearchComponents$Builder instance using the provided configuration. The function takes the SearchComponents$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `dimensions` | java.util.List | [[cdk.support/lookup-entry]] | `:dimensions` | | `metricName` | java.lang.String | [[cdk.support/lookup-entry]] | `:metric-name` | | `namespace` | java.lang.String | [[cdk.support/lookup-entry]] | `:namespace` | | `populateFrom` | java.lang.String | [[cdk.support/lookup-entry]] | `:populate-from` |
(build-single-value-widget-builder builder id config)
The build-single-value-widget-builder function updates a SingleValueWidget$Builder instance using the provided configuration. The function takes the SingleValueWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
end | java.lang.String | cdk.support/lookup-entry | :end |
fullPrecision | java.lang.Boolean | cdk.support/lookup-entry | :full-precision |
height | java.lang.Number | cdk.support/lookup-entry | :height |
metrics | java.util.List | cdk.support/lookup-entry | :metrics |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
region | java.lang.String | cdk.support/lookup-entry | :region |
setPeriodToTimeRange | java.lang.Boolean | cdk.support/lookup-entry | :set-period-to-time-range |
sparkline | java.lang.Boolean | cdk.support/lookup-entry | :sparkline |
start | java.lang.String | cdk.support/lookup-entry | :start |
title | java.lang.String | cdk.support/lookup-entry | :title |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-single-value-widget-builder function updates a SingleValueWidget$Builder instance using the provided configuration. The function takes the SingleValueWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `end` | java.lang.String | [[cdk.support/lookup-entry]] | `:end` | | `fullPrecision` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:full-precision` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `metrics` | java.util.List | [[cdk.support/lookup-entry]] | `:metrics` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `setPeriodToTimeRange` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:set-period-to-time-range` | | `sparkline` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:sparkline` | | `start` | java.lang.String | [[cdk.support/lookup-entry]] | `:start` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-single-value-widget-props-builder builder id config)
The build-single-value-widget-props-builder function updates a SingleValueWidgetProps$Builder instance using the provided configuration. The function takes the SingleValueWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
end | java.lang.String | cdk.support/lookup-entry | :end |
fullPrecision | java.lang.Boolean | cdk.support/lookup-entry | :full-precision |
height | java.lang.Number | cdk.support/lookup-entry | :height |
metrics | java.util.List | cdk.support/lookup-entry | :metrics |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
region | java.lang.String | cdk.support/lookup-entry | :region |
setPeriodToTimeRange | java.lang.Boolean | cdk.support/lookup-entry | :set-period-to-time-range |
sparkline | java.lang.Boolean | cdk.support/lookup-entry | :sparkline |
start | java.lang.String | cdk.support/lookup-entry | :start |
title | java.lang.String | cdk.support/lookup-entry | :title |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-single-value-widget-props-builder function updates a SingleValueWidgetProps$Builder instance using the provided configuration. The function takes the SingleValueWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `end` | java.lang.String | [[cdk.support/lookup-entry]] | `:end` | | `fullPrecision` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:full-precision` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `metrics` | java.util.List | [[cdk.support/lookup-entry]] | `:metrics` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `setPeriodToTimeRange` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:set-period-to-time-range` | | `sparkline` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:sparkline` | | `start` | java.lang.String | [[cdk.support/lookup-entry]] | `:start` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-spacer-builder builder id config)
The build-spacer-builder function updates a Spacer$Builder instance using the provided configuration. The function takes the Spacer$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
height | java.lang.Number | cdk.support/lookup-entry | :height |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-spacer-builder function updates a Spacer$Builder instance using the provided configuration. The function takes the Spacer$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-spacer-props-builder builder id config)
The build-spacer-props-builder function updates a SpacerProps$Builder instance using the provided configuration. The function takes the SpacerProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
height | java.lang.Number | cdk.support/lookup-entry | :height |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-spacer-props-builder function updates a SpacerProps$Builder instance using the provided configuration. The function takes the SpacerProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-table-summary-props-builder builder id config)
The build-table-summary-props-builder function updates a TableSummaryProps$Builder instance using the provided configuration. The function takes the TableSummaryProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
columns | java.util.List | cdk.support/lookup-entry | :columns |
hideNonSummaryColumns | java.lang.Boolean | cdk.support/lookup-entry | :hide-non-summary-columns |
sticky | java.lang.Boolean | cdk.support/lookup-entry | :sticky |
The build-table-summary-props-builder function updates a TableSummaryProps$Builder instance using the provided configuration. The function takes the TableSummaryProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `columns` | java.util.List | [[cdk.support/lookup-entry]] | `:columns` | | `hideNonSummaryColumns` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:hide-non-summary-columns` | | `sticky` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:sticky` |
(build-table-widget-builder builder id config)
The build-table-widget-builder function updates a TableWidget$Builder instance using the provided configuration. The function takes the TableWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
end | java.lang.String | cdk.support/lookup-entry | :end |
fullPrecision | java.lang.Boolean | cdk.support/lookup-entry | :full-precision |
height | java.lang.Number | cdk.support/lookup-entry | :height |
layout | software.amazon.awscdk.services.cloudwatch.TableLayout | cdk.api.services.cloudwatch/table-layout | :layout |
liveData | java.lang.Boolean | cdk.support/lookup-entry | :live-data |
metrics | java.util.List | cdk.support/lookup-entry | :metrics |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
region | java.lang.String | cdk.support/lookup-entry | :region |
setPeriodToTimeRange | java.lang.Boolean | cdk.support/lookup-entry | :set-period-to-time-range |
showUnitsInLabel | java.lang.Boolean | cdk.support/lookup-entry | :show-units-in-label |
start | java.lang.String | cdk.support/lookup-entry | :start |
statistic | java.lang.String | cdk.support/lookup-entry | :statistic |
summary | software.amazon.awscdk.services.cloudwatch.TableSummaryProps | cdk.support/lookup-entry | :summary |
thresholds | java.util.List | cdk.support/lookup-entry | :thresholds |
title | java.lang.String | cdk.support/lookup-entry | :title |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-table-widget-builder function updates a TableWidget$Builder instance using the provided configuration. The function takes the TableWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `end` | java.lang.String | [[cdk.support/lookup-entry]] | `:end` | | `fullPrecision` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:full-precision` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `layout` | software.amazon.awscdk.services.cloudwatch.TableLayout | [[cdk.api.services.cloudwatch/table-layout]] | `:layout` | | `liveData` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:live-data` | | `metrics` | java.util.List | [[cdk.support/lookup-entry]] | `:metrics` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `setPeriodToTimeRange` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:set-period-to-time-range` | | `showUnitsInLabel` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:show-units-in-label` | | `start` | java.lang.String | [[cdk.support/lookup-entry]] | `:start` | | `statistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:statistic` | | `summary` | software.amazon.awscdk.services.cloudwatch.TableSummaryProps | [[cdk.support/lookup-entry]] | `:summary` | | `thresholds` | java.util.List | [[cdk.support/lookup-entry]] | `:thresholds` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-table-widget-props-builder builder id config)
The build-table-widget-props-builder function updates a TableWidgetProps$Builder instance using the provided configuration. The function takes the TableWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
end | java.lang.String | cdk.support/lookup-entry | :end |
fullPrecision | java.lang.Boolean | cdk.support/lookup-entry | :full-precision |
height | java.lang.Number | cdk.support/lookup-entry | :height |
layout | software.amazon.awscdk.services.cloudwatch.TableLayout | cdk.api.services.cloudwatch/table-layout | :layout |
liveData | java.lang.Boolean | cdk.support/lookup-entry | :live-data |
metrics | java.util.List | cdk.support/lookup-entry | :metrics |
period | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :period |
region | java.lang.String | cdk.support/lookup-entry | :region |
setPeriodToTimeRange | java.lang.Boolean | cdk.support/lookup-entry | :set-period-to-time-range |
showUnitsInLabel | java.lang.Boolean | cdk.support/lookup-entry | :show-units-in-label |
start | java.lang.String | cdk.support/lookup-entry | :start |
statistic | java.lang.String | cdk.support/lookup-entry | :statistic |
summary | software.amazon.awscdk.services.cloudwatch.TableSummaryProps | cdk.support/lookup-entry | :summary |
thresholds | java.util.List | cdk.support/lookup-entry | :thresholds |
title | java.lang.String | cdk.support/lookup-entry | :title |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-table-widget-props-builder function updates a TableWidgetProps$Builder instance using the provided configuration. The function takes the TableWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `end` | java.lang.String | [[cdk.support/lookup-entry]] | `:end` | | `fullPrecision` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:full-precision` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `layout` | software.amazon.awscdk.services.cloudwatch.TableLayout | [[cdk.api.services.cloudwatch/table-layout]] | `:layout` | | `liveData` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:live-data` | | `metrics` | java.util.List | [[cdk.support/lookup-entry]] | `:metrics` | | `period` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:period` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `setPeriodToTimeRange` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:set-period-to-time-range` | | `showUnitsInLabel` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:show-units-in-label` | | `start` | java.lang.String | [[cdk.support/lookup-entry]] | `:start` | | `statistic` | java.lang.String | [[cdk.support/lookup-entry]] | `:statistic` | | `summary` | software.amazon.awscdk.services.cloudwatch.TableSummaryProps | [[cdk.support/lookup-entry]] | `:summary` | | `thresholds` | java.util.List | [[cdk.support/lookup-entry]] | `:thresholds` | | `title` | java.lang.String | [[cdk.support/lookup-entry]] | `:title` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-text-widget-builder builder id config)
The build-text-widget-builder function updates a TextWidget$Builder instance using the provided configuration. The function takes the TextWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
background | software.amazon.awscdk.services.cloudwatch.TextWidgetBackground | cdk.api.services.cloudwatch/text-widget-background | :background |
height | java.lang.Number | cdk.support/lookup-entry | :height |
markdown | java.lang.String | cdk.support/lookup-entry | :markdown |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-text-widget-builder function updates a TextWidget$Builder instance using the provided configuration. The function takes the TextWidget$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `background` | software.amazon.awscdk.services.cloudwatch.TextWidgetBackground | [[cdk.api.services.cloudwatch/text-widget-background]] | `:background` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `markdown` | java.lang.String | [[cdk.support/lookup-entry]] | `:markdown` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-text-widget-props-builder builder id config)
The build-text-widget-props-builder function updates a TextWidgetProps$Builder instance using the provided configuration. The function takes the TextWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
background | software.amazon.awscdk.services.cloudwatch.TextWidgetBackground | cdk.api.services.cloudwatch/text-widget-background | :background |
height | java.lang.Number | cdk.support/lookup-entry | :height |
markdown | java.lang.String | cdk.support/lookup-entry | :markdown |
width | java.lang.Number | cdk.support/lookup-entry | :width |
The build-text-widget-props-builder function updates a TextWidgetProps$Builder instance using the provided configuration. The function takes the TextWidgetProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `background` | software.amazon.awscdk.services.cloudwatch.TextWidgetBackground | [[cdk.api.services.cloudwatch/text-widget-background]] | `:background` | | `height` | java.lang.Number | [[cdk.support/lookup-entry]] | `:height` | | `markdown` | java.lang.String | [[cdk.support/lookup-entry]] | `:markdown` | | `width` | java.lang.Number | [[cdk.support/lookup-entry]] | `:width` |
(build-variable-value-builder builder id config)
The build-variable-value-builder function updates a VariableValue$Builder instance using the provided configuration. The function takes the VariableValue$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
label | java.lang.String | cdk.support/lookup-entry | :label |
value | java.lang.String | cdk.support/lookup-entry | :value |
The build-variable-value-builder function updates a VariableValue$Builder instance using the provided configuration. The function takes the VariableValue$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `value` | java.lang.String | [[cdk.support/lookup-entry]] | `:value` |
(build-vertical-annotation-builder builder id config)
The build-vertical-annotation-builder function updates a VerticalAnnotation$Builder instance using the provided configuration. The function takes the VerticalAnnotation$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
color | java.lang.String | cdk.support/lookup-entry | :color |
date | java.lang.String | cdk.support/lookup-entry | :date |
fill | software.amazon.awscdk.services.cloudwatch.VerticalShading | cdk.api.services.cloudwatch/vertical-shading | :fill |
label | java.lang.String | cdk.support/lookup-entry | :label |
visible | java.lang.Boolean | cdk.support/lookup-entry | :visible |
The build-vertical-annotation-builder function updates a VerticalAnnotation$Builder instance using the provided configuration. The function takes the VerticalAnnotation$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `color` | java.lang.String | [[cdk.support/lookup-entry]] | `:color` | | `date` | java.lang.String | [[cdk.support/lookup-entry]] | `:date` | | `fill` | software.amazon.awscdk.services.cloudwatch.VerticalShading | [[cdk.api.services.cloudwatch/vertical-shading]] | `:fill` | | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `visible` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:visible` |
(build-y-axis-props-builder builder id config)
The build-y-axis-props-builder function updates a YAxisProps$Builder instance using the provided configuration. The function takes the YAxisProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
label | java.lang.String | cdk.support/lookup-entry | :label |
max | java.lang.Number | cdk.support/lookup-entry | :max |
min | java.lang.Number | cdk.support/lookup-entry | :min |
showUnits | java.lang.Boolean | cdk.support/lookup-entry | :show-units |
The build-y-axis-props-builder function updates a YAxisProps$Builder instance using the provided configuration. The function takes the YAxisProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `label` | java.lang.String | [[cdk.support/lookup-entry]] | `:label` | | `max` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max` | | `min` | java.lang.Number | [[cdk.support/lookup-entry]] | `:min` | | `showUnits` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:show-units` |
(cfn-alarm-builder scope id config)
Creates a CfnAlarm$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnAlarm$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-alarm-dimension-property-builder id config)
Creates a CfnAlarm$DimensionProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAlarm$DimensionProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-alarm-metric-data-query-property-builder id config)
Creates a CfnAlarm$MetricDataQueryProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAlarm$MetricDataQueryProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-alarm-metric-property-builder id config)
Creates a CfnAlarm$MetricProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAlarm$MetricProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-alarm-metric-stat-property-builder id config)
Creates a CfnAlarm$MetricStatProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAlarm$MetricStatProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-alarm-props-builder id config)
Creates a CfnAlarmProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAlarmProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-anomaly-detector-builder scope id config)
Creates a CfnAnomalyDetector$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnAnomalyDetector$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-anomaly-detector-configuration-property-builder id config)
Creates a CfnAnomalyDetector$ConfigurationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAnomalyDetector$ConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-anomaly-detector-dimension-property-builder id config)
Creates a CfnAnomalyDetector$DimensionProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAnomalyDetector$DimensionProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-anomaly-detector-metric-characteristics-property-builder id config)
Creates a CfnAnomalyDetector$MetricCharacteristicsProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAnomalyDetector$MetricCharacteristicsProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-anomaly-detector-metric-data-query-property-builder id config)
Creates a CfnAnomalyDetector$MetricDataQueryProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAnomalyDetector$MetricDataQueryProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-anomaly-detector-metric-math-anomaly-detector-property-builder id config)
Creates a CfnAnomalyDetector$MetricMathAnomalyDetectorProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAnomalyDetector$MetricMathAnomalyDetectorProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-anomaly-detector-metric-property-builder id config)
Creates a CfnAnomalyDetector$MetricProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAnomalyDetector$MetricProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-anomaly-detector-metric-stat-property-builder id config)
Creates a CfnAnomalyDetector$MetricStatProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAnomalyDetector$MetricStatProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-anomaly-detector-props-builder id config)
Creates a CfnAnomalyDetectorProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAnomalyDetectorProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-anomaly-detector-range-property-builder id config)
Creates a CfnAnomalyDetector$RangeProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAnomalyDetector$RangeProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-anomaly-detector-single-metric-anomaly-detector-property-builder id config)
Creates a CfnAnomalyDetector$SingleMetricAnomalyDetectorProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAnomalyDetector$SingleMetricAnomalyDetectorProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-composite-alarm-builder scope id config)
Creates a CfnCompositeAlarm$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnCompositeAlarm$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-composite-alarm-props-builder id config)
Creates a CfnCompositeAlarmProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnCompositeAlarmProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-dashboard-builder scope id config)
Creates a CfnDashboard$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnDashboard$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-dashboard-props-builder id config)
Creates a CfnDashboardProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnDashboardProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-insight-rule-builder scope id config)
Creates a CfnInsightRule$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnInsightRule$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-insight-rule-props-builder id config)
Creates a CfnInsightRuleProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnInsightRuleProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-metric-stream-builder scope id config)
Creates a CfnMetricStream$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnMetricStream$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-metric-stream-metric-stream-filter-property-builder id config)
Creates a CfnMetricStream$MetricStreamFilterProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnMetricStream$MetricStreamFilterProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-metric-stream-metric-stream-statistics-configuration-property-builder
id
config)
Creates a CfnMetricStream$MetricStreamStatisticsConfigurationProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnMetricStream$MetricStreamStatisticsConfigurationProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-metric-stream-metric-stream-statistics-metric-property-builder id config)
Creates a CfnMetricStream$MetricStreamStatisticsMetricProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnMetricStream$MetricStreamStatisticsMetricProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-metric-stream-props-builder id config)
Creates a CfnMetricStreamProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnMetricStreamProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(common-metric-options-builder id config)
Creates a CommonMetricOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CommonMetricOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(comparison-operator config id item-key)
The comparison-operator
function data interprets values in the provided config data into a
ComparisonOperator
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
ComparisonOperator
- the value is returned.:greater-than-upper-threshold
- ComparisonOperator/GREATER_THAN_UPPER_THRESHOLD
is returned:less-than-lower-or-greater-than-upper-threshold
- ComparisonOperator/LESS_THAN_LOWER_OR_GREATER_THAN_UPPER_THRESHOLD
is returned:less-than-lower-threshold
- ComparisonOperator/LESS_THAN_LOWER_THRESHOLD
is returned:greater-than-threshold
- ComparisonOperator/GREATER_THAN_THRESHOLD
is returned:less-than-threshold
- ComparisonOperator/LESS_THAN_THRESHOLD
is returned:greater-than-or-equal-to-threshold
- ComparisonOperator/GREATER_THAN_OR_EQUAL_TO_THRESHOLD
is returned:less-than-or-equal-to-threshold
- ComparisonOperator/LESS_THAN_OR_EQUAL_TO_THRESHOLD
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `comparison-operator` function data interprets values in the provided config data into a `ComparisonOperator` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `ComparisonOperator` - the value is returned. * is `:greater-than-upper-threshold` - `ComparisonOperator/GREATER_THAN_UPPER_THRESHOLD` is returned * is `:less-than-lower-or-greater-than-upper-threshold` - `ComparisonOperator/LESS_THAN_LOWER_OR_GREATER_THAN_UPPER_THRESHOLD` is returned * is `:less-than-lower-threshold` - `ComparisonOperator/LESS_THAN_LOWER_THRESHOLD` is returned * is `:greater-than-threshold` - `ComparisonOperator/GREATER_THAN_THRESHOLD` is returned * is `:less-than-threshold` - `ComparisonOperator/LESS_THAN_THRESHOLD` is returned * is `:greater-than-or-equal-to-threshold` - `ComparisonOperator/GREATER_THAN_OR_EQUAL_TO_THRESHOLD` is returned * is `:less-than-or-equal-to-threshold` - `ComparisonOperator/LESS_THAN_OR_EQUAL_TO_THRESHOLD` is returned If a value is not found or matches the above criteria, nil is returned.
(composite-alarm-builder scope id config)
Creates a CompositeAlarm$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CompositeAlarm$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(composite-alarm-props-builder id config)
Creates a CompositeAlarmProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CompositeAlarmProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(create-alarm-options-builder id config)
Creates a CreateAlarmOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CreateAlarmOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(custom-widget-builder id config)
Creates a CustomWidget$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CustomWidget$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(custom-widget-props-builder id config)
Creates a CustomWidgetProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CustomWidgetProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(dashboard-builder scope id config)
Creates a Dashboard$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `Dashboard$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(dashboard-props-builder id config)
Creates a DashboardProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `DashboardProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(dashboard-variable-builder id config)
Creates a DashboardVariable$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `DashboardVariable$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(dashboard-variable-options-builder id config)
Creates a DashboardVariableOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `DashboardVariableOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(dimension-builder id config)
Creates a Dimension$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `Dimension$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(gauge-widget-builder id config)
Creates a GaugeWidget$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `GaugeWidget$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(gauge-widget-props-builder id config)
Creates a GaugeWidgetProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `GaugeWidgetProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(graph-widget-builder id config)
Creates a GraphWidget$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `GraphWidget$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(graph-widget-props-builder id config)
Creates a GraphWidgetProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `GraphWidgetProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(graph-widget-view config id item-key)
The graph-widget-view
function data interprets values in the provided config data into a
GraphWidgetView
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
GraphWidgetView
- the value is returned.:time-series
- GraphWidgetView/TIME_SERIES
is returned:pie
- GraphWidgetView/PIE
is returned:bar
- GraphWidgetView/BAR
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `graph-widget-view` function data interprets values in the provided config data into a `GraphWidgetView` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `GraphWidgetView` - the value is returned. * is `:time-series` - `GraphWidgetView/TIME_SERIES` is returned * is `:pie` - `GraphWidgetView/PIE` is returned * is `:bar` - `GraphWidgetView/BAR` is returned If a value is not found or matches the above criteria, nil is returned.
(horizontal-annotation-builder id config)
Creates a HorizontalAnnotation$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `HorizontalAnnotation$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(legend-position config id item-key)
The legend-position
function data interprets values in the provided config data into a
LegendPosition
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
LegendPosition
- the value is returned.:bottom
- LegendPosition/BOTTOM
is returned:hidden
- LegendPosition/HIDDEN
is returned:right
- LegendPosition/RIGHT
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `legend-position` function data interprets values in the provided config data into a `LegendPosition` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `LegendPosition` - the value is returned. * is `:bottom` - `LegendPosition/BOTTOM` is returned * is `:hidden` - `LegendPosition/HIDDEN` is returned * is `:right` - `LegendPosition/RIGHT` is returned If a value is not found or matches the above criteria, nil is returned.
(log-query-visualization-type config id item-key)
The log-query-visualization-type
function data interprets values in the provided config data into a
LogQueryVisualizationType
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
LogQueryVisualizationType
- the value is returned.:stackedarea
- LogQueryVisualizationType/STACKEDAREA
is returned:bar
- LogQueryVisualizationType/BAR
is returned:line
- LogQueryVisualizationType/LINE
is returned:table
- LogQueryVisualizationType/TABLE
is returned:pie
- LogQueryVisualizationType/PIE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `log-query-visualization-type` function data interprets values in the provided config data into a `LogQueryVisualizationType` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `LogQueryVisualizationType` - the value is returned. * is `:stackedarea` - `LogQueryVisualizationType/STACKEDAREA` is returned * is `:bar` - `LogQueryVisualizationType/BAR` is returned * is `:line` - `LogQueryVisualizationType/LINE` is returned * is `:table` - `LogQueryVisualizationType/TABLE` is returned * is `:pie` - `LogQueryVisualizationType/PIE` is returned If a value is not found or matches the above criteria, nil is returned.
(log-query-widget-builder id config)
Creates a LogQueryWidget$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `LogQueryWidget$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(log-query-widget-props-builder id config)
Creates a LogQueryWidgetProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `LogQueryWidgetProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(math-expression-builder id config)
Creates a MathExpression$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `MathExpression$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(math-expression-options-builder id config)
Creates a MathExpressionOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `MathExpressionOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(math-expression-props-builder id config)
Creates a MathExpressionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `MathExpressionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(metric-builder id config)
Creates a Metric$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `Metric$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(metric-config-builder id config)
Creates a MetricConfig$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `MetricConfig$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(metric-expression-config-builder id config)
Creates a MetricExpressionConfig$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `MetricExpressionConfig$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(metric-options-builder id config)
Creates a MetricOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `MetricOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(metric-props-builder id config)
Creates a MetricProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `MetricProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(metric-stat-config-builder id config)
Creates a MetricStatConfig$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `MetricStatConfig$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(metric-widget-props-builder id config)
Creates a MetricWidgetProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `MetricWidgetProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(period-override config id item-key)
The period-override
function data interprets values in the provided config data into a
PeriodOverride
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
PeriodOverride
- the value is returned.:auto
- PeriodOverride/AUTO
is returned:inherit
- PeriodOverride/INHERIT
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `period-override` function data interprets values in the provided config data into a `PeriodOverride` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `PeriodOverride` - the value is returned. * is `:auto` - `PeriodOverride/AUTO` is returned * is `:inherit` - `PeriodOverride/INHERIT` is returned If a value is not found or matches the above criteria, nil is returned.
(search-components-builder id config)
Creates a SearchComponents$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `SearchComponents$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(shading config id item-key)
The shading
function data interprets values in the provided config data into a
Shading
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
Shading
- the value is returned.:none
- Shading/NONE
is returned:above
- Shading/ABOVE
is returned:below
- Shading/BELOW
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `shading` function data interprets values in the provided config data into a `Shading` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `Shading` - the value is returned. * is `:none` - `Shading/NONE` is returned * is `:above` - `Shading/ABOVE` is returned * is `:below` - `Shading/BELOW` is returned If a value is not found or matches the above criteria, nil is returned.
(single-value-widget-builder id config)
Creates a SingleValueWidget$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `SingleValueWidget$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(single-value-widget-props-builder id config)
Creates a SingleValueWidgetProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `SingleValueWidgetProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(spacer-builder id config)
Creates a Spacer$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `Spacer$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(spacer-props-builder id config)
Creates a SpacerProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `SpacerProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(table-layout config id item-key)
The table-layout
function data interprets values in the provided config data into a
TableLayout
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
TableLayout
- the value is returned.:horizontal
- TableLayout/HORIZONTAL
is returned:vertical
- TableLayout/VERTICAL
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `table-layout` function data interprets values in the provided config data into a `TableLayout` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `TableLayout` - the value is returned. * is `:horizontal` - `TableLayout/HORIZONTAL` is returned * is `:vertical` - `TableLayout/VERTICAL` is returned If a value is not found or matches the above criteria, nil is returned.
(table-summary-column config id item-key)
The table-summary-column
function data interprets values in the provided config data into a
TableSummaryColumn
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
TableSummaryColumn
- the value is returned.:sum
- TableSummaryColumn/SUM
is returned:maximum
- TableSummaryColumn/MAXIMUM
is returned:average
- TableSummaryColumn/AVERAGE
is returned:minimum
- TableSummaryColumn/MINIMUM
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `table-summary-column` function data interprets values in the provided config data into a `TableSummaryColumn` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `TableSummaryColumn` - the value is returned. * is `:sum` - `TableSummaryColumn/SUM` is returned * is `:maximum` - `TableSummaryColumn/MAXIMUM` is returned * is `:average` - `TableSummaryColumn/AVERAGE` is returned * is `:minimum` - `TableSummaryColumn/MINIMUM` is returned If a value is not found or matches the above criteria, nil is returned.
(table-summary-props-builder id config)
Creates a TableSummaryProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `TableSummaryProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(table-widget-builder id config)
Creates a TableWidget$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `TableWidget$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(table-widget-props-builder id config)
Creates a TableWidgetProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `TableWidgetProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(text-widget-background config id item-key)
The text-widget-background
function data interprets values in the provided config data into a
TextWidgetBackground
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
TextWidgetBackground
- the value is returned.:transparent
- TextWidgetBackground/TRANSPARENT
is returned:solid
- TextWidgetBackground/SOLID
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `text-widget-background` function data interprets values in the provided config data into a `TextWidgetBackground` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `TextWidgetBackground` - the value is returned. * is `:transparent` - `TextWidgetBackground/TRANSPARENT` is returned * is `:solid` - `TextWidgetBackground/SOLID` is returned If a value is not found or matches the above criteria, nil is returned.
(text-widget-builder id config)
Creates a TextWidget$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `TextWidget$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(text-widget-props-builder id config)
Creates a TextWidgetProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `TextWidgetProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(treat-missing-data config id item-key)
The treat-missing-data
function data interprets values in the provided config data into a
TreatMissingData
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
TreatMissingData
- the value is returned.:ignore
- TreatMissingData/IGNORE
is returned:not-breaching
- TreatMissingData/NOT_BREACHING
is returned:missing
- TreatMissingData/MISSING
is returned:breaching
- TreatMissingData/BREACHING
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `treat-missing-data` function data interprets values in the provided config data into a `TreatMissingData` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `TreatMissingData` - the value is returned. * is `:ignore` - `TreatMissingData/IGNORE` is returned * is `:not-breaching` - `TreatMissingData/NOT_BREACHING` is returned * is `:missing` - `TreatMissingData/MISSING` is returned * is `:breaching` - `TreatMissingData/BREACHING` is returned If a value is not found or matches the above criteria, nil is returned.
(unit config id item-key)
The unit
function data interprets values in the provided config data into a
Unit
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
Unit
- the value is returned.:megabits-per-second
- Unit/MEGABITS_PER_SECOND
is returned:terabits-per-second
- Unit/TERABITS_PER_SECOND
is returned:gigabits
- Unit/GIGABITS
is returned:terabytes
- Unit/TERABYTES
is returned:kilobits-per-second
- Unit/KILOBITS_PER_SECOND
is returned:kilobytes
- Unit/KILOBYTES
is returned:count
- Unit/COUNT
is returned:milliseconds
- Unit/MILLISECONDS
is returned:megabytes-per-second
- Unit/MEGABYTES_PER_SECOND
is returned:terabytes-per-second
- Unit/TERABYTES_PER_SECOND
is returned:percent
- Unit/PERCENT
is returned:megabits
- Unit/MEGABITS
is returned:count-per-second
- Unit/COUNT_PER_SECOND
is returned:none
- Unit/NONE
is returned:microseconds
- Unit/MICROSECONDS
is returned:megabytes
- Unit/MEGABYTES
is returned:kilobits
- Unit/KILOBITS
is returned:bytes
- Unit/BYTES
is returned:seconds
- Unit/SECONDS
is returned:kilobytes-per-second
- Unit/KILOBYTES_PER_SECOND
is returned:gigabytes-per-second
- Unit/GIGABYTES_PER_SECOND
is returned:bytes-per-second
- Unit/BYTES_PER_SECOND
is returned:bits-per-second
- Unit/BITS_PER_SECOND
is returned:terabits
- Unit/TERABITS
is returned:gigabytes
- Unit/GIGABYTES
is returned:gigabits-per-second
- Unit/GIGABITS_PER_SECOND
is returned:bits
- Unit/BITS
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `unit` function data interprets values in the provided config data into a `Unit` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `Unit` - the value is returned. * is `:megabits-per-second` - `Unit/MEGABITS_PER_SECOND` is returned * is `:terabits-per-second` - `Unit/TERABITS_PER_SECOND` is returned * is `:gigabits` - `Unit/GIGABITS` is returned * is `:terabytes` - `Unit/TERABYTES` is returned * is `:kilobits-per-second` - `Unit/KILOBITS_PER_SECOND` is returned * is `:kilobytes` - `Unit/KILOBYTES` is returned * is `:count` - `Unit/COUNT` is returned * is `:milliseconds` - `Unit/MILLISECONDS` is returned * is `:megabytes-per-second` - `Unit/MEGABYTES_PER_SECOND` is returned * is `:terabytes-per-second` - `Unit/TERABYTES_PER_SECOND` is returned * is `:percent` - `Unit/PERCENT` is returned * is `:megabits` - `Unit/MEGABITS` is returned * is `:count-per-second` - `Unit/COUNT_PER_SECOND` is returned * is `:none` - `Unit/NONE` is returned * is `:microseconds` - `Unit/MICROSECONDS` is returned * is `:megabytes` - `Unit/MEGABYTES` is returned * is `:kilobits` - `Unit/KILOBITS` is returned * is `:bytes` - `Unit/BYTES` is returned * is `:seconds` - `Unit/SECONDS` is returned * is `:kilobytes-per-second` - `Unit/KILOBYTES_PER_SECOND` is returned * is `:gigabytes-per-second` - `Unit/GIGABYTES_PER_SECOND` is returned * is `:bytes-per-second` - `Unit/BYTES_PER_SECOND` is returned * is `:bits-per-second` - `Unit/BITS_PER_SECOND` is returned * is `:terabits` - `Unit/TERABITS` is returned * is `:gigabytes` - `Unit/GIGABYTES` is returned * is `:gigabits-per-second` - `Unit/GIGABITS_PER_SECOND` is returned * is `:bits` - `Unit/BITS` is returned If a value is not found or matches the above criteria, nil is returned.
(variable-input-type config id item-key)
The variable-input-type
function data interprets values in the provided config data into a
VariableInputType
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
VariableInputType
- the value is returned.:input
- VariableInputType/INPUT
is returned:select
- VariableInputType/SELECT
is returned:radio
- VariableInputType/RADIO
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `variable-input-type` function data interprets values in the provided config data into a `VariableInputType` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `VariableInputType` - the value is returned. * is `:input` - `VariableInputType/INPUT` is returned * is `:select` - `VariableInputType/SELECT` is returned * is `:radio` - `VariableInputType/RADIO` is returned If a value is not found or matches the above criteria, nil is returned.
(variable-type config id item-key)
The variable-type
function data interprets values in the provided config data into a
VariableType
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
VariableType
- the value is returned.:pattern
- VariableType/PATTERN
is returned:property
- VariableType/PROPERTY
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `variable-type` function data interprets values in the provided config data into a `VariableType` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `VariableType` - the value is returned. * is `:pattern` - `VariableType/PATTERN` is returned * is `:property` - `VariableType/PROPERTY` is returned If a value is not found or matches the above criteria, nil is returned.
(variable-value-builder id config)
Creates a VariableValue$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `VariableValue$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(vertical-annotation-builder id config)
Creates a VerticalAnnotation$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `VerticalAnnotation$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(vertical-shading config id item-key)
The vertical-shading
function data interprets values in the provided config data into a
VerticalShading
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
VerticalShading
- the value is returned.:before
- VerticalShading/BEFORE
is returned:after
- VerticalShading/AFTER
is returned:none
- VerticalShading/NONE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `vertical-shading` function data interprets values in the provided config data into a `VerticalShading` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `VerticalShading` - the value is returned. * is `:before` - `VerticalShading/BEFORE` is returned * is `:after` - `VerticalShading/AFTER` is returned * is `:none` - `VerticalShading/NONE` is returned If a value is not found or matches the above criteria, nil is returned.
(y-axis-props-builder id config)
Creates a YAxisProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `YAxisProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close