Interface CfnVerifiedAccessInstance.IVerifiedAccessLogsProperty
Describes the options for Verified Access logs.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IVerifiedAccessLogsProperty
Syntax (vb)
Public Interface 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
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. |
Properties
CloudWatchLogs
CloudWatch Logs logging destination.
virtual object CloudWatchLogs { get; }
Property Value
System.Object
Remarks
IncludeTrustContext
Indicates whether to include trust data sent by trust providers in the logs.
virtual object IncludeTrustContext { get; }
Property Value
System.Object
Remarks
KinesisDataFirehose
Kinesis logging destination.
virtual object KinesisDataFirehose { get; }
Property Value
System.Object
Remarks
LogVersion
The logging version.
virtual string LogVersion { get; }
Property Value
System.String
Remarks
S3
Amazon S3 logging options.
virtual object S3 { get; }
Property Value
System.Object