interface HttpsNotificationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityLake.Mixins.CfnSubscriberNotificationPropsMixin.HttpsNotificationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecuritylake/mixins#CfnSubscriberNotificationPropsMixin_HttpsNotificationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.securitylake.mixins.CfnSubscriberNotificationPropsMixin.HttpsNotificationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_securitylake.mixins.CfnSubscriberNotificationPropsMixin.HttpsNotificationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_securitylake » mixins » CfnSubscriberNotificationPropsMixin » HttpsNotificationConfigurationProperty |
Specify the configurations you want to use for HTTPS subscriber notification.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as securitylake_mixins } from '@aws-cdk/mixins-preview/aws-securitylake';
const httpsNotificationConfigurationProperty: securitylake_mixins.CfnSubscriberNotificationPropsMixin.HttpsNotificationConfigurationProperty = {
authorizationApiKeyName: 'authorizationApiKeyName',
authorizationApiKeyValue: 'authorizationApiKeyValue',
endpoint: 'endpoint',
httpMethod: 'httpMethod',
targetRoleArn: 'targetRoleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | string | The key name for the notification subscription. |
| authorization | string | The key value for the notification subscription. |
| endpoint? | string | The subscription endpoint in Security Lake . |
| http | string | The HTTPS method used for the notification subscription. |
| target | string | The Amazon Resource Name (ARN) of the EventBridge API destinations IAM role that you created. |
authorizationApiKeyName?
Type:
string
(optional)
The key name for the notification subscription.
authorizationApiKeyValue?
Type:
string
(optional)
The key value for the notification subscription.
endpoint?
Type:
string
(optional)
The subscription endpoint in Security Lake .
If you prefer notification with an HTTPS endpoint, populate this field.
httpMethod?
Type:
string
(optional)
The HTTPS method used for the notification subscription.
targetRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the EventBridge API destinations IAM role that you created.
For more information about ARNs and how to use them in policies, see Managing data access and AWS Managed Policies in the Amazon Security Lake User Guide .

.NET
Go
Java
Python
TypeScript