CfnApplicationCloudWatchLoggingOptionProps
- class aws_cdk.aws_kinesisanalyticsv2.CfnApplicationCloudWatchLoggingOptionProps(*, application_name, cloud_watch_logging_option)
- Bases: - object- Properties for defining a - CfnApplicationCloudWatchLoggingOption.- 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_kinesisanalyticsv2 as kinesisanalyticsv2 cfn_application_cloud_watch_logging_option_props = kinesisanalyticsv2.CfnApplicationCloudWatchLoggingOptionProps( application_name="applicationName", cloud_watch_logging_option=kinesisanalyticsv2.CfnApplicationCloudWatchLoggingOption.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).