Interface CfnDeliveryProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:10.762Z")
@Stability(Stable)
public interface CfnDeliveryProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDelivery.
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.*;
CfnDeliveryProps cfnDeliveryProps = CfnDeliveryProps.builder()
.deliveryDestinationArn("deliveryDestinationArn")
.deliverySourceName("deliverySourceName")
// the properties below are optional
.fieldDelimiter("fieldDelimiter")
.recordFields(List.of("recordFields"))
.s3EnableHiveCompatiblePath(false)
.s3SuffixPath("s3SuffixPath")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeliveryPropsstatic final classAn implementation forCfnDeliveryProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDeliveryProps.Builderbuilder()The ARN of the delivery destination that is associated with this delivery.The name of the delivery source that is associated with this delivery.default StringThe field delimiter that is used between record fields when the final output format of a delivery is inPlain,W3C, orRawformat.The record fields used in this delivery.default ObjectThis parameter causes the S3 objects that contain delivered logs to use a prefix structure that allows for integration with Apache Hive.default StringThis string allows re-configuring the S3 object prefix to contain either static or variable sections.getTags()The tags that have been assigned to this delivery.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeliveryDestinationArn
The ARN of the delivery destination that is associated with this delivery.- See Also:
-
getDeliverySourceName
The name of the delivery source that is associated with this delivery.- See Also:
-
getFieldDelimiter
The field delimiter that is used between record fields when the final output format of a delivery is inPlain,W3C, orRawformat.- See Also:
-
getRecordFields
The record fields used in this delivery.- See Also:
-
getS3EnableHiveCompatiblePath
This parameter causes the S3 objects that contain delivered logs to use a prefix structure that allows for integration with Apache Hive.- See Also:
-
getS3SuffixPath
This string allows re-configuring the S3 object prefix to contain either static or variable sections.The valid variables to use in the suffix path will vary by each log source. See ConfigurationTemplate$allowedSuffixPathFields for more info on what values are supported in the suffix path for each log source.
- See Also:
-
getTags
The tags that have been assigned to this delivery.- See Also:
-
builder
- Returns:
- a
CfnDeliveryProps.BuilderofCfnDeliveryProps
-