Class CfnSink

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:00.528Z") @Stability(Stable) public class CfnSink extends CfnResource implements IInspectable
A CloudFormation AWS::Oam::Sink.

Creates or updates a sink in the current account, so that it can be used as a monitoring account in CloudWatch cross-account observability. A sink is a resource that represents an attachment point in a monitoring account, which source accounts can link to to be able to send observability data.

After you create a sink, you must create a sink policy that allows source accounts to attach to it. For more information, see PutSinkPolicy .

An account can have one sink.

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.oam.*;
 Object policy;
 CfnSink cfnSink = CfnSink.Builder.create(this, "MyCfnSink")
         .name("name")
         // the properties below are optional
         .policy(policy)
         .tags(Map.of(
                 "tagsKey", "tags"))
         .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

    • CfnSink

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

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

      @Stability(Stable) public CfnSink(@NotNull Construct scope, @NotNull String id, @NotNull CfnSinkProps props)
      Create a new AWS::Oam::Sink.

      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.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The ARN of the sink.

      For example, arn:aws:oam:us-west-1:111111111111:sink:abcd1234-a123-456a-a12b-a123b456c789

    • getCfnProperties

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

      @Stability(Stable) @NotNull public TagManager getTags()
      An array of key-value pairs to apply to the sink.

      For more information, see Tag .

    • getName

      @Stability(Stable) @NotNull public String getName()
      A name for the sink.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      A name for the sink.
    • getPolicy

      @Stability(Stable) @NotNull public Object getPolicy()
      The IAM policy that grants permissions to source accounts to link to this sink.

      The policy can grant permission in the following ways:

      • Include organization IDs or organization paths to permit all accounts in an organization
      • Include account IDs to permit the specified accounts
    • setPolicy

      @Stability(Stable) public void setPolicy(@NotNull Object value)
      The IAM policy that grants permissions to source accounts to link to this sink.

      The policy can grant permission in the following ways:

      • Include organization IDs or organization paths to permit all accounts in an organization
      • Include account IDs to permit the specified accounts