interface SystemAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Wisdom.CfnMessageTemplate.SystemAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnMessageTemplate_SystemAttributesProperty |
Java | software.amazon.awscdk.services.wisdom.CfnMessageTemplate.SystemAttributesProperty |
Python | aws_cdk.aws_wisdom.CfnMessageTemplate.SystemAttributesProperty |
TypeScript | aws-cdk-lib » aws_wisdom » CfnMessageTemplate » 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 { aws_wisdom as wisdom } from 'aws-cdk-lib';
const systemAttributesProperty: wisdom.CfnMessageTemplate.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