interface SystemAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnMessageTemplatePropsMixin.SystemAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnMessageTemplatePropsMixin_SystemAttributesProperty |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnMessageTemplatePropsMixin.SystemAttributesProperty |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnMessageTemplatePropsMixin.SystemAttributesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » CfnMessageTemplatePropsMixin » SystemAttributesProperty |
The system attributes that are used with the message template.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as wisdom_mixins } from '@aws-cdk/mixins-preview/aws-wisdom';
const systemAttributesProperty: wisdom_mixins.CfnMessageTemplatePropsMixin.SystemAttributesProperty = {
customerEndpoint: {
address: 'address',
},
name: 'name',
systemEndpoint: {
address: 'address',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| customer | IResolvable | System | The CustomerEndpoint attribute. |
| name? | string | The name of the task. |
| system | IResolvable | System | The SystemEndpoint attribute. |
customerEndpoint?
Type:
IResolvable | System
(optional)
The CustomerEndpoint attribute.
name?
Type:
string
(optional)
The name of the task.
systemEndpoint?
Type:
IResolvable | System
(optional)
The SystemEndpoint attribute.

.NET
Go
Java
Python
TypeScript