Interface CfnMessageTemplate.SystemAttributesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMessageTemplate.SystemAttributesProperty.Jsii$Proxy
- Enclosing class:
CfnMessageTemplate
@Stability(Stable)
public static interface CfnMessageTemplate.SystemAttributesProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.wisdom.*;
SystemAttributesProperty systemAttributesProperty = SystemAttributesProperty.builder()
.customerEndpoint(SystemEndpointAttributesProperty.builder()
.address("address")
.build())
.name("name")
.systemEndpoint(SystemEndpointAttributesProperty.builder()
.address("address")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMessageTemplate.SystemAttributesPropertystatic final classAn implementation forCfnMessageTemplate.SystemAttributesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomerEndpoint
The CustomerEndpoint attribute.Returns union: either
IResolvableorCfnMessageTemplate.SystemEndpointAttributesProperty- See Also:
-
getName
The name of the task.- See Also:
-
getSystemEndpoint
The SystemEndpoint attribute.Returns union: either
IResolvableorCfnMessageTemplate.SystemEndpointAttributesProperty- See Also:
-
builder
-