CfnRouteServerPeerLogsMixin
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnRouteServerPeerLogsMixin(log_type, log_delivery)
Bases:
MixinSpecifies a BGP peer configuration for a route server endpoint.
A route server peer is a session between a route server endpoint and the device deployed in AWS (such as a firewall appliance or other network security function running on an EC2 instance).
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpeer.html
- CloudformationResource:
AWS::EC2::RouteServerPeer
- Mixin:
true
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview import aws_logs as logs from aws_cdk.mixins_preview.aws_ec2 import mixins as ec2_mixins # logs_delivery: logs.ILogsDelivery cfn_route_server_peer_logs_mixin = ec2_mixins.CfnRouteServerPeerLogsMixin("logType", logs_delivery)
Create a mixin to enable vended logs for
AWS::EC2::RouteServerPeer.- Parameters:
log_type (
str) – Type of logs that are getting vended.log_delivery (
ILogsDelivery) – Object in charge of setting up the delivery destination and delivery connection.
Methods
- apply_to(resource)
Apply vended logs configuration to the construct.
- Parameters:
resource (
IConstruct)- Return type:
- supports(construct)
Check if this mixin supports the given construct (has vendedLogs property).
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- EVENT_LOGS = <aws_cdk.mixins_preview.aws_ec2.mixins.CfnRouteServerPeerEventLogs object>
Static Methods
- classmethod is_mixin(x)
(experimental) Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental