CfnApplicationCloudWatchLoggingOptionV2Props
- class aws_cdk.aws_kinesisanalytics.CfnApplicationCloudWatchLoggingOptionV2Props(*, application_name, cloud_watch_logging_option)
Bases:
object
Properties for defining a
CfnApplicationCloudWatchLoggingOptionV2
.- Parameters:
application_name (
str
) – The name of the application.cloud_watch_logging_option (
Union
[IResolvable
,CloudWatchLoggingOptionProperty
,Dict
[str
,Any
]]) – Provides a description of Amazon CloudWatch logging options, including the log stream Amazon Resource Name (ARN).
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_kinesisanalytics as kinesisanalytics cfn_application_cloud_watch_logging_option_v2_props = kinesisanalytics.CfnApplicationCloudWatchLoggingOptionV2Props( application_name="applicationName", cloud_watch_logging_option=kinesisanalytics.CfnApplicationCloudWatchLoggingOptionV2.CloudWatchLoggingOptionProperty( log_stream_arn="logStreamArn" ) )
Attributes
- application_name
The name of the application.
- cloud_watch_logging_option
Provides a description of Amazon CloudWatch logging options, including the log stream Amazon Resource Name (ARN).