java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:41.514Z") @Stability(Stable) public class CfnMacro extends CfnResource implements IInspectable
A CloudFormation AWS::CloudFormation::Macro.

The AWS::CloudFormation::Macro resource is a CloudFormation resource type that creates a CloudFormation macro to perform custom processing on CloudFormation templates. For more information, see Using AWS CloudFormation macros to perform custom processing on templates .

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.cloudformation.*;
 CfnMacro cfnMacro = CfnMacro.Builder.create(this, "MyCfnMacro")
         .functionName("functionName")
         .name("name")
         // the properties below are optional
         .description("description")
         .logGroupName("logGroupName")
         .logRoleArn("logRoleArn")
         .build();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnMacro

      protected CfnMacro(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnMacro

      protected CfnMacro(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnMacro

      @Stability(Stable) public CfnMacro(@NotNull Construct scope, @NotNull String id, @NotNull CfnMacroProps props)
      Create a new AWS::CloudFormation::Macro.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getFunctionName

      @Stability(Stable) @NotNull public String getFunctionName()
      The Amazon Resource Name (ARN) of the underlying AWS Lambda function that you want AWS CloudFormation to invoke when the macro is run.
    • setFunctionName

      @Stability(Stable) public void setFunctionName(@NotNull String value)
      The Amazon Resource Name (ARN) of the underlying AWS Lambda function that you want AWS CloudFormation to invoke when the macro is run.
    • getName

      @Stability(Stable) @NotNull public String getName()
      The name of the macro.

      The name of the macro must be unique across all macros in the account.

    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      The name of the macro.

      The name of the macro must be unique across all macros in the account.

    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      A description of the macro.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      A description of the macro.
    • getLogGroupName

      @Stability(Stable) @Nullable public String getLogGroupName()
      The CloudWatch Logs group to which AWS CloudFormation sends error logging information when invoking the macro's underlying AWS Lambda function.
    • setLogGroupName

      @Stability(Stable) public void setLogGroupName(@Nullable String value)
      The CloudWatch Logs group to which AWS CloudFormation sends error logging information when invoking the macro's underlying AWS Lambda function.
    • getLogRoleArn

      @Stability(Stable) @Nullable public String getLogRoleArn()
      The ARN of the role AWS CloudFormation should assume when sending log entries to CloudWatch Logs .
    • setLogRoleArn

      @Stability(Stable) public void setLogRoleArn(@Nullable String value)
      The ARN of the role AWS CloudFormation should assume when sending log entries to CloudWatch Logs .