@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.188Z") @Stability(value=Stable) public interface CfnTrailProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cloudtrail.*;
CfnTrailProps cfnTrailProps = CfnTrailProps.builder()
.isLogging(false)
.s3BucketName("s3BucketName")
// the properties below are optional
.cloudWatchLogsLogGroupArn("cloudWatchLogsLogGroupArn")
.cloudWatchLogsRoleArn("cloudWatchLogsRoleArn")
.enableLogFileValidation(false)
.eventSelectors(List.of(EventSelectorProperty.builder()
.dataResources(List.of(DataResourceProperty.builder()
.type("type")
// the properties below are optional
.values(List.of("values"))
.build()))
.excludeManagementEventSources(List.of("excludeManagementEventSources"))
.includeManagementEvents(false)
.readWriteType("readWriteType")
.build()))
.includeGlobalServiceEvents(false)
.insightSelectors(List.of(InsightSelectorProperty.builder()
.insightType("insightType")
.build()))
.isMultiRegionTrail(false)
.isOrganizationTrail(false)
.kmsKeyId("kmsKeyId")
.s3KeyPrefix("s3KeyPrefix")
.snsTopicName("snsTopicName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.trailName("trailName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTrailProps.Builder
A builder for
CfnTrailProps |
static class |
CfnTrailProps.Jsii$Proxy
An implementation for
CfnTrailProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnTrailProps.Builder |
builder() |
default String |
getCloudWatchLogsLogGroupArn()
Specifies a log group name using an Amazon Resource Name (ARN), a unique identifier that represents the log group to which CloudTrail logs are delivered.
|
default String |
getCloudWatchLogsRoleArn()
Specifies the role for the CloudWatch Logs endpoint to assume to write to a user's log group.
|
default Object |
getEnableLogFileValidation()
Specifies whether log file validation is enabled.
|
default Object |
getEventSelectors()
Use event selectors to further specify the management and data event settings for your trail.
|
default Object |
getIncludeGlobalServiceEvents()
Specifies whether the trail is publishing events from global services such as IAM to the log files.
|
default Object |
getInsightSelectors()
`AWS::CloudTrail::Trail.InsightSelectors`.
|
Object |
getIsLogging()
Whether the CloudTrail trail is currently logging AWS API calls.
|
default Object |
getIsMultiRegionTrail()
Specifies whether the trail applies only to the current region or to all regions.
|
default Object |
getIsOrganizationTrail()
Specifies whether the trail is applied to all accounts in an organization in AWS Organizations , or only for the current AWS account .
|
default String |
getKmsKeyId()
Specifies the AWS KMS key ID to use to encrypt the logs delivered by CloudTrail.
|
String |
getS3BucketName()
Specifies the name of the Amazon S3 bucket designated for publishing log files.
|
default String |
getS3KeyPrefix()
Specifies the Amazon S3 key prefix that comes after the name of the bucket you have designated for log file delivery.
|
default String |
getSnsTopicName()
Specifies the name of the Amazon SNS topic defined for notification of log file delivery.
|
default List<CfnTag> |
getTags()
A custom set of tags (key-value pairs) for this trail.
|
default String |
getTrailName()
Specifies the name of the trail.
|
@Stability(value=Stable) @NotNull Object getIsLogging()
@Stability(value=Stable) @NotNull String getS3BucketName()
@Stability(value=Stable) @Nullable default String getCloudWatchLogsLogGroupArn()
Not required unless you specify CloudWatchLogsRoleArn .
@Stability(value=Stable) @Nullable default String getCloudWatchLogsRoleArn()
@Stability(value=Stable) @Nullable default Object getEnableLogFileValidation()
When you disable log file integrity validation, the chain of digest files is broken after one hour. CloudTrail does not create digest files for log files that were delivered during a period in which log file integrity validation was disabled. For example, if you enable log file integrity validation at noon on January 1, disable it at noon on January 2, and re-enable it at noon on January 10, digest files will not be created for the log files delivered from noon on January 2 to noon on January 10. The same applies whenever you stop CloudTrail logging or delete a trail.
@Stability(value=Stable) @Nullable default Object getEventSelectors()
By default, trails created without specific event selectors will be configured to log all read and write management events, and no data events. When an event occurs in your account, CloudTrail evaluates the event selector for all trails. For each trail, if the event matches any event selector, the trail processes and logs the event. If the event doesn't match any event selector, the trail doesn't log the event.
You can configure up to five event selectors for a trail.
You cannot apply both event selectors and advanced event selectors to a trail.
@Stability(value=Stable) @Nullable default Object getIncludeGlobalServiceEvents()
@Stability(value=Stable) @Nullable default Object getInsightSelectors()
@Stability(value=Stable) @Nullable default Object getIsMultiRegionTrail()
The default is false. If the trail exists only in the current region and this value is set to true, shadow trails (replications of the trail) will be created in the other regions. If the trail exists in all regions and this value is set to false, the trail will remain in the region where it was created, and its shadow trails in other regions will be deleted. As a best practice, consider using trails that log events in all regions.
@Stability(value=Stable) @Nullable default Object getIsOrganizationTrail()
The default is false, and cannot be true unless the call is made on behalf of an AWS account that is the management account for an organization in AWS Organizations . If the trail is not an organization trail and this is set to true , the trail will be created in all AWS accounts that belong to the organization. If the trail is an organization trail and this is set to false , the trail will remain in the current AWS account but be deleted from all member accounts in the organization.
@Stability(value=Stable) @Nullable default String getKmsKeyId()
The value can be an alias name prefixed by "alias/", a fully specified ARN to an alias, a fully specified ARN to a key, or a globally unique identifier.
CloudTrail also supports AWS KMS multi-Region keys. For more information about multi-Region keys, see Using multi-Region keys in the AWS Key Management Service Developer Guide .
Examples:
@Stability(value=Stable) @Nullable default String getS3KeyPrefix()
For more information, see Finding Your CloudTrail Log Files . The maximum length is 200 characters.
@Stability(value=Stable) @Nullable default String getSnsTopicName()
The maximum length is 256 characters.
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default String getTrailName()
my-_namespace and my--namespace are not valid.@Stability(value=Stable) static CfnTrailProps.Builder builder()
CfnTrailProps.Builder of CfnTrailPropsCopyright © 2022. All rights reserved.