Class CfnVerifiedAccessInstance.VerifiedAccessLogsProperty
Describes the options for Verified Access logs.
Inheritance
System.Object
CfnVerifiedAccessInstance.VerifiedAccessLogsProperty
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class VerifiedAccessLogsProperty : Object, CfnVerifiedAccessInstance.IVerifiedAccessLogsProperty
Syntax (vb)
Public Class VerifiedAccessLogsProperty
Inherits Object
Implements CfnVerifiedAccessInstance.IVerifiedAccessLogsProperty
Remarks
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.EC2;
var verifiedAccessLogsProperty = new VerifiedAccessLogsProperty {
CloudWatchLogs = new CloudWatchLogsProperty {
Enabled = false,
LogGroup = "logGroup"
},
IncludeTrustContext = false,
KinesisDataFirehose = new KinesisDataFirehoseProperty {
DeliveryStream = "deliveryStream",
Enabled = false
},
LogVersion = "logVersion",
S3 = new S3Property {
BucketName = "bucketName",
BucketOwner = "bucketOwner",
Enabled = false,
Prefix = "prefix"
}
};
Synopsis
Constructors
VerifiedAccessLogsProperty() |
Properties
CloudWatchLogs | CloudWatch Logs logging destination. |
IncludeTrustContext | Indicates whether to include trust data sent by trust providers in the logs. |
KinesisDataFirehose | Kinesis logging destination. |
LogVersion | The logging version. |
S3 | Amazon S3 logging options. |
Constructors
VerifiedAccessLogsProperty()
public VerifiedAccessLogsProperty()
Properties
CloudWatchLogs
CloudWatch Logs logging destination.
public object CloudWatchLogs { get; set; }
Property Value
System.Object
Remarks
IncludeTrustContext
Indicates whether to include trust data sent by trust providers in the logs.
public object IncludeTrustContext { get; set; }
Property Value
System.Object
Remarks
KinesisDataFirehose
Kinesis logging destination.
public object KinesisDataFirehose { get; set; }
Property Value
System.Object
Remarks
LogVersion
The logging version.
public string LogVersion { get; set; }
Property Value
System.String
Remarks
S3
Amazon S3 logging options.
public object S3 { get; set; }
Property Value
System.Object