interface WebIdFederationData
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Events.AWSAPICallViaCloudTrail.WebIdFederationData |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/events#AWSAPICallViaCloudTrail_WebIdFederationData |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.events.AWSAPICallViaCloudTrail.WebIdFederationData |
Python | aws_cdk.mixins_preview.aws_iotanalytics.events.AWSAPICallViaCloudTrail.WebIdFederationData |
TypeScript | @aws-cdk/mixins-preview ยป aws_iotanalytics ยป events ยป AWSAPICallViaCloudTrail ยป WebIdFederationData |
Type definition for WebIdFederationData.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as iotanalytics_events } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const webIdFederationData: iotanalytics_events.AWSAPICallViaCloudTrail.WebIdFederationData = {
attributes: {
attributesKey: 'attributes',
},
federatedProvider: ['federatedProvider'],
};
Properties
| Name | Type | Description |
|---|---|---|
| attributes? | { [string]: string } | attributes property. |
| federated | string[] | federatedProvider property. |
attributes?
Type:
{ [string]: string }
(optional, default: Do not filter on this field)
attributes property.
Specify an array of string values to match this event if the actual value of attributes is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
federatedProvider?
Type:
string[]
(optional, default: Do not filter on this field)
federatedProvider property.
Specify an array of string values to match this event if the actual value of federatedProvider 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