CfnInboundExternalLinkProps
- class aws_cdk.aws_rtbfabric.CfnInboundExternalLinkProps(*, gateway_id, link_log_settings, link_attributes=None, tags=None)
Bases:
objectProperties for defining a
CfnInboundExternalLink.- Parameters:
gateway_id (
str)link_log_settings (
Union[IResolvable,LinkLogSettingsProperty,Dict[str,Any]])link_attributes (
Union[IResolvable,LinkAttributesProperty,Dict[str,Any],None])tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Tags to assign to the Link.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_rtbfabric as rtbfabric cfn_inbound_external_link_props = rtbfabric.CfnInboundExternalLinkProps( gateway_id="gatewayId", link_log_settings=rtbfabric.CfnInboundExternalLink.LinkLogSettingsProperty( application_logs=rtbfabric.CfnInboundExternalLink.ApplicationLogsProperty( link_application_log_sampling=rtbfabric.CfnInboundExternalLink.LinkApplicationLogSamplingProperty( error_log=123, filter_log=123 ) ) ), # the properties below are optional link_attributes=rtbfabric.CfnInboundExternalLink.LinkAttributesProperty( customer_provided_id="customerProvidedId", responder_error_masking=[rtbfabric.CfnInboundExternalLink.ResponderErrorMaskingForHttpCodeProperty( action="action", http_code="httpCode", logging_types=["loggingTypes"], # the properties below are optional response_logging_percentage=123 )] ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- gateway_id
-
- Type:
see
- link_attributes
-
- Type:
see
- link_log_settings
-
- Type:
see
- tags
Tags to assign to the Link.