Class AWSAPICallViaCloudTrail.WebIdFederationData
(experimental) Type definition for WebIdFederationData.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class AWSAPICallViaCloudTrail.WebIdFederationData : AWSAPICallViaCloudTrail.IWebIdFederationData
Syntax (vb)
Public Class AWSAPICallViaCloudTrail.WebIdFederationData Implements AWSAPICallViaCloudTrail.IWebIdFederationData
Remarks
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Events;
var webIdFederationData = new WebIdFederationData {
Attributes = new Dictionary<string, string> {
{ "attributesKey", "attributes" }
},
FederatedProvider = new [] { "federatedProvider" }
};
Synopsis
Constructors
| WebIdFederationData() | (experimental) Type definition for WebIdFederationData. |
Properties
| Attributes | (experimental) attributes property. |
| FederatedProvider | (experimental) federatedProvider property. |
Constructors
WebIdFederationData()
(experimental) Type definition for WebIdFederationData.
public WebIdFederationData()
Remarks
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Events;
var webIdFederationData = new WebIdFederationData {
Attributes = new Dictionary<string, string> {
{ "attributesKey", "attributes" }
},
FederatedProvider = new [] { "federatedProvider" }
};
Properties
Attributes
(experimental) attributes property.
public IDictionary<string, string>? Attributes { get; set; }
Property Value
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental
FederatedProvider
(experimental) federatedProvider property.
public string[]? FederatedProvider { get; set; }
Property Value
string[]
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental