Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateApplicationRequest

import type { UpdateApplicationRequest } from "https://aws-api.deno.dev/v0.4/services/kinesisanalyticsv2.ts?docs=full";
interface UpdateApplicationRequest {
ApplicationConfigurationUpdate?: ApplicationConfigurationUpdate | null;
ApplicationName: string;
CloudWatchLoggingOptionUpdates?: CloudWatchLoggingOptionUpdate[] | null;
ConditionalToken?: string | null;
CurrentApplicationVersionId?: number | null;
RunConfigurationUpdate?: RunConfigurationUpdate | null;
ServiceExecutionRoleUpdate?: string | null;
}

§Properties

§
ApplicationConfigurationUpdate?: ApplicationConfigurationUpdate | null
[src]

Describes application configuration updates.

§
ApplicationName: string
[src]

The name of the application to update.

§
CloudWatchLoggingOptionUpdates?: CloudWatchLoggingOptionUpdate[] | null
[src]

Describes application Amazon CloudWatch logging option updates. You can only update existing CloudWatch logging options with this action. To add a new CloudWatch logging option, use "AddApplicationCloudWatchLoggingOption".

§
ConditionalToken?: string | null
[src]

A value you use to implement strong concurrency for application updates. You must provide the CurrentApplicationVersionId or the ConditionalToken. You get the application's current ConditionalToken using "DescribeApplication". For better concurrency support, use the ConditionalToken parameter instead of CurrentApplicationVersionId.

§
CurrentApplicationVersionId?: number | null
[src]

The current application version ID. You must provide the CurrentApplicationVersionId or the ConditionalToken.You can retrieve the application version ID using "DescribeApplication". For better concurrency support, use the ConditionalToken parameter instead of CurrentApplicationVersionId.

§
RunConfigurationUpdate?: RunConfigurationUpdate | null
[src]

Describes updates to the application's starting parameters.

§
ServiceExecutionRoleUpdate?: string | null
[src]

Describes updates to the service execution role.