Class CfnDestination

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.101.0 (build b95fe5d)", date="2024-07-12T19:34:04.888Z") @Stability(Stable) public class CfnDestination extends CfnResource implements IInspectable
The AWS::Logs::Destination resource specifies a CloudWatch Logs destination.

A destination encapsulates a physical resource (such as an Amazon Kinesis data stream) and enables you to subscribe that resource to a stream of log events.

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.logs.*;
 CfnDestination cfnDestination = CfnDestination.Builder.create(this, "MyCfnDestination")
         .destinationName("destinationName")
         .roleArn("roleArn")
         .targetArn("targetArn")
         // the properties below are optional
         .destinationPolicy("destinationPolicy")
         .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

    • CfnDestination

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

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

      @Stability(Stable) public CfnDestination(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnDestinationProps 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.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The ARN of the CloudWatch Logs destination, such as arn:aws:logs:us-west-1:123456789012:destination:MyDestination .
    • getCfnProperties

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

      @Stability(Stable) @NotNull public String getDestinationName()
      The name of the destination.
    • setDestinationName

      @Stability(Stable) public void setDestinationName(@NotNull String value)
      The name of the destination.
    • getRoleArn

      @Stability(Stable) @NotNull public String getRoleArn()
      The ARN of an IAM role that permits CloudWatch Logs to send data to the specified AWS resource.
    • setRoleArn

      @Stability(Stable) public void setRoleArn(@NotNull String value)
      The ARN of an IAM role that permits CloudWatch Logs to send data to the specified AWS resource.
    • getTargetArn

      @Stability(Stable) @NotNull public String getTargetArn()
      The Amazon Resource Name (ARN) of the physical target where the log events are delivered (for example, a Kinesis stream).
    • setTargetArn

      @Stability(Stable) public void setTargetArn(@NotNull String value)
      The Amazon Resource Name (ARN) of the physical target where the log events are delivered (for example, a Kinesis stream).
    • getDestinationPolicy

      @Stability(Stable) @Nullable public String getDestinationPolicy()
      An IAM policy document that governs which AWS accounts can create subscription filters against this destination.
    • setDestinationPolicy

      @Stability(Stable) public void setDestinationPolicy(@Nullable String value)
      An IAM policy document that governs which AWS accounts can create subscription filters against this destination.