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 ClassesModifier and TypeClassDescriptionstatic final class
(experimental) A fluent builder forS3LogDestination
.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
ConstructorsModifierConstructorDescriptionS3LogDestination
(S3LogDestinationProps parameters) protected
S3LogDestination
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
S3LogDestination
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescription(experimental) Bind the log destination to the pipe.void
(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
- Parameters:
parameters
- This parameter is required.
-
-
Method Details
-
bind
(experimental) Bind the log destination to the pipe.- Specified by:
bind
in interfaceILogDestination
- Parameters:
_pipe
- This parameter is required.
-
grantPush
(experimental) Grant the pipe role to push to the log destination.- Specified by:
grantPush
in interfaceILogDestination
- Parameters:
pipeRole
- This parameter is required.
-