Show / Hide Table of Contents

Class CfnUserAccessLoggingSettingsProps

Properties for defining a CfnUserAccessLoggingSettings.

Inheritance
object
CfnUserAccessLoggingSettingsProps
Implements
ICfnUserAccessLoggingSettingsProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.WorkSpacesWeb
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUserAccessLoggingSettingsProps : ICfnUserAccessLoggingSettingsProps
Syntax (vb)
Public Class CfnUserAccessLoggingSettingsProps Implements ICfnUserAccessLoggingSettingsProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-useraccessloggingsettings.html

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.AWS.WorkSpacesWeb;

             var cfnUserAccessLoggingSettingsProps = new CfnUserAccessLoggingSettingsProps {
                 KinesisStreamArn = "kinesisStreamArn",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnUserAccessLoggingSettingsProps()

Properties for defining a CfnUserAccessLoggingSettings.

Properties

KinesisStreamArn

The ARN of the Kinesis stream.

Tags

The tags to add to the user access logging settings resource.

Constructors

CfnUserAccessLoggingSettingsProps()

Properties for defining a CfnUserAccessLoggingSettings.

public CfnUserAccessLoggingSettingsProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-useraccessloggingsettings.html

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.AWS.WorkSpacesWeb;

             var cfnUserAccessLoggingSettingsProps = new CfnUserAccessLoggingSettingsProps {
                 KinesisStreamArn = "kinesisStreamArn",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

KinesisStreamArn

The ARN of the Kinesis stream.

public string KinesisStreamArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-useraccessloggingsettings.html#cfn-workspacesweb-useraccessloggingsettings-kinesisstreamarn

Tags

The tags to add to the user access logging settings resource.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

A tag is a key-value pair.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-useraccessloggingsettings.html#cfn-workspacesweb-useraccessloggingsettings-tags

Implements

ICfnUserAccessLoggingSettingsProps
Back to top Generated by DocFX