Interface CfnDeliveryDestinationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryDestinationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:25:01.957Z")
@Stability(Stable)
public interface CfnDeliveryDestinationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDeliveryDestination
.
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.*; Object deliveryDestinationPolicy; CfnDeliveryDestinationProps cfnDeliveryDestinationProps = CfnDeliveryDestinationProps.builder() .name("name") // the properties below are optional .deliveryDestinationPolicy(deliveryDestinationPolicy) .destinationResourceArn("destinationResourceArn") .outputFormat("outputFormat") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDeliveryDestinationProps
static final class
An implementation forCfnDeliveryDestinationProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
A structure that contains information about one delivery destination policy.default String
The ARN of the AWS destination that this delivery destination represents.getName()
The name of this delivery destination.default String
The format of the logs that are sent to this delivery destination.getTags()
The tags that have been assigned to this delivery destination.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of this delivery destination.- See Also:
-
getDeliveryDestinationPolicy
A structure that contains information about one delivery destination policy.- See Also:
-
getDestinationResourceArn
The ARN of the AWS destination that this delivery destination represents.That AWS destination can be a log group in CloudWatch Logs, an Amazon S3 bucket, or a delivery stream in Firehose.
- See Also:
-
getOutputFormat
The format of the logs that are sent to this delivery destination.- See Also:
-
getTags
The tags that have been assigned to this delivery destination.- See Also:
-
builder
-