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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:03.671Z") @Stability(Stable) public class CfnMacro extends CfnResource implements IInspectable
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();
 

See Also:
  • 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 software.constructs.Construct scope, @NotNull String id, @NotNull CfnMacroProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). 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.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
    • 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.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      The name of the macro.
    • 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 .