interface AdvancedFieldSelectorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ObservabilityAdmin.Mixins.CfnOrganizationTelemetryRulePropsMixin.AdvancedFieldSelectorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsobservabilityadmin/mixins#CfnOrganizationTelemetryRulePropsMixin_AdvancedFieldSelectorProperty |
Java | software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.CfnOrganizationTelemetryRulePropsMixin.AdvancedFieldSelectorProperty |
Python | aws_cdk.mixins_preview.aws_observabilityadmin.mixins.CfnOrganizationTelemetryRulePropsMixin.AdvancedFieldSelectorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_observabilityadmin » mixins » CfnOrganizationTelemetryRulePropsMixin » AdvancedFieldSelectorProperty |
Defines criteria for selecting resources based on field values.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as observabilityadmin_mixins } from '@aws-cdk/mixins-preview/aws-observabilityadmin';
const advancedFieldSelectorProperty: observabilityadmin_mixins.CfnOrganizationTelemetryRulePropsMixin.AdvancedFieldSelectorProperty = {
endsWith: ['endsWith'],
equalTo: ['equalTo'],
field: 'field',
notEndsWith: ['notEndsWith'],
notEquals: ['notEquals'],
notStartsWith: ['notStartsWith'],
startsWith: ['startsWith'],
};
Properties
| Name | Type | Description |
|---|---|---|
| ends | string[] | Matches if the field value ends with the specified value. |
| equal | string[] | Matches if the field value equals the specified value. |
| field? | string | The name of the field to use for selection. |
| not | string[] | Matches if the field value does not end with the specified value. |
| not | string[] | Matches if the field value does not equal the specified value. |
| not | string[] | Matches if the field value does not start with the specified value. |
| starts | string[] | Matches if the field value starts with the specified value. |
endsWith?
Type:
string[]
(optional)
Matches if the field value ends with the specified value.
equalTo?
Type:
string[]
(optional)
Matches if the field value equals the specified value.
field?
Type:
string
(optional)
The name of the field to use for selection.
notEndsWith?
Type:
string[]
(optional)
Matches if the field value does not end with the specified value.
notEquals?
Type:
string[]
(optional)
Matches if the field value does not equal the specified value.
notStartsWith?
Type:
string[]
(optional)
Matches if the field value does not start with the specified value.
startsWith?
Type:
string[]
(optional)
Matches if the field value starts with the specified value.

.NET
Go
Java
Python
TypeScript