Interface CfnMacroMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMacroMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.946Z")
@Stability(Stable)
public interface CfnMacroMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnMacroPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cloudformation.*;
CfnMacroMixinProps cfnMacroMixinProps = CfnMacroMixinProps.builder()
.description("description")
.functionName("functionName")
.logGroupName("logGroupName")
.logRoleArn("logRoleArn")
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMacroMixinPropsstatic final classAn implementation forCfnMacroMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnMacroMixinProps.Builderbuilder()default StringA description of the macro.default StringThe Amazon Resource Name (ARN) of the underlying Lambda function that you want CloudFormation to invoke when the macro is run.default StringThe CloudWatch Logs group to which CloudFormation sends error logging information when invoking the macro's underlying Lambda function.default StringThe ARN of the role CloudFormation should assume when sending log entries to CloudWatch Logs .default StringgetName()The name of the macro.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description of the macro.- See Also:
-
getFunctionName
The Amazon Resource Name (ARN) of the underlying Lambda function that you want CloudFormation to invoke when the macro is run.- See Also:
-
getLogGroupName
The CloudWatch Logs group to which CloudFormation sends error logging information when invoking the macro's underlying Lambda function.This will be an existing CloudWatch Logs LogGroup. Neither CloudFormation or Lambda will create the group.
- See Also:
-
getLogRoleArn
The ARN of the role CloudFormation should assume when sending log entries to CloudWatch Logs .- See Also:
-
getName
The name of the macro.The name of the macro must be unique across all macros in the account.
- See Also:
-
builder
- Returns:
- a
CfnMacroMixinProps.BuilderofCfnMacroMixinProps
-