Show / Hide Table of Contents

Class AWSAPICallViaCloudTrail.WebIdFederationData

(experimental) Type definition for WebIdFederationData.

Inheritance
object
AWSAPICallViaCloudTrail.WebIdFederationData
Implements
AWSAPICallViaCloudTrail.IWebIdFederationData
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

IDictionary<string, string>

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

Implements

AWSAPICallViaCloudTrail.IWebIdFederationData
Back to top Generated by DocFX