Interface CfnInvestigationGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInvestigationGroupProps.Jsii$Proxy
CfnInvestigationGroup
.
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.aiops.*; CfnInvestigationGroupProps cfnInvestigationGroupProps = CfnInvestigationGroupProps.builder() .name("name") // the properties below are optional .chatbotNotificationChannels(List.of(ChatbotNotificationChannelProperty.builder() .chatConfigurationArns(List.of("chatConfigurationArns")) .snsTopicArn("snsTopicArn") .build())) .crossAccountConfigurations(List.of(CrossAccountConfigurationProperty.builder() .sourceRoleArn("sourceRoleArn") .build())) .encryptionConfig(EncryptionConfigMapProperty.builder() .encryptionConfigurationType("encryptionConfigurationType") .kmsKeyId("kmsKeyId") .build()) .investigationGroupPolicy("investigationGroupPolicy") .isCloudTrailEventHistoryEnabled(false) .retentionInDays(123) .roleArn("roleArn") .tagKeyBoundaries(List.of("tagKeyBoundaries")) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInvestigationGroupProps
static final class
An implementation forCfnInvestigationGroupProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Use this property to integrate Amazon Q Developer operational investigations with Amazon Q in chat applications.default Object
An array of cross account configurations.default Object
Use this property to specify a customer managed AWS KMS key to encrypt your investigation data.default String
Investigation Group policy.default Object
Specifytrue
to enable Amazon Q Developer operational investigations to have access to change events that are recorded by CloudTrail .getName()
A name for the investigation group.default Number
Specify how long that investigation data is kept.default String
Specify the ARN of the IAM role that Amazon Q Developer operational investigations will use when it gathers investigation data.Enter the existing custom tag keys for custom applications in your system.getTags()
A list of key-value pairs to associate with the investigation group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
A name for the investigation group.- See Also:
-
getChatbotNotificationChannels
Use this property to integrate Amazon Q Developer operational investigations with Amazon Q in chat applications.This property is an array. For the first string, specify the ARN of an Amazon SNS topic. For the array of strings, specify the ARNs of one or more Amazon Q in chat applications configurations that you want to associate with that topic. For more information about these configuration ARNs, see Getting started with Amazon Q in chat applications and Resource type defined by AWS Chatbot .
- See Also:
-
getCrossAccountConfigurations
An array of cross account configurations.- See Also:
-
getEncryptionConfig
Use this property to specify a customer managed AWS KMS key to encrypt your investigation data.If you omit this property, Amazon Q Developer operational investigations will use an AWS key to encrypt the data. For more information, see Encryption of investigation data .
- See Also:
-
getInvestigationGroupPolicy
Investigation Group policy.- See Also:
-
getIsCloudTrailEventHistoryEnabled
Specifytrue
to enable Amazon Q Developer operational investigations to have access to change events that are recorded by CloudTrail .The default is
true
.- See Also:
-
getRetentionInDays
Specify how long that investigation data is kept. For more information, see Operational investigation data retention .If you omit this parameter, the default of 90 days is used.
- See Also:
-
getRoleArn
Specify the ARN of the IAM role that Amazon Q Developer operational investigations will use when it gathers investigation data.The permissions in this role determine which of your resources that Amazon Q Developer operational investigations will have access to during investigations.
For more information, see How to control what data Amazon Q has access to during investigations .
- See Also:
-
getTagKeyBoundaries
Enter the existing custom tag keys for custom applications in your system.Resource tags help Amazon Q narrow the search space when it is unable to discover definite relationships between resources. For example, to discover that an Amazon ECS service depends on an Amazon RDS database, Amazon Q can discover this relationship using data sources such as X-Ray and CloudWatch Application Signals. However, if you haven't deployed these features, Amazon Q will attempt to identify possible relationships. Tag boundaries can be used to narrow the resources that will be discovered by Amazon Q in these cases.
You don't need to enter tags created by myApplications or AWS CloudFormation , because Amazon Q can automatically detect those tags.
- See Also:
-
getTags
A list of key-value pairs to associate with the investigation group.You can associate as many as 50 tags with an investigation group.
Tags can help you organize and categorize your resources.
- See Also:
-
builder
- Returns:
- a
CfnInvestigationGroupProps.Builder
ofCfnInvestigationGroupProps
-