interface ServiceId
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.XRay.Events.AWSXRayInsightUpdate.ServiceId |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsxray/events#AWSXRayInsightUpdate_ServiceId |
Java | software.amazon.awscdk.mixins.preview.services.xray.events.AWSXRayInsightUpdate.ServiceId |
Python | aws_cdk.mixins_preview.aws_xray.events.AWSXRayInsightUpdate.ServiceId |
TypeScript | @aws-cdk/mixins-preview ยป aws_xray ยป events ยป AWSXRayInsightUpdate ยป ServiceId |
Type definition for ServiceId.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as xray_events } from '@aws-cdk/mixins-preview/aws-xray';
declare const names: any;
const serviceId: xray_events.AWSXRayInsightUpdate.ServiceId = {
accountId: ['accountId'],
name: ['name'],
names: [names],
type: ['type'],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string[] | AccountId property. |
| name? | string[] | Name property. |
| names? | any[] | Names property. |
| type? | string[] | Type property. |
accountId?
Type:
string[]
(optional, default: Do not filter on this field)
AccountId property.
Specify an array of string values to match this event if the actual value of AccountId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
name?
Type:
string[]
(optional, default: Do not filter on this field)
Name property.
Specify an array of string values to match this event if the actual value of Name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
names?
Type:
any[]
(optional, default: Do not filter on this field)
Names property.
Specify an array of string values to match this event if the actual value of Names is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
type?
Type:
string[]
(optional, default: Do not filter on this field)
Type property.
Specify an array of string values to match this event if the actual value of Type is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript