Class S3LogDestination

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.pipes.alpha.S3LogDestination
All Implemented Interfaces:
ILogDestination, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.106.0 (build e852934)", date="2025-03-04T22:57:35.741Z") @Stability(Experimental) public class S3LogDestination extends software.amazon.jsii.JsiiObject implements ILogDestination
(experimental) S3 bucket for delivery of pipe logs.

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.pipes.alpha.*;
 import software.amazon.awscdk.services.s3.*;
 Bucket bucket;
 S3LogDestination s3LogDestination = S3LogDestination.Builder.create()
         .bucket(bucket)
         // the properties below are optional
         .bucketOwner("bucketOwner")
         .outputFormat(S3OutputFormat.PLAIN)
         .prefix("prefix")
         .build();
 
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static final class 
    (experimental) A fluent builder for S3LogDestination.

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode

    Nested classes/interfaces inherited from interface software.amazon.awscdk.services.pipes.alpha.ILogDestination

    ILogDestination.Jsii$Default, ILogDestination.Jsii$Proxy
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
     
     
    protected
    S3LogDestination(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    S3LogDestination(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    bind(IPipe _pipe)
    (experimental) Bind the log destination to the pipe.
    void
    grantPush(IRole pipeRole)
    (experimental) Grant the pipe role to push to the log destination.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Constructor Details

    • S3LogDestination

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

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

      @Stability(Experimental) public S3LogDestination(@NotNull S3LogDestinationProps parameters)
      Parameters:
      parameters - This parameter is required.
  • Method Details

    • bind

      @Stability(Experimental) @NotNull public LogDestinationConfig bind(@NotNull IPipe _pipe)
      (experimental) Bind the log destination to the pipe.

      Specified by:
      bind in interface ILogDestination
      Parameters:
      _pipe - This parameter is required.
    • grantPush

      @Stability(Experimental) public void grantPush(@NotNull IRole pipeRole)
      (experimental) Grant the pipe role to push to the log destination.

      Specified by:
      grantPush in interface ILogDestination
      Parameters:
      pipeRole - This parameter is required.