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-06T23:25:12.481Z")
@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
.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.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:
-
getTags
The tags that have been assigned to this delivery.- See Also:
-
builder
- Returns:
- a
CfnDeliveryProps.BuilderofCfnDeliveryProps
-