kinesisanalyticsv2

package
v0.24.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 22, 2020 License: Apache-2.0 Imports: 8 Imported by: 8

Documentation

Overview

Package kinesisanalyticsv2 provides the client and types for making API requests to Kinesis Analytics V2.

Amazon Kinesis Data Analytics is a fully managed service that you can use to process and analyze streaming data using SQL or Java. The service enables you to quickly author and run SQL or Java code against streaming sources to perform time series analytics, feed real-time dashboards, and create real-time metrics.

See https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23 for more information on this service.

See kinesisanalyticsv2 package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/kinesisanalyticsv2/

Using the Client

To use Kinesis Analytics V2 with the SDK use the New function to create a new service client. With that client you can make API requests to the service. These clients are safe to use concurrently.

See the SDK's documentation for more information on how to use the SDK. https://docs.aws.amazon.com/sdk-for-go/api/

See aws.Config documentation for more information on configuring SDK clients. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the Kinesis Analytics V2 client for more information on creating client for this service. https://docs.aws.amazon.com/sdk-for-go/api/service/kinesisanalyticsv2/#New

Index

Constants

View Source
const (
	ServiceName = "Kinesis Analytics V2" // Service's name
	ServiceID   = "KinesisAnalyticsV2"   // Service's identifier
	EndpointsID = "kinesisanalytics"     // Service's Endpoint identifier
)
View Source
const (

	// ErrCodeCodeValidationException for service response error code
	// "CodeValidationException".
	//
	// The user-provided application code (query) is not valid. This can be a simple
	// syntax error.
	ErrCodeCodeValidationException = "CodeValidationException"

	// ErrCodeConcurrentModificationException for service response error code
	// "ConcurrentModificationException".
	//
	// Exception thrown as a result of concurrent modifications to an application.
	// This error can be the result of attempting to modify an application without
	// using the current application ID.
	ErrCodeConcurrentModificationException = "ConcurrentModificationException"

	// ErrCodeInvalidApplicationConfigurationException for service response error code
	// "InvalidApplicationConfigurationException".
	//
	// The user-provided application configuration is not valid.
	ErrCodeInvalidApplicationConfigurationException = "InvalidApplicationConfigurationException"

	// ErrCodeInvalidArgumentException for service response error code
	// "InvalidArgumentException".
	//
	// The specified input parameter value is not valid.
	ErrCodeInvalidArgumentException = "InvalidArgumentException"

	// ErrCodeInvalidRequestException for service response error code
	// "InvalidRequestException".
	//
	// The request JSON is not valid for the operation.
	ErrCodeInvalidRequestException = "InvalidRequestException"

	// ErrCodeLimitExceededException for service response error code
	// "LimitExceededException".
	//
	// The number of allowed resources has been exceeded.
	ErrCodeLimitExceededException = "LimitExceededException"

	// ErrCodeResourceInUseException for service response error code
	// "ResourceInUseException".
	//
	// The application is not available for this operation.
	ErrCodeResourceInUseException = "ResourceInUseException"

	// ErrCodeResourceNotFoundException for service response error code
	// "ResourceNotFoundException".
	//
	// Specified application can't be found.
	ErrCodeResourceNotFoundException = "ResourceNotFoundException"

	// ErrCodeResourceProvisionedThroughputExceededException for service response error code
	// "ResourceProvisionedThroughputExceededException".
	//
	// Discovery failed to get a record from the streaming source because of the
	// Amazon Kinesis Streams ProvisionedThroughputExceededException. For more information,
	// see GetRecords (http://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetRecords.html)
	// in the Amazon Kinesis Streams API Reference.
	ErrCodeResourceProvisionedThroughputExceededException = "ResourceProvisionedThroughputExceededException"

	// ErrCodeServiceUnavailableException for service response error code
	// "ServiceUnavailableException".
	//
	// The service cannot complete the request.
	ErrCodeServiceUnavailableException = "ServiceUnavailableException"

	// ErrCodeTooManyTagsException for service response error code
	// "TooManyTagsException".
	//
	// Application created with too many tags, or too many tags added to an application.
	// Note that the maximum number of application tags includes system tags. The
	// maximum number of user-defined application tags is 50.
	ErrCodeTooManyTagsException = "TooManyTagsException"

	// ErrCodeUnableToDetectSchemaException for service response error code
	// "UnableToDetectSchemaException".
	//
	// The data format is not valid. Amazon Kinesis Data Analytics cannot detect
	// the schema for the given streaming source.
	ErrCodeUnableToDetectSchemaException = "UnableToDetectSchemaException"

	// ErrCodeUnsupportedOperationException for service response error code
	// "UnsupportedOperationException".
	//
	// The request was rejected because a specified parameter is not supported or
	// a specified resource is not valid for this operation.
	ErrCodeUnsupportedOperationException = "UnsupportedOperationException"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type AddApplicationCloudWatchLoggingOptionInput

type AddApplicationCloudWatchLoggingOptionInput struct {

	// The Kinesis Data Analytics application name.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// Provides the Amazon CloudWatch log stream Amazon Resource Name (ARN).
	//
	// CloudWatchLoggingOption is a required field
	CloudWatchLoggingOption *CloudWatchLoggingOption `type:"structure" required:"true"`

	// The version ID of the Kinesis Data Analytics application. You can retrieve
	// the application version ID using DescribeApplication.
	//
	// CurrentApplicationVersionId is a required field
	CurrentApplicationVersionId *int64 `min:"1" type:"long" required:"true"`
	// contains filtered or unexported fields
}

func (AddApplicationCloudWatchLoggingOptionInput) String

String returns the string representation

func (*AddApplicationCloudWatchLoggingOptionInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type AddApplicationCloudWatchLoggingOptionOutput

type AddApplicationCloudWatchLoggingOptionOutput struct {

	// The application's ARN.
	ApplicationARN *string `min:"1" type:"string"`

	// The new version ID of the Kinesis Data Analytics application. Kinesis Data
	// Analytics updates the ApplicationVersionId each time you change the CloudWatch
	// logging options.
	ApplicationVersionId *int64 `min:"1" type:"long"`

	// The descriptions of the current CloudWatch logging options for the Kinesis
	// Data Analytics application.
	CloudWatchLoggingOptionDescriptions []CloudWatchLoggingOptionDescription `type:"list"`
	// contains filtered or unexported fields
}

func (AddApplicationCloudWatchLoggingOptionOutput) String

String returns the string representation

type AddApplicationCloudWatchLoggingOptionRequest

AddApplicationCloudWatchLoggingOptionRequest is the request type for the AddApplicationCloudWatchLoggingOption API operation.

func (AddApplicationCloudWatchLoggingOptionRequest) Send

Send marshals and sends the AddApplicationCloudWatchLoggingOption API request.

type AddApplicationCloudWatchLoggingOptionResponse added in v0.9.0

type AddApplicationCloudWatchLoggingOptionResponse struct {
	*AddApplicationCloudWatchLoggingOptionOutput
	// contains filtered or unexported fields
}

AddApplicationCloudWatchLoggingOptionResponse is the response type for the AddApplicationCloudWatchLoggingOption API operation.

func (*AddApplicationCloudWatchLoggingOptionResponse) SDKResponseMetdata added in v0.9.0

SDKResponseMetdata returns the response metadata for the AddApplicationCloudWatchLoggingOption request.

type AddApplicationInputInput

type AddApplicationInputInput struct {

	// The name of your existing application to which you want to add the streaming
	// source.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The current version of your application. You can use the DescribeApplication
	// operation to find the current application version.
	//
	// CurrentApplicationVersionId is a required field
	CurrentApplicationVersionId *int64 `min:"1" type:"long" required:"true"`

	// The Input to add.
	//
	// Input is a required field
	Input *Input `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (AddApplicationInputInput) String

func (s AddApplicationInputInput) String() string

String returns the string representation

func (*AddApplicationInputInput) Validate

func (s *AddApplicationInputInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AddApplicationInputOutput

type AddApplicationInputOutput struct {

	// The Amazon Resource Name (ARN) of the application.
	ApplicationARN *string `min:"1" type:"string"`

	// Provides the current application version.
	ApplicationVersionId *int64 `min:"1" type:"long"`

	// Describes the application input configuration.
	InputDescriptions []InputDescription `type:"list"`
	// contains filtered or unexported fields
}

func (AddApplicationInputOutput) String

func (s AddApplicationInputOutput) String() string

String returns the string representation

type AddApplicationInputProcessingConfigurationInput

type AddApplicationInputProcessingConfigurationInput struct {

	// The name of the application to which you want to add the input processing
	// configuration.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The version of the application to which you want to add the input processing
	// configuration. You can use the DescribeApplication operation to get the current
	// application version. If the version specified is not the current version,
	// the ConcurrentModificationException is returned.
	//
	// CurrentApplicationVersionId is a required field
	CurrentApplicationVersionId *int64 `min:"1" type:"long" required:"true"`

	// The ID of the input configuration to add the input processing configuration
	// to. You can get a list of the input IDs for an application using the DescribeApplication
	// operation.
	//
	// InputId is a required field
	InputId *string `min:"1" type:"string" required:"true"`

	// The InputProcessingConfiguration to add to the application.
	//
	// InputProcessingConfiguration is a required field
	InputProcessingConfiguration *InputProcessingConfiguration `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (AddApplicationInputProcessingConfigurationInput) String

String returns the string representation

func (*AddApplicationInputProcessingConfigurationInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type AddApplicationInputProcessingConfigurationOutput

type AddApplicationInputProcessingConfigurationOutput struct {

	// The Amazon Resource Name (ARN) of the application.
	ApplicationARN *string `min:"1" type:"string"`

	// Provides the current application version.
	ApplicationVersionId *int64 `min:"1" type:"long"`

	// The input ID that is associated with the application input. This is the ID
	// that Amazon Kinesis Data Analytics assigns to each input configuration that
	// you add to your application.
	InputId *string `min:"1" type:"string"`

	// The description of the preprocessor that executes on records in this input
	// before the application's code is run.
	InputProcessingConfigurationDescription *InputProcessingConfigurationDescription `type:"structure"`
	// contains filtered or unexported fields
}

func (AddApplicationInputProcessingConfigurationOutput) String

String returns the string representation

type AddApplicationInputProcessingConfigurationRequest

AddApplicationInputProcessingConfigurationRequest is the request type for the AddApplicationInputProcessingConfiguration API operation.

func (AddApplicationInputProcessingConfigurationRequest) Send

Send marshals and sends the AddApplicationInputProcessingConfiguration API request.

type AddApplicationInputProcessingConfigurationResponse added in v0.9.0

type AddApplicationInputProcessingConfigurationResponse struct {
	*AddApplicationInputProcessingConfigurationOutput
	// contains filtered or unexported fields
}

AddApplicationInputProcessingConfigurationResponse is the response type for the AddApplicationInputProcessingConfiguration API operation.

func (*AddApplicationInputProcessingConfigurationResponse) SDKResponseMetdata added in v0.9.0

SDKResponseMetdata returns the response metadata for the AddApplicationInputProcessingConfiguration request.

type AddApplicationInputRequest

type AddApplicationInputRequest struct {
	*aws.Request
	Input *AddApplicationInputInput
	Copy  func(*AddApplicationInputInput) AddApplicationInputRequest
}

AddApplicationInputRequest is the request type for the AddApplicationInput API operation.

func (AddApplicationInputRequest) Send

Send marshals and sends the AddApplicationInput API request.

type AddApplicationInputResponse added in v0.9.0

type AddApplicationInputResponse struct {
	*AddApplicationInputOutput
	// contains filtered or unexported fields
}

AddApplicationInputResponse is the response type for the AddApplicationInput API operation.

func (*AddApplicationInputResponse) SDKResponseMetdata added in v0.9.0

func (r *AddApplicationInputResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the AddApplicationInput request.

type AddApplicationOutputInput

type AddApplicationOutputInput struct {

	// The name of the application to which you want to add the output configuration.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The version of the application to which you want to add the output configuration.
	// You can use the DescribeApplication operation to get the current application
	// version. If the version specified is not the current version, the ConcurrentModificationException
	// is returned.
	//
	// CurrentApplicationVersionId is a required field
	CurrentApplicationVersionId *int64 `min:"1" type:"long" required:"true"`

	// An array of objects, each describing one output configuration. In the output
	// configuration, you specify the name of an in-application stream, a destination
	// (that is, a Kinesis data stream, a Kinesis Data Firehose delivery stream,
	// or an AWS Lambda function), and record the formation to use when writing
	// to the destination.
	//
	// Output is a required field
	Output *Output `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (AddApplicationOutputInput) String

func (s AddApplicationOutputInput) String() string

String returns the string representation

func (*AddApplicationOutputInput) Validate

func (s *AddApplicationOutputInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AddApplicationOutputOutput

type AddApplicationOutputOutput struct {

	// The application Amazon Resource Name (ARN).
	ApplicationARN *string `min:"1" type:"string"`

	// The updated application version ID. Kinesis Data Analytics increments this
	// ID when the application is updated.
	ApplicationVersionId *int64 `min:"1" type:"long"`

	// Describes the application output configuration. For more information, see
	// Configuring Application Output (https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html).
	OutputDescriptions []OutputDescription `type:"list"`
	// contains filtered or unexported fields
}

func (AddApplicationOutputOutput) String

String returns the string representation

type AddApplicationOutputRequest

type AddApplicationOutputRequest struct {
	*aws.Request
	Input *AddApplicationOutputInput
	Copy  func(*AddApplicationOutputInput) AddApplicationOutputRequest
}

AddApplicationOutputRequest is the request type for the AddApplicationOutput API operation.

func (AddApplicationOutputRequest) Send

Send marshals and sends the AddApplicationOutput API request.

type AddApplicationOutputResponse added in v0.9.0

type AddApplicationOutputResponse struct {
	*AddApplicationOutputOutput
	// contains filtered or unexported fields
}

AddApplicationOutputResponse is the response type for the AddApplicationOutput API operation.

func (*AddApplicationOutputResponse) SDKResponseMetdata added in v0.9.0

func (r *AddApplicationOutputResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the AddApplicationOutput request.

type AddApplicationReferenceDataSourceInput

type AddApplicationReferenceDataSourceInput struct {

	// The name of an existing application.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The version of the application for which you are adding the reference data
	// source. You can use the DescribeApplication operation to get the current
	// application version. If the version specified is not the current version,
	// the ConcurrentModificationException is returned.
	//
	// CurrentApplicationVersionId is a required field
	CurrentApplicationVersionId *int64 `min:"1" type:"long" required:"true"`

	// The reference data source can be an object in your Amazon S3 bucket. Kinesis
	// Data Analytics reads the object and copies the data into the in-application
	// table that is created. You provide an S3 bucket, object key name, and the
	// resulting in-application table that is created.
	//
	// ReferenceDataSource is a required field
	ReferenceDataSource *ReferenceDataSource `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (AddApplicationReferenceDataSourceInput) String

String returns the string representation

func (*AddApplicationReferenceDataSourceInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type AddApplicationReferenceDataSourceOutput

type AddApplicationReferenceDataSourceOutput struct {

	// The application Amazon Resource Name (ARN).
	ApplicationARN *string `min:"1" type:"string"`

	// The updated application version ID. Amazon Kinesis Data Analytics increments
	// this ID when the application is updated.
	ApplicationVersionId *int64 `min:"1" type:"long"`

	// Describes reference data sources configured for the application.
	ReferenceDataSourceDescriptions []ReferenceDataSourceDescription `type:"list"`
	// contains filtered or unexported fields
}

func (AddApplicationReferenceDataSourceOutput) String

String returns the string representation

type AddApplicationReferenceDataSourceRequest

AddApplicationReferenceDataSourceRequest is the request type for the AddApplicationReferenceDataSource API operation.

func (AddApplicationReferenceDataSourceRequest) Send

Send marshals and sends the AddApplicationReferenceDataSource API request.

type AddApplicationReferenceDataSourceResponse added in v0.9.0

type AddApplicationReferenceDataSourceResponse struct {
	*AddApplicationReferenceDataSourceOutput
	// contains filtered or unexported fields
}

AddApplicationReferenceDataSourceResponse is the response type for the AddApplicationReferenceDataSource API operation.

func (*AddApplicationReferenceDataSourceResponse) SDKResponseMetdata added in v0.9.0

func (r *AddApplicationReferenceDataSourceResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the AddApplicationReferenceDataSource request.

type AddApplicationVpcConfigurationInput added in v0.18.0

type AddApplicationVpcConfigurationInput struct {

	// The name of an existing application.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The version of the application to which you want to add the input processing
	// configuration. You can use the DescribeApplication operation to get the current
	// application version. If the version specified is not the current version,
	// the ConcurrentModificationException is returned.
	//
	// CurrentApplicationVersionId is a required field
	CurrentApplicationVersionId *int64 `min:"1" type:"long" required:"true"`

	// Description of the VPC to add to the application.
	//
	// VpcConfiguration is a required field
	VpcConfiguration *VpcConfiguration `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (AddApplicationVpcConfigurationInput) String added in v0.18.0

String returns the string representation

func (*AddApplicationVpcConfigurationInput) Validate added in v0.18.0

Validate inspects the fields of the type to determine if they are valid.

type AddApplicationVpcConfigurationOutput added in v0.18.0

type AddApplicationVpcConfigurationOutput struct {

	// The ARN of the application.
	ApplicationARN *string `min:"1" type:"string"`

	// Provides the current application version. Kinesis Data Analytics updates
	// the ApplicationVersionId each time you update the application.
	ApplicationVersionId *int64 `min:"1" type:"long"`

	// The parameters of the new VPC configuration.
	VpcConfigurationDescription *VpcConfigurationDescription `type:"structure"`
	// contains filtered or unexported fields
}

func (AddApplicationVpcConfigurationOutput) String added in v0.18.0

String returns the string representation

type AddApplicationVpcConfigurationRequest added in v0.18.0

type AddApplicationVpcConfigurationRequest struct {
	*aws.Request
	Input *AddApplicationVpcConfigurationInput
	Copy  func(*AddApplicationVpcConfigurationInput) AddApplicationVpcConfigurationRequest
}

AddApplicationVpcConfigurationRequest is the request type for the AddApplicationVpcConfiguration API operation.

func (AddApplicationVpcConfigurationRequest) Send added in v0.18.0

Send marshals and sends the AddApplicationVpcConfiguration API request.

type AddApplicationVpcConfigurationResponse added in v0.18.0

type AddApplicationVpcConfigurationResponse struct {
	*AddApplicationVpcConfigurationOutput
	// contains filtered or unexported fields
}

AddApplicationVpcConfigurationResponse is the response type for the AddApplicationVpcConfiguration API operation.

func (*AddApplicationVpcConfigurationResponse) SDKResponseMetdata added in v0.18.0

func (r *AddApplicationVpcConfigurationResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the AddApplicationVpcConfiguration request.

type ApplicationCodeConfiguration

type ApplicationCodeConfiguration struct {

	// The location and type of the application code.
	CodeContent *CodeContent `type:"structure"`

	// Specifies whether the code content is in text or zip format.
	//
	// CodeContentType is a required field
	CodeContentType CodeContentType `type:"string" required:"true" enum:"true"`
	// contains filtered or unexported fields
}

Describes code configuration for a Java-based Kinesis Data Analytics application.

func (ApplicationCodeConfiguration) String

String returns the string representation

func (*ApplicationCodeConfiguration) Validate

func (s *ApplicationCodeConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ApplicationCodeConfigurationDescription

type ApplicationCodeConfigurationDescription struct {

	// Describes details about the location and format of the application code.
	CodeContentDescription *CodeContentDescription `type:"structure"`

	// Specifies whether the code content is in text or zip format.
	//
	// CodeContentType is a required field
	CodeContentType CodeContentType `type:"string" required:"true" enum:"true"`
	// contains filtered or unexported fields
}

Describes code configuration for a Java-based Kinesis Data Analytics application.

func (ApplicationCodeConfigurationDescription) String

String returns the string representation

type ApplicationCodeConfigurationUpdate

type ApplicationCodeConfigurationUpdate struct {

	// Describes updates to the code content type.
	CodeContentTypeUpdate CodeContentType `type:"string" enum:"true"`

	// Describes updates to the code content of an application.
	CodeContentUpdate *CodeContentUpdate `type:"structure"`
	// contains filtered or unexported fields
}

Describes updates to a Java-based Amazon Kinesis Data Analytics application.

func (ApplicationCodeConfigurationUpdate) String

String returns the string representation

func (*ApplicationCodeConfigurationUpdate) Validate

Validate inspects the fields of the type to determine if they are valid.

type ApplicationConfiguration

type ApplicationConfiguration struct {

	// The code location and type parameters for a Java-based Kinesis Data Analytics
	// application.
	//
	// ApplicationCodeConfiguration is a required field
	ApplicationCodeConfiguration *ApplicationCodeConfiguration `type:"structure" required:"true"`

	// Describes whether snapshots are enabled for a Java-based Kinesis Data Analytics
	// application.
	ApplicationSnapshotConfiguration *ApplicationSnapshotConfiguration `type:"structure"`

	// Describes execution properties for a Java-based Kinesis Data Analytics application.
	EnvironmentProperties *EnvironmentProperties `type:"structure"`

	// The creation and update parameters for a Java-based Kinesis Data Analytics
	// application.
	FlinkApplicationConfiguration *FlinkApplicationConfiguration `type:"structure"`

	// The creation and update parameters for an SQL-based Kinesis Data Analytics
	// application.
	SqlApplicationConfiguration *SqlApplicationConfiguration `type:"structure"`

	// The array of descriptions of VPC configurations available to the application.
	VpcConfigurations []VpcConfiguration `type:"list"`
	// contains filtered or unexported fields
}

Specifies the creation parameters for an Amazon Kinesis Data Analytics application.

func (ApplicationConfiguration) String

func (s ApplicationConfiguration) String() string

String returns the string representation

func (*ApplicationConfiguration) Validate

func (s *ApplicationConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ApplicationConfigurationDescription

type ApplicationConfigurationDescription struct {

	// The details about the application code for a Java-based Kinesis Data Analytics
	// application.
	ApplicationCodeConfigurationDescription *ApplicationCodeConfigurationDescription `type:"structure"`

	// Describes whether snapshots are enabled for a Java-based Kinesis Data Analytics
	// application.
	ApplicationSnapshotConfigurationDescription *ApplicationSnapshotConfigurationDescription `type:"structure"`

	// Describes execution properties for a Java-based Kinesis Data Analytics application.
	EnvironmentPropertyDescriptions *EnvironmentPropertyDescriptions `type:"structure"`

	// The details about a Java-based Kinesis Data Analytics application.
	FlinkApplicationConfigurationDescription *FlinkApplicationConfigurationDescription `type:"structure"`

	// The details about the starting properties for a Kinesis Data Analytics application.
	RunConfigurationDescription *RunConfigurationDescription `type:"structure"`

	// The details about inputs, outputs, and reference data sources for an SQL-based
	// Kinesis Data Analytics application.
	SqlApplicationConfigurationDescription *SqlApplicationConfigurationDescription `type:"structure"`

	// The array of descriptions of VPC configurations available to the application.
	VpcConfigurationDescriptions []VpcConfigurationDescription `type:"list"`
	// contains filtered or unexported fields
}

Describes details about the application code and starting parameters for an Amazon Kinesis Data Analytics application.

func (ApplicationConfigurationDescription) String

String returns the string representation

type ApplicationConfigurationUpdate

type ApplicationConfigurationUpdate struct {

	// Describes updates to a Java-based Kinesis Data Analytics application's code
	// configuration.
	ApplicationCodeConfigurationUpdate *ApplicationCodeConfigurationUpdate `type:"structure"`

	// Describes whether snapshots are enabled for a Java-based Kinesis Data Analytics
	// application.
	ApplicationSnapshotConfigurationUpdate *ApplicationSnapshotConfigurationUpdate `type:"structure"`

	// Describes updates to the environment properties for a Java-based Kinesis
	// Data Analytics application.
	EnvironmentPropertyUpdates *EnvironmentPropertyUpdates `type:"structure"`

	// Describes updates to a Java-based Kinesis Data Analytics application's configuration.
	FlinkApplicationConfigurationUpdate *FlinkApplicationConfigurationUpdate `type:"structure"`

	// Describes updates to an SQL-based Kinesis Data Analytics application's configuration.
	SqlApplicationConfigurationUpdate *SqlApplicationConfigurationUpdate `type:"structure"`

	// Updates to the array of descriptions of VPC configurations available to the
	// application.
	VpcConfigurationUpdates []VpcConfigurationUpdate `type:"list"`
	// contains filtered or unexported fields
}

Describes updates to an application's configuration.

func (ApplicationConfigurationUpdate) String

String returns the string representation

func (*ApplicationConfigurationUpdate) Validate

func (s *ApplicationConfigurationUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ApplicationDetail

type ApplicationDetail struct {

	// The ARN of the application.
	//
	// ApplicationARN is a required field
	ApplicationARN *string `min:"1" type:"string" required:"true"`

	// Provides details about the application's SQL or Java code and starting parameters.
	ApplicationConfigurationDescription *ApplicationConfigurationDescription `type:"structure"`

	// The description of the application.
	ApplicationDescription *string `type:"string"`

	// The name of the application.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The status of the application.
	//
	// ApplicationStatus is a required field
	ApplicationStatus ApplicationStatus `type:"string" required:"true" enum:"true"`

	// Provides the current application version. Kinesis Data Analytics updates
	// the ApplicationVersionId each time you update the application.
	//
	// ApplicationVersionId is a required field
	ApplicationVersionId *int64 `min:"1" type:"long" required:"true"`

	// Describes the application Amazon CloudWatch logging options.
	CloudWatchLoggingOptionDescriptions []CloudWatchLoggingOptionDescription `type:"list"`

	// The current timestamp when the application was created.
	CreateTimestamp *time.Time `type:"timestamp"`

	// The current timestamp when the application was last updated.
	LastUpdateTimestamp *time.Time `type:"timestamp"`

	// The runtime environment for the application (SQL-1.0 or FLINK-1_6).
	//
	// RuntimeEnvironment is a required field
	RuntimeEnvironment RuntimeEnvironment `type:"string" required:"true" enum:"true"`

	// Specifies the IAM role that the application uses to access external resources.
	ServiceExecutionRole *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Describes the application, including the application Amazon Resource Name (ARN), status, latest version, and input and output configurations.

func (ApplicationDetail) String

func (s ApplicationDetail) String() string

String returns the string representation

type ApplicationRestoreConfiguration

type ApplicationRestoreConfiguration struct {

	// Specifies how the application should be restored.
	//
	// ApplicationRestoreType is a required field
	ApplicationRestoreType ApplicationRestoreType `type:"string" required:"true" enum:"true"`

	// The identifier of an existing snapshot of application state to use to restart
	// an application. The application uses this value if RESTORE_FROM_CUSTOM_SNAPSHOT
	// is specified for the ApplicationRestoreType.
	SnapshotName *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Specifies the method and snapshot to use when restarting an application using previously saved application state.

func (ApplicationRestoreConfiguration) String

String returns the string representation

func (*ApplicationRestoreConfiguration) Validate

func (s *ApplicationRestoreConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ApplicationRestoreType

type ApplicationRestoreType string
const (
	ApplicationRestoreTypeSkipRestoreFromSnapshot   ApplicationRestoreType = "SKIP_RESTORE_FROM_SNAPSHOT"
	ApplicationRestoreTypeRestoreFromLatestSnapshot ApplicationRestoreType = "RESTORE_FROM_LATEST_SNAPSHOT"
	ApplicationRestoreTypeRestoreFromCustomSnapshot ApplicationRestoreType = "RESTORE_FROM_CUSTOM_SNAPSHOT"
)

Enum values for ApplicationRestoreType

func (ApplicationRestoreType) MarshalValue

func (enum ApplicationRestoreType) MarshalValue() (string, error)

func (ApplicationRestoreType) MarshalValueBuf

func (enum ApplicationRestoreType) MarshalValueBuf(b []byte) ([]byte, error)

type ApplicationSnapshotConfiguration

type ApplicationSnapshotConfiguration struct {

	// Describes whether snapshots are enabled for a Java-based Kinesis Data Analytics
	// application.
	//
	// SnapshotsEnabled is a required field
	SnapshotsEnabled *bool `type:"boolean" required:"true"`
	// contains filtered or unexported fields
}

Describes whether snapshots are enabled for a Java-based Kinesis Data Analytics application.

func (ApplicationSnapshotConfiguration) String

String returns the string representation

func (*ApplicationSnapshotConfiguration) Validate

Validate inspects the fields of the type to determine if they are valid.

type ApplicationSnapshotConfigurationDescription

type ApplicationSnapshotConfigurationDescription struct {

	// Describes whether snapshots are enabled for a Java-based Kinesis Data Analytics
	// application.
	//
	// SnapshotsEnabled is a required field
	SnapshotsEnabled *bool `type:"boolean" required:"true"`
	// contains filtered or unexported fields
}

Describes whether snapshots are enabled for a Java-based Kinesis Data Analytics application.

func (ApplicationSnapshotConfigurationDescription) String

String returns the string representation

type ApplicationSnapshotConfigurationUpdate

type ApplicationSnapshotConfigurationUpdate struct {

	// Describes updates to whether snapshots are enabled for a Java-based Kinesis
	// Data Analytics application.
	//
	// SnapshotsEnabledUpdate is a required field
	SnapshotsEnabledUpdate *bool `type:"boolean" required:"true"`
	// contains filtered or unexported fields
}

Describes updates to whether snapshots are enabled for a Java-based Kinesis Data Analytics application.

func (ApplicationSnapshotConfigurationUpdate) String

String returns the string representation

func (*ApplicationSnapshotConfigurationUpdate) Validate

Validate inspects the fields of the type to determine if they are valid.

type ApplicationStatus

type ApplicationStatus string
const (
	ApplicationStatusDeleting ApplicationStatus = "DELETING"
	ApplicationStatusStarting ApplicationStatus = "STARTING"
	ApplicationStatusStopping ApplicationStatus = "STOPPING"
	ApplicationStatusReady    ApplicationStatus = "READY"
	ApplicationStatusRunning  ApplicationStatus = "RUNNING"
	ApplicationStatusUpdating ApplicationStatus = "UPDATING"
)

Enum values for ApplicationStatus

func (ApplicationStatus) MarshalValue

func (enum ApplicationStatus) MarshalValue() (string, error)

func (ApplicationStatus) MarshalValueBuf

func (enum ApplicationStatus) MarshalValueBuf(b []byte) ([]byte, error)

type ApplicationSummary

type ApplicationSummary struct {

	// The ARN of the application.
	//
	// ApplicationARN is a required field
	ApplicationARN *string `min:"1" type:"string" required:"true"`

	// The name of the application.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The status of the application.
	//
	// ApplicationStatus is a required field
	ApplicationStatus ApplicationStatus `type:"string" required:"true" enum:"true"`

	// Provides the current application version.
	//
	// ApplicationVersionId is a required field
	ApplicationVersionId *int64 `min:"1" type:"long" required:"true"`

	// The runtime environment for the application (SQL-1.0 or FLINK-1_6).
	//
	// RuntimeEnvironment is a required field
	RuntimeEnvironment RuntimeEnvironment `type:"string" required:"true" enum:"true"`
	// contains filtered or unexported fields
}

Provides application summary information, including the application Amazon Resource Name (ARN), name, and status.

func (ApplicationSummary) String

func (s ApplicationSummary) String() string

String returns the string representation

type CSVMappingParameters

type CSVMappingParameters struct {

	// The column delimiter. For example, in a CSV format, a comma (",") is the
	// typical column delimiter.
	//
	// RecordColumnDelimiter is a required field
	RecordColumnDelimiter *string `min:"1" type:"string" required:"true"`

	// The row delimiter. For example, in a CSV format, '\n' is the typical row
	// delimiter.
	//
	// RecordRowDelimiter is a required field
	RecordRowDelimiter *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based application, provides additional mapping information when the record format uses delimiters, such as CSV. For example, the following sample records use CSV format, where the records use the '\n' as the row delimiter and a comma (",") as the column delimiter:

"name1", "address1"

"name2", "address2"

func (CSVMappingParameters) String

func (s CSVMappingParameters) String() string

String returns the string representation

func (*CSVMappingParameters) Validate

func (s *CSVMappingParameters) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CheckpointConfiguration

type CheckpointConfiguration struct {

	// Describes the interval in milliseconds between checkpoint operations.
	//
	// If CheckpointConfiguration.ConfigurationType is DEFAULT, the application
	// will use a CheckpointInterval vaue of 60000, even if this value is set to
	// another value using this API or in application code.
	CheckpointInterval *int64 `min:"1" type:"long"`

	// Describes whether checkpointing is enabled for a Java-based Kinesis Data
	// Analytics application.
	//
	// If CheckpointConfiguration.ConfigurationType is DEFAULT, the application
	// will use a CheckpointingEnabled value of true, even if this value is set
	// to another value using this API or in application code.
	CheckpointingEnabled *bool `type:"boolean"`

	// Describes whether the application uses Amazon Kinesis Data Analytics' default
	// checkpointing behavior. You must set this property to CUSTOM in order to
	// set the CheckpointingEnabled, CheckpointInterval, or MinPauseBetweenCheckpoints
	// parameters.
	//
	// If this value is set to DEFAULT, the application will use the following values,
	// even if they are set to other values using APIs or application code:
	//
	//    * CheckpointingEnabled: true
	//
	//    * CheckpointInterval: 60000
	//
	//    * MinPauseBetweenCheckpoints: 5000
	//
	// ConfigurationType is a required field
	ConfigurationType ConfigurationType `type:"string" required:"true" enum:"true"`

	// Describes the minimum time in milliseconds after a checkpoint operation completes
	// that a new checkpoint operation can start. If a checkpoint operation takes
	// longer than the CheckpointInterval, the application otherwise performs continual
	// checkpoint operations. For more information, see Tuning Checkpointing (https://ci.apache.org/projects/flink/flink-docs-stable/ops/state/large_state_tuning.html#tuning-checkpointing)
	// in the Apache Flink Documentation (https://ci.apache.org/projects/flink/flink-docs-release-1.6/).
	//
	// If CheckpointConfiguration.ConfigurationType is DEFAULT, the application
	// will use a MinPauseBetweenCheckpoints value of 5000, even if this value is
	// set using this API or in application code.
	MinPauseBetweenCheckpoints *int64 `type:"long"`
	// contains filtered or unexported fields
}

Describes an application's checkpointing configuration. Checkpointing is the process of persisting application state for fault tolerance. For more information, see Checkpoints for Fault Tolerance (https://ci.apache.org/projects/flink/flink-docs-release-1.6/concepts/programming-model.html#checkpoints-for-fault-tolerance) in the Apache Flink Documentation (https://ci.apache.org/projects/flink/flink-docs-release-1.6/).

func (CheckpointConfiguration) String

func (s CheckpointConfiguration) String() string

String returns the string representation

func (*CheckpointConfiguration) Validate

func (s *CheckpointConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CheckpointConfigurationDescription

type CheckpointConfigurationDescription struct {

	// Describes the interval in milliseconds between checkpoint operations.
	//
	// If CheckpointConfiguration.ConfigurationType is DEFAULT, the application
	// will use a CheckpointInterval vaue of 60000, even if this value is set to
	// another value using this API or in application code.
	CheckpointInterval *int64 `min:"1" type:"long"`

	// Describes whether checkpointing is enabled for a Java-based Kinesis Data
	// Analytics application.
	//
	// If CheckpointConfiguration.ConfigurationType is DEFAULT, the application
	// will use a CheckpointingEnabled value of true, even if this value is set
	// to another value using this API or in application code.
	CheckpointingEnabled *bool `type:"boolean"`

	// Describes whether the application uses the default checkpointing behavior
	// in Kinesis Data Analytics.
	//
	// If this value is set to DEFAULT, the application will use the following values,
	// even if they are set to other values using APIs or application code:
	//
	//    * CheckpointingEnabled: true
	//
	//    * CheckpointInterval: 60000
	//
	//    * MinPauseBetweenCheckpoints: 5000
	ConfigurationType ConfigurationType `type:"string" enum:"true"`

	// Describes the minimum time in milliseconds after a checkpoint operation completes
	// that a new checkpoint operation can start.
	//
	// If CheckpointConfiguration.ConfigurationType is DEFAULT, the application
	// will use a MinPauseBetweenCheckpoints value of 5000, even if this value is
	// set using this API or in application code.
	MinPauseBetweenCheckpoints *int64 `type:"long"`
	// contains filtered or unexported fields
}

Describes checkpointing parameters for a Java-based Amazon Kinesis Data Analytics application.

func (CheckpointConfigurationDescription) String

String returns the string representation

type CheckpointConfigurationUpdate

type CheckpointConfigurationUpdate struct {

	// Describes updates to the interval in milliseconds between checkpoint operations.
	//
	// If CheckpointConfiguration.ConfigurationType is DEFAULT, the application
	// will use a CheckpointInterval vaue of 60000, even if this value is set to
	// another value using this API or in application code.
	CheckpointIntervalUpdate *int64 `min:"1" type:"long"`

	// Describes updates to whether checkpointing is enabled for an application.
	//
	// If CheckpointConfiguration.ConfigurationType is DEFAULT, the application
	// will use a CheckpointingEnabled value of true, even if this value is set
	// to another value using this API or in application code.
	CheckpointingEnabledUpdate *bool `type:"boolean"`

	// Describes updates to whether the application uses the default checkpointing
	// behavior of Kinesis Data Analytics. You must set this property to CUSTOM
	// in order to set the CheckpointingEnabled, CheckpointInterval, or MinPauseBetweenCheckpoints
	// parameters.
	//
	// If this value is set to DEFAULT, the application will use the following values,
	// even if they are set to other values using APIs or application code:
	//
	//    * CheckpointingEnabled: true
	//
	//    * CheckpointInterval: 60000
	//
	//    * MinPauseBetweenCheckpoints: 5000
	ConfigurationTypeUpdate ConfigurationType `type:"string" enum:"true"`

	// Describes updates to the minimum time in milliseconds after a checkpoint
	// operation completes that a new checkpoint operation can start.
	//
	// If CheckpointConfiguration.ConfigurationType is DEFAULT, the application
	// will use a MinPauseBetweenCheckpoints value of 5000, even if this value is
	// set using this API or in application code.
	MinPauseBetweenCheckpointsUpdate *int64 `type:"long"`
	// contains filtered or unexported fields
}

Describes updates to the checkpointing parameters for a Java-based Amazon Kinesis Data Analytics application.

func (CheckpointConfigurationUpdate) String

String returns the string representation

func (*CheckpointConfigurationUpdate) Validate added in v0.18.0

func (s *CheckpointConfigurationUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type Client added in v0.9.0

type Client struct {
	*aws.Client
}

Client provides the API operation methods for making requests to Kinesis Analytics V2. See this package's package overview docs for details on the service.

The client's methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

func New

func New(config aws.Config) *Client

New creates a new instance of the client from the provided Config.

Example:

// Create a client from just a config.
svc := kinesisanalyticsv2.New(myConfig)

func (*Client) AddApplicationCloudWatchLoggingOptionRequest added in v0.9.0

func (c *Client) AddApplicationCloudWatchLoggingOptionRequest(input *AddApplicationCloudWatchLoggingOptionInput) AddApplicationCloudWatchLoggingOptionRequest

AddApplicationCloudWatchLoggingOptionRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Adds an Amazon CloudWatch log stream to monitor application configuration errors.

// Example sending a request using AddApplicationCloudWatchLoggingOptionRequest.
req := client.AddApplicationCloudWatchLoggingOptionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/AddApplicationCloudWatchLoggingOption

func (*Client) AddApplicationInputProcessingConfigurationRequest added in v0.9.0

func (c *Client) AddApplicationInputProcessingConfigurationRequest(input *AddApplicationInputProcessingConfigurationInput) AddApplicationInputProcessingConfigurationRequest

AddApplicationInputProcessingConfigurationRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Adds an InputProcessingConfiguration to an SQL-based Kinesis Data Analytics application. An input processor pre-processes records on the input stream before the application's SQL code executes. Currently, the only input processor available is AWS Lambda (https://aws.amazon.com/documentation/lambda/).

// Example sending a request using AddApplicationInputProcessingConfigurationRequest.
req := client.AddApplicationInputProcessingConfigurationRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/AddApplicationInputProcessingConfiguration

func (*Client) AddApplicationInputRequest added in v0.9.0

func (c *Client) AddApplicationInputRequest(input *AddApplicationInputInput) AddApplicationInputRequest

AddApplicationInputRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Adds a streaming source to your SQL-based Amazon Kinesis Data Analytics application.

You can add a streaming source when you create an application, or you can use this operation to add a streaming source after you create an application. For more information, see CreateApplication.

Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.

// Example sending a request using AddApplicationInputRequest.
req := client.AddApplicationInputRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/AddApplicationInput

func (*Client) AddApplicationOutputRequest added in v0.9.0

func (c *Client) AddApplicationOutputRequest(input *AddApplicationOutputInput) AddApplicationOutputRequest

AddApplicationOutputRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Adds an external destination to your SQL-based Amazon Kinesis Data Analytics application.

If you want Kinesis Data Analytics to deliver data from an in-application stream within your application to an external destination (such as an Kinesis data stream, a Kinesis Data Firehose delivery stream, or an AWS Lambda function), you add the relevant configuration to your application using this operation. You can configure one or more outputs for your application. Each output configuration maps an in-application stream and an external destination.

You can use one of the output configurations to deliver data from your in-application error stream to an external destination so that you can analyze the errors.

Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.

// Example sending a request using AddApplicationOutputRequest.
req := client.AddApplicationOutputRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/AddApplicationOutput

func (*Client) AddApplicationReferenceDataSourceRequest added in v0.9.0

func (c *Client) AddApplicationReferenceDataSourceRequest(input *AddApplicationReferenceDataSourceInput) AddApplicationReferenceDataSourceRequest

AddApplicationReferenceDataSourceRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Adds a reference data source to an existing SQL-based Amazon Kinesis Data Analytics application.

Kinesis Data Analytics reads reference data (that is, an Amazon S3 object) and creates an in-application table within your application. In the request, you provide the source (S3 bucket name and object key name), name of the in-application table to create, and the necessary mapping information that describes how data in an Amazon S3 object maps to columns in the resulting in-application table.

// Example sending a request using AddApplicationReferenceDataSourceRequest.
req := client.AddApplicationReferenceDataSourceRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/AddApplicationReferenceDataSource

func (*Client) AddApplicationVpcConfigurationRequest added in v0.18.0

func (c *Client) AddApplicationVpcConfigurationRequest(input *AddApplicationVpcConfigurationInput) AddApplicationVpcConfigurationRequest

AddApplicationVpcConfigurationRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Adds a Virtual Private Cloud (VPC) configuration to the application. Applications can use VPCs to store and access resources securely.

Note the following about VPC configurations for Kinesis Data Analytics applications:

  • VPC configurations are not supported for SQL applications.

  • When a VPC is added to a Kinesis Data Analytics application, the application can no longer be accessed from the Internet directly. To enable Internet access to the application, add an Internet gateway to your VPC.

    // Example sending a request using AddApplicationVpcConfigurationRequest. req := client.AddApplicationVpcConfigurationRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/AddApplicationVpcConfiguration

func (*Client) CreateApplicationRequest added in v0.9.0

func (c *Client) CreateApplicationRequest(input *CreateApplicationInput) CreateApplicationRequest

CreateApplicationRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Creates an Amazon Kinesis Data Analytics application. For information about creating a Kinesis Data Analytics application, see Creating an Application (https://docs.aws.amazon.com/kinesisanalytics/latest/java/getting-started.html).

// Example sending a request using CreateApplicationRequest.
req := client.CreateApplicationRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/CreateApplication

func (*Client) CreateApplicationSnapshotRequest added in v0.9.0

func (c *Client) CreateApplicationSnapshotRequest(input *CreateApplicationSnapshotInput) CreateApplicationSnapshotRequest

CreateApplicationSnapshotRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Creates a snapshot of the application's state data.

// Example sending a request using CreateApplicationSnapshotRequest.
req := client.CreateApplicationSnapshotRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/CreateApplicationSnapshot

func (*Client) DeleteApplicationCloudWatchLoggingOptionRequest added in v0.9.0

func (c *Client) DeleteApplicationCloudWatchLoggingOptionRequest(input *DeleteApplicationCloudWatchLoggingOptionInput) DeleteApplicationCloudWatchLoggingOptionRequest

DeleteApplicationCloudWatchLoggingOptionRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Deletes an Amazon CloudWatch log stream from an Amazon Kinesis Data Analytics application.

// Example sending a request using DeleteApplicationCloudWatchLoggingOptionRequest.
req := client.DeleteApplicationCloudWatchLoggingOptionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DeleteApplicationCloudWatchLoggingOption

func (*Client) DeleteApplicationInputProcessingConfigurationRequest added in v0.9.0

func (c *Client) DeleteApplicationInputProcessingConfigurationRequest(input *DeleteApplicationInputProcessingConfigurationInput) DeleteApplicationInputProcessingConfigurationRequest

DeleteApplicationInputProcessingConfigurationRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Deletes an InputProcessingConfiguration from an input.

// Example sending a request using DeleteApplicationInputProcessingConfigurationRequest.
req := client.DeleteApplicationInputProcessingConfigurationRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DeleteApplicationInputProcessingConfiguration

func (*Client) DeleteApplicationOutputRequest added in v0.9.0

func (c *Client) DeleteApplicationOutputRequest(input *DeleteApplicationOutputInput) DeleteApplicationOutputRequest

DeleteApplicationOutputRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Deletes the output destination configuration from your SQL-based Amazon Kinesis Data Analytics application's configuration. Kinesis Data Analytics will no longer write data from the corresponding in-application stream to the external output destination.

// Example sending a request using DeleteApplicationOutputRequest.
req := client.DeleteApplicationOutputRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DeleteApplicationOutput

func (*Client) DeleteApplicationReferenceDataSourceRequest added in v0.9.0

func (c *Client) DeleteApplicationReferenceDataSourceRequest(input *DeleteApplicationReferenceDataSourceInput) DeleteApplicationReferenceDataSourceRequest

DeleteApplicationReferenceDataSourceRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Deletes a reference data source configuration from the specified SQL-based Amazon Kinesis Data Analytics application's configuration.

If the application is running, Kinesis Data Analytics immediately removes the in-application table that you created using the AddApplicationReferenceDataSource operation.

// Example sending a request using DeleteApplicationReferenceDataSourceRequest.
req := client.DeleteApplicationReferenceDataSourceRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DeleteApplicationReferenceDataSource

func (*Client) DeleteApplicationRequest added in v0.9.0

func (c *Client) DeleteApplicationRequest(input *DeleteApplicationInput) DeleteApplicationRequest

DeleteApplicationRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Deletes the specified application. Kinesis Data Analytics halts application execution and deletes the application.

// Example sending a request using DeleteApplicationRequest.
req := client.DeleteApplicationRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DeleteApplication

func (*Client) DeleteApplicationSnapshotRequest added in v0.9.0

func (c *Client) DeleteApplicationSnapshotRequest(input *DeleteApplicationSnapshotInput) DeleteApplicationSnapshotRequest

DeleteApplicationSnapshotRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Deletes a snapshot of application state.

// Example sending a request using DeleteApplicationSnapshotRequest.
req := client.DeleteApplicationSnapshotRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DeleteApplicationSnapshot

func (*Client) DeleteApplicationVpcConfigurationRequest added in v0.18.0

func (c *Client) DeleteApplicationVpcConfigurationRequest(input *DeleteApplicationVpcConfigurationInput) DeleteApplicationVpcConfigurationRequest

DeleteApplicationVpcConfigurationRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Removes a VPC configuration from a Kinesis Data Analytics application.

// Example sending a request using DeleteApplicationVpcConfigurationRequest.
req := client.DeleteApplicationVpcConfigurationRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DeleteApplicationVpcConfiguration

func (*Client) DescribeApplicationRequest added in v0.9.0

func (c *Client) DescribeApplicationRequest(input *DescribeApplicationInput) DescribeApplicationRequest

DescribeApplicationRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Returns information about a specific Amazon Kinesis Data Analytics application.

If you want to retrieve a list of all applications in your account, use the ListApplications operation.

// Example sending a request using DescribeApplicationRequest.
req := client.DescribeApplicationRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DescribeApplication

func (*Client) DescribeApplicationSnapshotRequest added in v0.9.0

func (c *Client) DescribeApplicationSnapshotRequest(input *DescribeApplicationSnapshotInput) DescribeApplicationSnapshotRequest

DescribeApplicationSnapshotRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Returns information about a snapshot of application state data.

// Example sending a request using DescribeApplicationSnapshotRequest.
req := client.DescribeApplicationSnapshotRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DescribeApplicationSnapshot

func (*Client) DiscoverInputSchemaRequest added in v0.9.0

func (c *Client) DiscoverInputSchemaRequest(input *DiscoverInputSchemaInput) DiscoverInputSchemaRequest

DiscoverInputSchemaRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Infers a schema for an SQL-based Amazon Kinesis Data Analytics application by evaluating sample records on the specified streaming source (Kinesis data stream or Kinesis Data Firehose delivery stream) or Amazon S3 object. In the response, the operation returns the inferred schema and also the sample records that the operation used to infer the schema.

You can use the inferred schema when configuring a streaming source for your application. When you create an application using the Kinesis Data Analytics console, the console uses this operation to infer a schema and show it in the console user interface.

// Example sending a request using DiscoverInputSchemaRequest.
req := client.DiscoverInputSchemaRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DiscoverInputSchema

func (*Client) ListApplicationSnapshotsRequest added in v0.9.0

func (c *Client) ListApplicationSnapshotsRequest(input *ListApplicationSnapshotsInput) ListApplicationSnapshotsRequest

ListApplicationSnapshotsRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Lists information about the current application snapshots.

// Example sending a request using ListApplicationSnapshotsRequest.
req := client.ListApplicationSnapshotsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ListApplicationSnapshots

func (*Client) ListApplicationsRequest added in v0.9.0

func (c *Client) ListApplicationsRequest(input *ListApplicationsInput) ListApplicationsRequest

ListApplicationsRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Returns a list of Amazon Kinesis Data Analytics applications in your account. For each application, the response includes the application name, Amazon Resource Name (ARN), and status.

If you want detailed information about a specific application, use DescribeApplication.

// Example sending a request using ListApplicationsRequest.
req := client.ListApplicationsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ListApplications

func (*Client) ListTagsForResourceRequest added in v0.9.0

func (c *Client) ListTagsForResourceRequest(input *ListTagsForResourceInput) ListTagsForResourceRequest

ListTagsForResourceRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Retrieves the list of key-value tags assigned to the application. For more information, see Using Tagging (https://docs.aws.amazon.com/kinesisanalytics/latest/java/how-tagging.html).

// Example sending a request using ListTagsForResourceRequest.
req := client.ListTagsForResourceRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ListTagsForResource

func (*Client) StartApplicationRequest added in v0.9.0

func (c *Client) StartApplicationRequest(input *StartApplicationInput) StartApplicationRequest

StartApplicationRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Starts the specified Amazon Kinesis Data Analytics application. After creating an application, you must exclusively call this operation to start your application.

// Example sending a request using StartApplicationRequest.
req := client.StartApplicationRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/StartApplication

func (*Client) StopApplicationRequest added in v0.9.0

func (c *Client) StopApplicationRequest(input *StopApplicationInput) StopApplicationRequest

StopApplicationRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Stops the application from processing data. You can stop an application only if it is in the running state. You can use the DescribeApplication operation to find the application state.

// Example sending a request using StopApplicationRequest.
req := client.StopApplicationRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/StopApplication

func (*Client) TagResourceRequest added in v0.9.0

func (c *Client) TagResourceRequest(input *TagResourceInput) TagResourceRequest

TagResourceRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Adds one or more key-value tags to a Kinesis Analytics application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50. For more information, see Using Tagging (https://docs.aws.amazon.com/kinesisanalytics/latest/java/how-tagging.html).

// Example sending a request using TagResourceRequest.
req := client.TagResourceRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/TagResource

func (*Client) UntagResourceRequest added in v0.9.0

func (c *Client) UntagResourceRequest(input *UntagResourceInput) UntagResourceRequest

UntagResourceRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Removes one or more tags from a Kinesis Analytics application. For more information, see Using Tagging (https://docs.aws.amazon.com/kinesisanalytics/latest/java/how-tagging.html).

// Example sending a request using UntagResourceRequest.
req := client.UntagResourceRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/UntagResource

func (*Client) UpdateApplicationRequest added in v0.9.0

func (c *Client) UpdateApplicationRequest(input *UpdateApplicationInput) UpdateApplicationRequest

UpdateApplicationRequest returns a request value for making API operation for Amazon Kinesis Analytics.

Updates an existing Amazon Kinesis Data Analytics application. Using this operation, you can update application code, input configuration, and output configuration.

Kinesis Data Analytics updates the ApplicationVersionId each time you update your application.

// Example sending a request using UpdateApplicationRequest.
req := client.UpdateApplicationRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/UpdateApplication

type CloudWatchLoggingOption

type CloudWatchLoggingOption struct {

	// The ARN of the CloudWatch log to receive application messages.
	//
	// LogStreamARN is a required field
	LogStreamARN *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Provides a description of Amazon CloudWatch logging options, including the log stream Amazon Resource Name (ARN).

func (CloudWatchLoggingOption) String

func (s CloudWatchLoggingOption) String() string

String returns the string representation

func (*CloudWatchLoggingOption) Validate

func (s *CloudWatchLoggingOption) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CloudWatchLoggingOptionDescription

type CloudWatchLoggingOptionDescription struct {

	// The ID of the CloudWatch logging option description.
	CloudWatchLoggingOptionId *string `min:"1" type:"string"`

	// The Amazon Resource Name (ARN) of the CloudWatch log to receive application
	// messages.
	//
	// LogStreamARN is a required field
	LogStreamARN *string `min:"1" type:"string" required:"true"`

	// The IAM ARN of the role to use to send application messages.
	//
	// Provided for backward compatibility. Applications created with the current
	// API version have an application-level service execution role rather than
	// a resource-level role.
	RoleARN *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Describes the Amazon CloudWatch logging option.

func (CloudWatchLoggingOptionDescription) String

String returns the string representation

type CloudWatchLoggingOptionUpdate

type CloudWatchLoggingOptionUpdate struct {

	// The ID of the CloudWatch logging option to update
	//
	// CloudWatchLoggingOptionId is a required field
	CloudWatchLoggingOptionId *string `min:"1" type:"string" required:"true"`

	// The Amazon Resource Name (ARN) of the CloudWatch log to receive application
	// messages.
	LogStreamARNUpdate *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Describes the Amazon CloudWatch logging option updates.

func (CloudWatchLoggingOptionUpdate) String

String returns the string representation

func (*CloudWatchLoggingOptionUpdate) Validate

func (s *CloudWatchLoggingOptionUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CodeContent

type CodeContent struct {

	// Information about the Amazon S3 bucket containing the application code.
	S3ContentLocation *S3ContentLocation `type:"structure"`

	// The text-format code for a Java-based Kinesis Data Analytics application.
	TextContent *string `type:"string"`

	// The zip-format code for a Java-based Kinesis Data Analytics application.
	//
	// ZipFileContent is automatically base64 encoded/decoded by the SDK.
	ZipFileContent []byte `type:"blob"`
	// contains filtered or unexported fields
}

Specifies either the application code, or the location of the application code, for a Java-based Amazon Kinesis Data Analytics application.

func (CodeContent) String

func (s CodeContent) String() string

String returns the string representation

func (*CodeContent) Validate

func (s *CodeContent) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CodeContentDescription

type CodeContentDescription struct {

	// The checksum that can be used to validate zip-format code.
	CodeMD5 *string `min:"128" type:"string"`

	// The size in bytes of the application code. Can be used to validate zip-format
	// code.
	CodeSize *int64 `type:"long"`

	// The S3 bucket Amazon Resource Name (ARN), file key, and object version of
	// the application code stored in Amazon S3.
	S3ApplicationCodeLocationDescription *S3ApplicationCodeLocationDescription `type:"structure"`

	// The text-format code
	TextContent *string `type:"string"`
	// contains filtered or unexported fields
}

Describes details about the application code for a Java-based Kinesis Data Analytics application.

func (CodeContentDescription) String

func (s CodeContentDescription) String() string

String returns the string representation

type CodeContentType

type CodeContentType string
const (
	CodeContentTypePlaintext CodeContentType = "PLAINTEXT"
	CodeContentTypeZipfile   CodeContentType = "ZIPFILE"
)

Enum values for CodeContentType

func (CodeContentType) MarshalValue

func (enum CodeContentType) MarshalValue() (string, error)

func (CodeContentType) MarshalValueBuf

func (enum CodeContentType) MarshalValueBuf(b []byte) ([]byte, error)

type CodeContentUpdate

type CodeContentUpdate struct {

	// Describes an update to the location of code for an application.
	S3ContentLocationUpdate *S3ContentLocationUpdate `type:"structure"`

	// Describes an update to the text code for an application.
	TextContentUpdate *string `type:"string"`

	// Describes an update to the zipped code for an application.
	//
	// ZipFileContentUpdate is automatically base64 encoded/decoded by the SDK.
	ZipFileContentUpdate []byte `type:"blob"`
	// contains filtered or unexported fields
}

Describes an update to the code of a Java-based Kinesis Data Analytics application.

func (CodeContentUpdate) String

func (s CodeContentUpdate) String() string

String returns the string representation

func (*CodeContentUpdate) Validate

func (s *CodeContentUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ConfigurationType

type ConfigurationType string
const (
	ConfigurationTypeDefault ConfigurationType = "DEFAULT"
	ConfigurationTypeCustom  ConfigurationType = "CUSTOM"
)

Enum values for ConfigurationType

func (ConfigurationType) MarshalValue

func (enum ConfigurationType) MarshalValue() (string, error)

func (ConfigurationType) MarshalValueBuf

func (enum ConfigurationType) MarshalValueBuf(b []byte) ([]byte, error)

type CreateApplicationInput

type CreateApplicationInput struct {

	// Use this parameter to configure the application.
	ApplicationConfiguration *ApplicationConfiguration `type:"structure"`

	// A summary description of the application.
	ApplicationDescription *string `type:"string"`

	// The name of your application (for example, sample-app).
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// Use this parameter to configure an Amazon CloudWatch log stream to monitor
	// application configuration errors.
	CloudWatchLoggingOptions []CloudWatchLoggingOption `type:"list"`

	// The runtime environment for the application (SQL-1.0 or FLINK-1_6).
	//
	// RuntimeEnvironment is a required field
	RuntimeEnvironment RuntimeEnvironment `type:"string" required:"true" enum:"true"`

	// The IAM role used by the application to access Kinesis data streams, Kinesis
	// Data Firehose delivery streams, Amazon S3 objects, and other external resources.
	//
	// ServiceExecutionRole is a required field
	ServiceExecutionRole *string `min:"1" type:"string" required:"true"`

	// A list of one or more tags to assign to the application. A tag is a key-value
	// pair that identifies an application. Note that the maximum number of application
	// tags includes system tags. The maximum number of user-defined application
	// tags is 50. For more information, see Using Tagging (https://docs.aws.amazon.com/kinesisanalytics/latest/java/how-tagging.html).
	Tags []Tag `min:"1" type:"list"`
	// contains filtered or unexported fields
}

func (CreateApplicationInput) String

func (s CreateApplicationInput) String() string

String returns the string representation

func (*CreateApplicationInput) Validate

func (s *CreateApplicationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateApplicationOutput

type CreateApplicationOutput struct {

	// In response to your CreateApplication request, Kinesis Data Analytics returns
	// a response with details of the application it created.
	//
	// ApplicationDetail is a required field
	ApplicationDetail *ApplicationDetail `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (CreateApplicationOutput) String

func (s CreateApplicationOutput) String() string

String returns the string representation

type CreateApplicationRequest

type CreateApplicationRequest struct {
	*aws.Request
	Input *CreateApplicationInput
	Copy  func(*CreateApplicationInput) CreateApplicationRequest
}

CreateApplicationRequest is the request type for the CreateApplication API operation.

func (CreateApplicationRequest) Send

Send marshals and sends the CreateApplication API request.

type CreateApplicationResponse added in v0.9.0

type CreateApplicationResponse struct {
	*CreateApplicationOutput
	// contains filtered or unexported fields
}

CreateApplicationResponse is the response type for the CreateApplication API operation.

func (*CreateApplicationResponse) SDKResponseMetdata added in v0.9.0

func (r *CreateApplicationResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreateApplication request.

type CreateApplicationSnapshotInput

type CreateApplicationSnapshotInput struct {

	// The name of an existing application
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// An identifier for the application snapshot.
	//
	// SnapshotName is a required field
	SnapshotName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (CreateApplicationSnapshotInput) String

String returns the string representation

func (*CreateApplicationSnapshotInput) Validate

func (s *CreateApplicationSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateApplicationSnapshotOutput

type CreateApplicationSnapshotOutput struct {
	// contains filtered or unexported fields
}

func (CreateApplicationSnapshotOutput) String

String returns the string representation

type CreateApplicationSnapshotRequest

type CreateApplicationSnapshotRequest struct {
	*aws.Request
	Input *CreateApplicationSnapshotInput
	Copy  func(*CreateApplicationSnapshotInput) CreateApplicationSnapshotRequest
}

CreateApplicationSnapshotRequest is the request type for the CreateApplicationSnapshot API operation.

func (CreateApplicationSnapshotRequest) Send

Send marshals and sends the CreateApplicationSnapshot API request.

type CreateApplicationSnapshotResponse added in v0.9.0

type CreateApplicationSnapshotResponse struct {
	*CreateApplicationSnapshotOutput
	// contains filtered or unexported fields
}

CreateApplicationSnapshotResponse is the response type for the CreateApplicationSnapshot API operation.

func (*CreateApplicationSnapshotResponse) SDKResponseMetdata added in v0.9.0

func (r *CreateApplicationSnapshotResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreateApplicationSnapshot request.

type DeleteApplicationCloudWatchLoggingOptionInput

type DeleteApplicationCloudWatchLoggingOptionInput struct {

	// The application name.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The CloudWatchLoggingOptionId of the Amazon CloudWatch logging option to
	// delete. You can get the CloudWatchLoggingOptionId by using the DescribeApplication
	// operation.
	//
	// CloudWatchLoggingOptionId is a required field
	CloudWatchLoggingOptionId *string `min:"1" type:"string" required:"true"`

	// The version ID of the application. You can retrieve the application version
	// ID using DescribeApplication.
	//
	// CurrentApplicationVersionId is a required field
	CurrentApplicationVersionId *int64 `min:"1" type:"long" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteApplicationCloudWatchLoggingOptionInput) String

String returns the string representation

func (*DeleteApplicationCloudWatchLoggingOptionInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type DeleteApplicationCloudWatchLoggingOptionOutput

type DeleteApplicationCloudWatchLoggingOptionOutput struct {

	// The application's Amazon Resource Name (ARN).
	ApplicationARN *string `min:"1" type:"string"`

	// The version ID of the application. Kinesis Data Analytics updates the ApplicationVersionId
	// each time you change the CloudWatch logging options.
	ApplicationVersionId *int64 `min:"1" type:"long"`

	// The descriptions of the remaining CloudWatch logging options for the application.
	CloudWatchLoggingOptionDescriptions []CloudWatchLoggingOptionDescription `type:"list"`
	// contains filtered or unexported fields
}

func (DeleteApplicationCloudWatchLoggingOptionOutput) String

String returns the string representation

type DeleteApplicationCloudWatchLoggingOptionRequest

DeleteApplicationCloudWatchLoggingOptionRequest is the request type for the DeleteApplicationCloudWatchLoggingOption API operation.

func (DeleteApplicationCloudWatchLoggingOptionRequest) Send

Send marshals and sends the DeleteApplicationCloudWatchLoggingOption API request.

type DeleteApplicationCloudWatchLoggingOptionResponse added in v0.9.0

type DeleteApplicationCloudWatchLoggingOptionResponse struct {
	*DeleteApplicationCloudWatchLoggingOptionOutput
	// contains filtered or unexported fields
}

DeleteApplicationCloudWatchLoggingOptionResponse is the response type for the DeleteApplicationCloudWatchLoggingOption API operation.

func (*DeleteApplicationCloudWatchLoggingOptionResponse) SDKResponseMetdata added in v0.9.0

SDKResponseMetdata returns the response metadata for the DeleteApplicationCloudWatchLoggingOption request.

type DeleteApplicationInput

type DeleteApplicationInput struct {

	// The name of the application to delete.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// Use the DescribeApplication operation to get this value.
	//
	// CreateTimestamp is a required field
	CreateTimestamp *time.Time `type:"timestamp" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteApplicationInput) String

func (s DeleteApplicationInput) String() string

String returns the string representation

func (*DeleteApplicationInput) Validate

func (s *DeleteApplicationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteApplicationInputProcessingConfigurationInput

type DeleteApplicationInputProcessingConfigurationInput struct {

	// The name of the application.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The application version. You can use the DescribeApplication operation to
	// get the current application version. If the version specified is not the
	// current version, the ConcurrentModificationException is returned.
	//
	// CurrentApplicationVersionId is a required field
	CurrentApplicationVersionId *int64 `min:"1" type:"long" required:"true"`

	// The ID of the input configuration from which to delete the input processing
	// configuration. You can get a list of the input IDs for an application by
	// using the DescribeApplication operation.
	//
	// InputId is a required field
	InputId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteApplicationInputProcessingConfigurationInput) String

String returns the string representation

func (*DeleteApplicationInputProcessingConfigurationInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type DeleteApplicationInputProcessingConfigurationOutput

type DeleteApplicationInputProcessingConfigurationOutput struct {

	// The Amazon Resource Name (ARN) of the application.
	ApplicationARN *string `min:"1" type:"string"`

	// The current application version ID.
	ApplicationVersionId *int64 `min:"1" type:"long"`
	// contains filtered or unexported fields
}

func (DeleteApplicationInputProcessingConfigurationOutput) String

String returns the string representation

type DeleteApplicationInputProcessingConfigurationRequest

DeleteApplicationInputProcessingConfigurationRequest is the request type for the DeleteApplicationInputProcessingConfiguration API operation.

func (DeleteApplicationInputProcessingConfigurationRequest) Send

Send marshals and sends the DeleteApplicationInputProcessingConfiguration API request.

type DeleteApplicationInputProcessingConfigurationResponse added in v0.9.0

type DeleteApplicationInputProcessingConfigurationResponse struct {
	*DeleteApplicationInputProcessingConfigurationOutput
	// contains filtered or unexported fields
}

DeleteApplicationInputProcessingConfigurationResponse is the response type for the DeleteApplicationInputProcessingConfiguration API operation.

func (*DeleteApplicationInputProcessingConfigurationResponse) SDKResponseMetdata added in v0.9.0

SDKResponseMetdata returns the response metadata for the DeleteApplicationInputProcessingConfiguration request.

type DeleteApplicationOutput

type DeleteApplicationOutput struct {
	// contains filtered or unexported fields
}

func (DeleteApplicationOutput) String

func (s DeleteApplicationOutput) String() string

String returns the string representation

type DeleteApplicationOutputInput

type DeleteApplicationOutputInput struct {

	// The application name.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The application version. You can use the DescribeApplication operation to
	// get the current application version. If the version specified is not the
	// current version, the ConcurrentModificationException is returned.
	//
	// CurrentApplicationVersionId is a required field
	CurrentApplicationVersionId *int64 `min:"1" type:"long" required:"true"`

	// The ID of the configuration to delete. Each output configuration that is
	// added to the application (either when the application is created or later)
	// using the AddApplicationOutput operation has a unique ID. You need to provide
	// the ID to uniquely identify the output configuration that you want to delete
	// from the application configuration. You can use the DescribeApplication operation
	// to get the specific OutputId.
	//
	// OutputId is a required field
	OutputId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteApplicationOutputInput) String

String returns the string representation

func (*DeleteApplicationOutputInput) Validate

func (s *DeleteApplicationOutputInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteApplicationOutputOutput

type DeleteApplicationOutputOutput struct {

	// The application Amazon Resource Name (ARN).
	ApplicationARN *string `min:"1" type:"string"`

	// The current application version ID.
	ApplicationVersionId *int64 `min:"1" type:"long"`
	// contains filtered or unexported fields
}

func (DeleteApplicationOutputOutput) String

String returns the string representation

type DeleteApplicationOutputRequest

type DeleteApplicationOutputRequest struct {
	*aws.Request
	Input *DeleteApplicationOutputInput
	Copy  func(*DeleteApplicationOutputInput) DeleteApplicationOutputRequest
}

DeleteApplicationOutputRequest is the request type for the DeleteApplicationOutput API operation.

func (DeleteApplicationOutputRequest) Send

Send marshals and sends the DeleteApplicationOutput API request.

type DeleteApplicationOutputResponse added in v0.9.0

type DeleteApplicationOutputResponse struct {
	*DeleteApplicationOutputOutput
	// contains filtered or unexported fields
}

DeleteApplicationOutputResponse is the response type for the DeleteApplicationOutput API operation.

func (*DeleteApplicationOutputResponse) SDKResponseMetdata added in v0.9.0

func (r *DeleteApplicationOutputResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteApplicationOutput request.

type DeleteApplicationReferenceDataSourceInput

type DeleteApplicationReferenceDataSourceInput struct {

	// The name of an existing application.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The current application version. You can use the DescribeApplication operation
	// to get the current application version. If the version specified is not the
	// current version, the ConcurrentModificationException is returned.
	//
	// CurrentApplicationVersionId is a required field
	CurrentApplicationVersionId *int64 `min:"1" type:"long" required:"true"`

	// The ID of the reference data source. When you add a reference data source
	// to your application using the AddApplicationReferenceDataSource, Kinesis
	// Data Analytics assigns an ID. You can use the DescribeApplication operation
	// to get the reference ID.
	//
	// ReferenceId is a required field
	ReferenceId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteApplicationReferenceDataSourceInput) String

String returns the string representation

func (*DeleteApplicationReferenceDataSourceInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type DeleteApplicationReferenceDataSourceOutput

type DeleteApplicationReferenceDataSourceOutput struct {

	// The application Amazon Resource Name (ARN).
	ApplicationARN *string `min:"1" type:"string"`

	// The updated version ID of the application.
	ApplicationVersionId *int64 `min:"1" type:"long"`
	// contains filtered or unexported fields
}

func (DeleteApplicationReferenceDataSourceOutput) String

String returns the string representation

type DeleteApplicationReferenceDataSourceRequest

DeleteApplicationReferenceDataSourceRequest is the request type for the DeleteApplicationReferenceDataSource API operation.

func (DeleteApplicationReferenceDataSourceRequest) Send

Send marshals and sends the DeleteApplicationReferenceDataSource API request.

type DeleteApplicationReferenceDataSourceResponse added in v0.9.0

type DeleteApplicationReferenceDataSourceResponse struct {
	*DeleteApplicationReferenceDataSourceOutput
	// contains filtered or unexported fields
}

DeleteApplicationReferenceDataSourceResponse is the response type for the DeleteApplicationReferenceDataSource API operation.

func (*DeleteApplicationReferenceDataSourceResponse) SDKResponseMetdata added in v0.9.0

SDKResponseMetdata returns the response metadata for the DeleteApplicationReferenceDataSource request.

type DeleteApplicationRequest

type DeleteApplicationRequest struct {
	*aws.Request
	Input *DeleteApplicationInput
	Copy  func(*DeleteApplicationInput) DeleteApplicationRequest
}

DeleteApplicationRequest is the request type for the DeleteApplication API operation.

func (DeleteApplicationRequest) Send

Send marshals and sends the DeleteApplication API request.

type DeleteApplicationResponse added in v0.9.0

type DeleteApplicationResponse struct {
	*DeleteApplicationOutput
	// contains filtered or unexported fields
}

DeleteApplicationResponse is the response type for the DeleteApplication API operation.

func (*DeleteApplicationResponse) SDKResponseMetdata added in v0.9.0

func (r *DeleteApplicationResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteApplication request.

type DeleteApplicationSnapshotInput

type DeleteApplicationSnapshotInput struct {

	// The name of an existing application.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The creation timestamp of the application snapshot to delete. You can retrieve
	// this value using or .
	//
	// SnapshotCreationTimestamp is a required field
	SnapshotCreationTimestamp *time.Time `type:"timestamp" required:"true"`

	// The identifier for the snapshot delete.
	//
	// SnapshotName is a required field
	SnapshotName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteApplicationSnapshotInput) String

String returns the string representation

func (*DeleteApplicationSnapshotInput) Validate

func (s *DeleteApplicationSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteApplicationSnapshotOutput

type DeleteApplicationSnapshotOutput struct {
	// contains filtered or unexported fields
}

func (DeleteApplicationSnapshotOutput) String

String returns the string representation

type DeleteApplicationSnapshotRequest

type DeleteApplicationSnapshotRequest struct {
	*aws.Request
	Input *DeleteApplicationSnapshotInput
	Copy  func(*DeleteApplicationSnapshotInput) DeleteApplicationSnapshotRequest
}

DeleteApplicationSnapshotRequest is the request type for the DeleteApplicationSnapshot API operation.

func (DeleteApplicationSnapshotRequest) Send

Send marshals and sends the DeleteApplicationSnapshot API request.

type DeleteApplicationSnapshotResponse added in v0.9.0

type DeleteApplicationSnapshotResponse struct {
	*DeleteApplicationSnapshotOutput
	// contains filtered or unexported fields
}

DeleteApplicationSnapshotResponse is the response type for the DeleteApplicationSnapshot API operation.

func (*DeleteApplicationSnapshotResponse) SDKResponseMetdata added in v0.9.0

func (r *DeleteApplicationSnapshotResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteApplicationSnapshot request.

type DeleteApplicationVpcConfigurationInput added in v0.18.0

type DeleteApplicationVpcConfigurationInput struct {

	// The name of an existing application.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The current application version ID. You can retrieve the application version
	// ID using DescribeApplication.
	//
	// CurrentApplicationVersionId is a required field
	CurrentApplicationVersionId *int64 `min:"1" type:"long" required:"true"`

	// The ID of the VPC configuration to delete.
	//
	// VpcConfigurationId is a required field
	VpcConfigurationId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteApplicationVpcConfigurationInput) String added in v0.18.0

String returns the string representation

func (*DeleteApplicationVpcConfigurationInput) Validate added in v0.18.0

Validate inspects the fields of the type to determine if they are valid.

type DeleteApplicationVpcConfigurationOutput added in v0.18.0

type DeleteApplicationVpcConfigurationOutput struct {

	// The ARN of the Kinesis Data Analytics application.
	ApplicationARN *string `min:"1" type:"string"`

	// The updated version ID of the application.
	ApplicationVersionId *int64 `min:"1" type:"long"`
	// contains filtered or unexported fields
}

func (DeleteApplicationVpcConfigurationOutput) String added in v0.18.0

String returns the string representation

type DeleteApplicationVpcConfigurationRequest added in v0.18.0

DeleteApplicationVpcConfigurationRequest is the request type for the DeleteApplicationVpcConfiguration API operation.

func (DeleteApplicationVpcConfigurationRequest) Send added in v0.18.0

Send marshals and sends the DeleteApplicationVpcConfiguration API request.

type DeleteApplicationVpcConfigurationResponse added in v0.18.0

type DeleteApplicationVpcConfigurationResponse struct {
	*DeleteApplicationVpcConfigurationOutput
	// contains filtered or unexported fields
}

DeleteApplicationVpcConfigurationResponse is the response type for the DeleteApplicationVpcConfiguration API operation.

func (*DeleteApplicationVpcConfigurationResponse) SDKResponseMetdata added in v0.18.0

func (r *DeleteApplicationVpcConfigurationResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteApplicationVpcConfiguration request.

type DescribeApplicationInput

type DescribeApplicationInput struct {

	// The name of the application.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// Displays verbose information about a Kinesis Data Analytics application,
	// including the application's job plan.
	IncludeAdditionalDetails *bool `type:"boolean"`
	// contains filtered or unexported fields
}

func (DescribeApplicationInput) String

func (s DescribeApplicationInput) String() string

String returns the string representation

func (*DescribeApplicationInput) Validate

func (s *DescribeApplicationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeApplicationOutput

type DescribeApplicationOutput struct {

	// Provides a description of the application, such as the application's Amazon
	// Resource Name (ARN), status, and latest version.
	//
	// ApplicationDetail is a required field
	ApplicationDetail *ApplicationDetail `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeApplicationOutput) String

func (s DescribeApplicationOutput) String() string

String returns the string representation

type DescribeApplicationRequest

type DescribeApplicationRequest struct {
	*aws.Request
	Input *DescribeApplicationInput
	Copy  func(*DescribeApplicationInput) DescribeApplicationRequest
}

DescribeApplicationRequest is the request type for the DescribeApplication API operation.

func (DescribeApplicationRequest) Send

Send marshals and sends the DescribeApplication API request.

type DescribeApplicationResponse added in v0.9.0

type DescribeApplicationResponse struct {
	*DescribeApplicationOutput
	// contains filtered or unexported fields
}

DescribeApplicationResponse is the response type for the DescribeApplication API operation.

func (*DescribeApplicationResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeApplicationResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeApplication request.

type DescribeApplicationSnapshotInput

type DescribeApplicationSnapshotInput struct {

	// The name of an existing application.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The identifier of an application snapshot. You can retrieve this value using .
	//
	// SnapshotName is a required field
	SnapshotName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeApplicationSnapshotInput) String

String returns the string representation

func (*DescribeApplicationSnapshotInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type DescribeApplicationSnapshotOutput

type DescribeApplicationSnapshotOutput struct {

	// An object containing information about the application snapshot.
	//
	// SnapshotDetails is a required field
	SnapshotDetails *SnapshotDetails `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeApplicationSnapshotOutput) String

String returns the string representation

type DescribeApplicationSnapshotRequest

type DescribeApplicationSnapshotRequest struct {
	*aws.Request
	Input *DescribeApplicationSnapshotInput
	Copy  func(*DescribeApplicationSnapshotInput) DescribeApplicationSnapshotRequest
}

DescribeApplicationSnapshotRequest is the request type for the DescribeApplicationSnapshot API operation.

func (DescribeApplicationSnapshotRequest) Send

Send marshals and sends the DescribeApplicationSnapshot API request.

type DescribeApplicationSnapshotResponse added in v0.9.0

type DescribeApplicationSnapshotResponse struct {
	*DescribeApplicationSnapshotOutput
	// contains filtered or unexported fields
}

DescribeApplicationSnapshotResponse is the response type for the DescribeApplicationSnapshot API operation.

func (*DescribeApplicationSnapshotResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribeApplicationSnapshotResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeApplicationSnapshot request.

type DestinationSchema

type DestinationSchema struct {

	// Specifies the format of the records on the output stream.
	//
	// RecordFormatType is a required field
	RecordFormatType RecordFormatType `type:"string" required:"true" enum:"true"`
	// contains filtered or unexported fields
}

Describes the data format when records are written to the destination in an SQL-based Amazon Kinesis Data Analytics application.

func (DestinationSchema) String

func (s DestinationSchema) String() string

String returns the string representation

func (*DestinationSchema) Validate

func (s *DestinationSchema) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DiscoverInputSchemaInput

type DiscoverInputSchemaInput struct {

	// The InputProcessingConfiguration to use to preprocess the records before
	// discovering the schema of the records.
	InputProcessingConfiguration *InputProcessingConfiguration `type:"structure"`

	// The point at which you want Kinesis Data Analytics to start reading records
	// from the specified streaming source discovery purposes.
	InputStartingPositionConfiguration *InputStartingPositionConfiguration `type:"structure"`

	// The Amazon Resource Name (ARN) of the streaming source.
	ResourceARN *string `min:"1" type:"string"`

	// Specify this parameter to discover a schema from data in an Amazon S3 object.
	S3Configuration *S3Configuration `type:"structure"`

	// The ARN of the role that is used to access the streaming source.
	//
	// ServiceExecutionRole is a required field
	ServiceExecutionRole *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DiscoverInputSchemaInput) String

func (s DiscoverInputSchemaInput) String() string

String returns the string representation

func (*DiscoverInputSchemaInput) Validate

func (s *DiscoverInputSchemaInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DiscoverInputSchemaOutput

type DiscoverInputSchemaOutput struct {

	// The schema inferred from the streaming source. It identifies the format of
	// the data in the streaming source and how each data element maps to corresponding
	// columns in the in-application stream that you can create.
	InputSchema *SourceSchema `type:"structure"`

	// An array of elements, where each element corresponds to a row in a stream
	// record (a stream record can have more than one row).
	ParsedInputRecords [][]string `type:"list"`

	// The stream data that was modified by the processor specified in the InputProcessingConfiguration
	// parameter.
	ProcessedInputRecords []string `type:"list"`

	// The raw stream data that was sampled to infer the schema.
	RawInputRecords []string `type:"list"`
	// contains filtered or unexported fields
}

func (DiscoverInputSchemaOutput) String

func (s DiscoverInputSchemaOutput) String() string

String returns the string representation

type DiscoverInputSchemaRequest

type DiscoverInputSchemaRequest struct {
	*aws.Request
	Input *DiscoverInputSchemaInput
	Copy  func(*DiscoverInputSchemaInput) DiscoverInputSchemaRequest
}

DiscoverInputSchemaRequest is the request type for the DiscoverInputSchema API operation.

func (DiscoverInputSchemaRequest) Send

Send marshals and sends the DiscoverInputSchema API request.

type DiscoverInputSchemaResponse added in v0.9.0

type DiscoverInputSchemaResponse struct {
	*DiscoverInputSchemaOutput
	// contains filtered or unexported fields
}

DiscoverInputSchemaResponse is the response type for the DiscoverInputSchema API operation.

func (*DiscoverInputSchemaResponse) SDKResponseMetdata added in v0.9.0

func (r *DiscoverInputSchemaResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DiscoverInputSchema request.

type EnvironmentProperties

type EnvironmentProperties struct {

	// Describes the execution property groups.
	//
	// PropertyGroups is a required field
	PropertyGroups []PropertyGroup `type:"list" required:"true"`
	// contains filtered or unexported fields
}

Describes execution properties for a Java-based Kinesis Data Analytics application.

func (EnvironmentProperties) String

func (s EnvironmentProperties) String() string

String returns the string representation

func (*EnvironmentProperties) Validate

func (s *EnvironmentProperties) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type EnvironmentPropertyDescriptions

type EnvironmentPropertyDescriptions struct {

	// Describes the execution property groups.
	PropertyGroupDescriptions []PropertyGroup `type:"list"`
	// contains filtered or unexported fields
}

Describes the execution properties for a Java-based Amazon Kinesis Data Analytics application.

func (EnvironmentPropertyDescriptions) String

String returns the string representation

type EnvironmentPropertyUpdates

type EnvironmentPropertyUpdates struct {

	// Describes updates to the execution property groups.
	//
	// PropertyGroups is a required field
	PropertyGroups []PropertyGroup `type:"list" required:"true"`
	// contains filtered or unexported fields
}

Describes updates to the execution property groups for a Java-based Amazon Kinesis Data Analytics application.

func (EnvironmentPropertyUpdates) String

String returns the string representation

func (*EnvironmentPropertyUpdates) Validate

func (s *EnvironmentPropertyUpdates) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type FlinkApplicationConfiguration

type FlinkApplicationConfiguration struct {

	// Describes an application's checkpointing configuration. Checkpointing is
	// the process of persisting application state for fault tolerance. For more
	// information, see Checkpoints for Fault Tolerance (https://ci.apache.org/projects/flink/flink-docs-release-1.6/concepts/programming-model.html#checkpoints-for-fault-tolerance)
	// in the Apache Flink Documentation (https://ci.apache.org/projects/flink/flink-docs-release-1.6/).
	CheckpointConfiguration *CheckpointConfiguration `type:"structure"`

	// Describes configuration parameters for Amazon CloudWatch logging for an application.
	MonitoringConfiguration *MonitoringConfiguration `type:"structure"`

	// Describes parameters for how an application executes multiple tasks simultaneously.
	ParallelismConfiguration *ParallelismConfiguration `type:"structure"`
	// contains filtered or unexported fields
}

Describes configuration parameters for a Java-based Amazon Kinesis Data Analytics application.

func (FlinkApplicationConfiguration) String

String returns the string representation

func (*FlinkApplicationConfiguration) Validate

func (s *FlinkApplicationConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type FlinkApplicationConfigurationDescription

type FlinkApplicationConfigurationDescription struct {

	// Describes an application's checkpointing configuration. Checkpointing is
	// the process of persisting application state for fault tolerance.
	CheckpointConfigurationDescription *CheckpointConfigurationDescription `type:"structure"`

	// The job plan for an application. For more information about the job plan,
	// see Jobs and Scheduling (https://ci.apache.org/projects/flink/flink-docs-stable/internals/job_scheduling.html)
	// in the Apache Flink Documentation (https://ci.apache.org/projects/flink/flink-docs-release-1.6/).
	// To retrieve the job plan for the application, use the DescribeApplicationRequest$IncludeAdditionalDetails
	// parameter of the DescribeApplication operation.
	JobPlanDescription *string `type:"string"`

	// Describes configuration parameters for Amazon CloudWatch logging for an application.
	MonitoringConfigurationDescription *MonitoringConfigurationDescription `type:"structure"`

	// Describes parameters for how an application executes multiple tasks simultaneously.
	ParallelismConfigurationDescription *ParallelismConfigurationDescription `type:"structure"`
	// contains filtered or unexported fields
}

Describes configuration parameters for a Java-based Amazon Kinesis Data Analytics application.

func (FlinkApplicationConfigurationDescription) String

String returns the string representation

type FlinkApplicationConfigurationUpdate

type FlinkApplicationConfigurationUpdate struct {

	// Describes updates to an application's checkpointing configuration. Checkpointing
	// is the process of persisting application state for fault tolerance.
	CheckpointConfigurationUpdate *CheckpointConfigurationUpdate `type:"structure"`

	// Describes updates to the configuration parameters for Amazon CloudWatch logging
	// for an application.
	MonitoringConfigurationUpdate *MonitoringConfigurationUpdate `type:"structure"`

	// Describes updates to the parameters for how an application executes multiple
	// tasks simultaneously.
	ParallelismConfigurationUpdate *ParallelismConfigurationUpdate `type:"structure"`
	// contains filtered or unexported fields
}

Describes updates to the configuration parameters for a Java-based Amazon Kinesis Data Analytics application.

func (FlinkApplicationConfigurationUpdate) String

String returns the string representation

func (*FlinkApplicationConfigurationUpdate) Validate

Validate inspects the fields of the type to determine if they are valid.

type FlinkRunConfiguration added in v0.18.0

type FlinkRunConfiguration struct {

	// When restoring from a savepoint, specifies whether the runtime is allowed
	// to skip a state that cannot be mapped to the new program. This will happen
	// if the program is updated between savepoints to remove stateful parameters,
	// and state data in the savepoint no longer corresponds to valid application
	// data. For more information, see Allowing Non-Restored State (https://ci.apache.org/projects/flink/flink-docs-release-1.8/ops/state/savepoints.html#allowing-non-restored-state)
	// in the Apache Flink documentation (https://ci.apache.org/projects/flink/flink-docs-release-1.8/).
	AllowNonRestoredState *bool `type:"boolean"`
	// contains filtered or unexported fields
}

Describes the starting parameters for an Apache Flink-based Kinesis Data Analytics application.

func (FlinkRunConfiguration) String added in v0.18.0

func (s FlinkRunConfiguration) String() string

String returns the string representation

type Input

type Input struct {

	// Describes the number of in-application streams to create.
	InputParallelism *InputParallelism `type:"structure"`

	// The InputProcessingConfiguration for the input. An input processor transforms
	// records as they are received from the stream, before the application's SQL
	// code executes. Currently, the only input processing configuration available
	// is InputLambdaProcessor.
	InputProcessingConfiguration *InputProcessingConfiguration `type:"structure"`

	// Describes the format of the data in the streaming source, and how each data
	// element maps to corresponding columns in the in-application stream that is
	// being created.
	//
	// Also used to describe the format of the reference data source.
	//
	// InputSchema is a required field
	InputSchema *SourceSchema `type:"structure" required:"true"`

	// If the streaming source is an Amazon Kinesis Data Firehose delivery stream,
	// identifies the delivery stream's ARN.
	KinesisFirehoseInput *KinesisFirehoseInput `type:"structure"`

	// If the streaming source is an Amazon Kinesis data stream, identifies the
	// stream's Amazon Resource Name (ARN).
	KinesisStreamsInput *KinesisStreamsInput `type:"structure"`

	// The name prefix to use when creating an in-application stream. Suppose that
	// you specify a prefix "MyInApplicationStream." Kinesis Data Analytics then
	// creates one or more (as per the InputParallelism count you specified) in-application
	// streams with the names "MyInApplicationStream_001," "MyInApplicationStream_002,"
	// and so on.
	//
	// NamePrefix is a required field
	NamePrefix *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

When you configure the application input for an SQL-based Amazon Kinesis Data Analytics application, you specify the streaming source, the in-application stream name that is created, and the mapping between the two.

func (Input) String

func (s Input) String() string

String returns the string representation

func (*Input) Validate

func (s *Input) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type InputDescription

type InputDescription struct {

	// Returns the in-application stream names that are mapped to the stream source.
	InAppStreamNames []string `type:"list"`

	// The input ID that is associated with the application input. This is the ID
	// that Kinesis Data Analytics assigns to each input configuration that you
	// add to your application.
	InputId *string `min:"1" type:"string"`

	// Describes the configured parallelism (number of in-application streams mapped
	// to the streaming source).
	InputParallelism *InputParallelism `type:"structure"`

	// The description of the preprocessor that executes on records in this input
	// before the application's code is run.
	InputProcessingConfigurationDescription *InputProcessingConfigurationDescription `type:"structure"`

	// Describes the format of the data in the streaming source, and how each data
	// element maps to corresponding columns in the in-application stream that is
	// being created.
	InputSchema *SourceSchema `type:"structure"`

	// The point at which the application is configured to read from the input stream.
	InputStartingPositionConfiguration *InputStartingPositionConfiguration `type:"structure"`

	// If a Kinesis Data Firehose delivery stream is configured as a streaming source,
	// provides the delivery stream's ARN.
	KinesisFirehoseInputDescription *KinesisFirehoseInputDescription `type:"structure"`

	// If a Kinesis data stream is configured as a streaming source, provides the
	// Kinesis data stream's Amazon Resource Name (ARN).
	KinesisStreamsInputDescription *KinesisStreamsInputDescription `type:"structure"`

	// The in-application name prefix.
	NamePrefix *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Describes the application input configuration for an SQL-based Amazon Kinesis Data Analytics application.

func (InputDescription) String

func (s InputDescription) String() string

String returns the string representation

type InputLambdaProcessor

type InputLambdaProcessor struct {

	// The ARN of the AWS Lambda function that operates on records in the stream.
	//
	// To specify an earlier version of the Lambda function than the latest, include
	// the Lambda function version in the Lambda function ARN. For more information
	// about Lambda ARNs, see Example ARNs: AWS Lambda (/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that contains the Amazon Resource Name (ARN) of the AWS Lambda function that is used to preprocess records in the stream in an SQL-based Amazon Kinesis Data Analytics application.

func (InputLambdaProcessor) String

func (s InputLambdaProcessor) String() string

String returns the string representation

func (*InputLambdaProcessor) Validate

func (s *InputLambdaProcessor) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type InputLambdaProcessorDescription

type InputLambdaProcessorDescription struct {

	// The ARN of the AWS Lambda function that is used to preprocess the records
	// in the stream.
	//
	// To specify an earlier version of the Lambda function than the latest, include
	// the Lambda function version in the Lambda function ARN. For more information
	// about Lambda ARNs, see Example ARNs: AWS Lambda (/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`

	// The ARN of the IAM role that is used to access the AWS Lambda function.
	//
	// Provided for backward compatibility. Applications that are created with the
	// current API version have an application-level service execution role rather
	// than a resource-level role.
	RoleARN *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, an object that contains the Amazon Resource Name (ARN) of the AWS Lambda function that is used to preprocess records in the stream.

func (InputLambdaProcessorDescription) String

String returns the string representation

type InputLambdaProcessorUpdate

type InputLambdaProcessorUpdate struct {

	// The Amazon Resource Name (ARN) of the new AWS Lambda function that is used
	// to preprocess the records in the stream.
	//
	// To specify an earlier version of the Lambda function than the latest, include
	// the Lambda function version in the Lambda function ARN. For more information
	// about Lambda ARNs, see Example ARNs: AWS Lambda (/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
	//
	// ResourceARNUpdate is a required field
	ResourceARNUpdate *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, represents an update to the InputLambdaProcessor that is used to preprocess the records in the stream.

func (InputLambdaProcessorUpdate) String

String returns the string representation

func (*InputLambdaProcessorUpdate) Validate

func (s *InputLambdaProcessorUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type InputParallelism

type InputParallelism struct {

	// The number of in-application streams to create.
	Count *int64 `min:"1" type:"integer"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, describes the number of in-application streams to create for a given streaming source.

func (InputParallelism) String

func (s InputParallelism) String() string

String returns the string representation

func (*InputParallelism) Validate

func (s *InputParallelism) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type InputParallelismUpdate

type InputParallelismUpdate struct {

	// The number of in-application streams to create for the specified streaming
	// source.
	//
	// CountUpdate is a required field
	CountUpdate *int64 `min:"1" type:"integer" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, provides updates to the parallelism count.

func (InputParallelismUpdate) String

func (s InputParallelismUpdate) String() string

String returns the string representation

func (*InputParallelismUpdate) Validate

func (s *InputParallelismUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type InputProcessingConfiguration

type InputProcessingConfiguration struct {

	// The InputLambdaProcessor that is used to preprocess the records in the stream
	// before being processed by your application code.
	//
	// InputLambdaProcessor is a required field
	InputLambdaProcessor *InputLambdaProcessor `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, describes a processor that is used to preprocess the records in the stream before being processed by your application code. Currently, the only input processor available is AWS Lambda (https://aws.amazon.com/documentation/lambda/).

func (InputProcessingConfiguration) String

String returns the string representation

func (*InputProcessingConfiguration) Validate

func (s *InputProcessingConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type InputProcessingConfigurationDescription

type InputProcessingConfigurationDescription struct {

	// Provides configuration information about the associated InputLambdaProcessorDescription
	InputLambdaProcessorDescription *InputLambdaProcessorDescription `type:"structure"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, provides the configuration information about an input processor. Currently, the only input processor available is AWS Lambda (https://aws.amazon.com/documentation/lambda/).

func (InputProcessingConfigurationDescription) String

String returns the string representation

type InputProcessingConfigurationUpdate

type InputProcessingConfigurationUpdate struct {

	// Provides update information for an InputLambdaProcessor.
	//
	// InputLambdaProcessorUpdate is a required field
	InputLambdaProcessorUpdate *InputLambdaProcessorUpdate `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, describes updates to an InputProcessingConfiguration.

func (InputProcessingConfigurationUpdate) String

String returns the string representation

func (*InputProcessingConfigurationUpdate) Validate

Validate inspects the fields of the type to determine if they are valid.

type InputSchemaUpdate

type InputSchemaUpdate struct {

	// A list of RecordColumn objects. Each object describes the mapping of the
	// streaming source element to the corresponding column in the in-application
	// stream.
	RecordColumnUpdates []RecordColumn `min:"1" type:"list"`

	// Specifies the encoding of the records in the streaming source; for example,
	// UTF-8.
	RecordEncodingUpdate *string `type:"string"`

	// Specifies the format of the records on the streaming source.
	RecordFormatUpdate *RecordFormat `type:"structure"`
	// contains filtered or unexported fields
}

Describes updates for an SQL-based Amazon Kinesis Data Analytics application's input schema.

func (InputSchemaUpdate) String

func (s InputSchemaUpdate) String() string

String returns the string representation

func (*InputSchemaUpdate) Validate

func (s *InputSchemaUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type InputStartingPosition

type InputStartingPosition string
const (
	InputStartingPositionNow              InputStartingPosition = "NOW"
	InputStartingPositionTrimHorizon      InputStartingPosition = "TRIM_HORIZON"
	InputStartingPositionLastStoppedPoint InputStartingPosition = "LAST_STOPPED_POINT"
)

Enum values for InputStartingPosition

func (InputStartingPosition) MarshalValue

func (enum InputStartingPosition) MarshalValue() (string, error)

func (InputStartingPosition) MarshalValueBuf

func (enum InputStartingPosition) MarshalValueBuf(b []byte) ([]byte, error)

type InputStartingPositionConfiguration

type InputStartingPositionConfiguration struct {

	// The starting position on the stream.
	//
	//    * NOW - Start reading just after the most recent record in the stream,
	//    and start at the request timestamp that the customer issued.
	//
	//    * TRIM_HORIZON - Start reading at the last untrimmed record in the stream,
	//    which is the oldest record available in the stream. This option is not
	//    available for an Amazon Kinesis Data Firehose delivery stream.
	//
	//    * LAST_STOPPED_POINT - Resume reading from where the application last
	//    stopped reading.
	InputStartingPosition InputStartingPosition `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Describes the point at which the application reads from the streaming source.

func (InputStartingPositionConfiguration) String

String returns the string representation

type InputUpdate

type InputUpdate struct {

	// The input ID of the application input to be updated.
	//
	// InputId is a required field
	InputId *string `min:"1" type:"string" required:"true"`

	// Describes the parallelism updates (the number of in-application streams Kinesis
	// Data Analytics creates for the specific streaming source).
	InputParallelismUpdate *InputParallelismUpdate `type:"structure"`

	// Describes updates to an InputProcessingConfiguration.
	InputProcessingConfigurationUpdate *InputProcessingConfigurationUpdate `type:"structure"`

	// Describes the data format on the streaming source, and how record elements
	// on the streaming source map to columns of the in-application stream that
	// is created.
	InputSchemaUpdate *InputSchemaUpdate `type:"structure"`

	// If a Kinesis Data Firehose delivery stream is the streaming source to be
	// updated, provides an updated stream ARN.
	KinesisFirehoseInputUpdate *KinesisFirehoseInputUpdate `type:"structure"`

	// If a Kinesis data stream is the streaming source to be updated, provides
	// an updated stream Amazon Resource Name (ARN).
	KinesisStreamsInputUpdate *KinesisStreamsInputUpdate `type:"structure"`

	// The name prefix for in-application streams that Kinesis Data Analytics creates
	// for the specific streaming source.
	NamePrefixUpdate *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, describes updates to a specific input configuration (identified by the InputId of an application).

func (InputUpdate) String

func (s InputUpdate) String() string

String returns the string representation

func (*InputUpdate) Validate

func (s *InputUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type JSONMappingParameters

type JSONMappingParameters struct {

	// The path to the top-level parent that contains the records.
	//
	// RecordRowPath is a required field
	RecordRowPath *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, provides additional mapping information when JSON is the record format on the streaming source.

func (JSONMappingParameters) String

func (s JSONMappingParameters) String() string

String returns the string representation

func (*JSONMappingParameters) Validate

func (s *JSONMappingParameters) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type KinesisFirehoseInput

type KinesisFirehoseInput struct {

	// The Amazon Resource Name (ARN) of the delivery stream.
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, identifies a Kinesis Data Firehose delivery stream as the streaming source. You provide the delivery stream's Amazon Resource Name (ARN).

func (KinesisFirehoseInput) String

func (s KinesisFirehoseInput) String() string

String returns the string representation

func (*KinesisFirehoseInput) Validate

func (s *KinesisFirehoseInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type KinesisFirehoseInputDescription

type KinesisFirehoseInputDescription struct {

	// The Amazon Resource Name (ARN) of the delivery stream.
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`

	// The ARN of the IAM role that Kinesis Data Analytics assumes to access the
	// stream.
	//
	// Provided for backward compatibility. Applications that are created with the
	// current API version have an application-level service execution role rather
	// than a resource-level role.
	RoleARN *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Describes the Amazon Kinesis Data Firehose delivery stream that is configured as the streaming source in the application input configuration.

func (KinesisFirehoseInputDescription) String

String returns the string representation

type KinesisFirehoseInputUpdate

type KinesisFirehoseInputUpdate struct {

	// The Amazon Resource Name (ARN) of the input delivery stream to read.
	//
	// ResourceARNUpdate is a required field
	ResourceARNUpdate *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, when updating application input configuration, provides information about a Kinesis Data Firehose delivery stream as the streaming source.

func (KinesisFirehoseInputUpdate) String

String returns the string representation

func (*KinesisFirehoseInputUpdate) Validate

func (s *KinesisFirehoseInputUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type KinesisFirehoseOutput

type KinesisFirehoseOutput struct {

	// The ARN of the destination delivery stream to write to.
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, when configuring application output, identifies a Kinesis Data Firehose delivery stream as the destination. You provide the stream Amazon Resource Name (ARN) of the delivery stream.

func (KinesisFirehoseOutput) String

func (s KinesisFirehoseOutput) String() string

String returns the string representation

func (*KinesisFirehoseOutput) Validate

func (s *KinesisFirehoseOutput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type KinesisFirehoseOutputDescription

type KinesisFirehoseOutputDescription struct {

	// The Amazon Resource Name (ARN) of the delivery stream.
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`

	// The ARN of the IAM role that Kinesis Data Analytics can assume to access
	// the stream.
	//
	// Provided for backward compatibility. Applications that are created with the
	// current API version have an application-level service execution role rather
	// than a resource-level role.
	RoleARN *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application's output, describes the Kinesis Data Firehose delivery stream that is configured as its destination.

func (KinesisFirehoseOutputDescription) String

String returns the string representation

type KinesisFirehoseOutputUpdate

type KinesisFirehoseOutputUpdate struct {

	// The Amazon Resource Name (ARN) of the delivery stream to write to.
	//
	// ResourceARNUpdate is a required field
	ResourceARNUpdate *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, when updating an output configuration using the UpdateApplication operation, provides information about a Kinesis Data Firehose delivery stream that is configured as the destination.

func (KinesisFirehoseOutputUpdate) String

String returns the string representation

func (*KinesisFirehoseOutputUpdate) Validate

func (s *KinesisFirehoseOutputUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type KinesisStreamsInput

type KinesisStreamsInput struct {

	// The ARN of the input Kinesis data stream to read.
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Identifies an Amazon Kinesis data stream as the streaming source. You provide the stream's Amazon Resource Name (ARN).

func (KinesisStreamsInput) String

func (s KinesisStreamsInput) String() string

String returns the string representation

func (*KinesisStreamsInput) Validate

func (s *KinesisStreamsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type KinesisStreamsInputDescription

type KinesisStreamsInputDescription struct {

	// The Amazon Resource Name (ARN) of the Kinesis data stream.
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`

	// The ARN of the IAM role that Kinesis Data Analytics can assume to access
	// the stream.
	//
	// Provided for backward compatibility. Applications that are created with the
	// current API version have an application-level service execution role rather
	// than a resource-level role.
	RoleARN *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, describes the Kinesis data stream that is configured as the streaming source in the application input configuration.

func (KinesisStreamsInputDescription) String

String returns the string representation

type KinesisStreamsInputUpdate

type KinesisStreamsInputUpdate struct {

	// The Amazon Resource Name (ARN) of the input Kinesis data stream to read.
	//
	// ResourceARNUpdate is a required field
	ResourceARNUpdate *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

When you update the input configuration for an SQL-based Amazon Kinesis Data Analytics application, provides information about an Amazon Kinesis stream as the streaming source.

func (KinesisStreamsInputUpdate) String

func (s KinesisStreamsInputUpdate) String() string

String returns the string representation

func (*KinesisStreamsInputUpdate) Validate

func (s *KinesisStreamsInputUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type KinesisStreamsOutput

type KinesisStreamsOutput struct {

	// The ARN of the destination Kinesis data stream to write to.
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

When you configure an SQL-based Amazon Kinesis Data Analytics application's output, identifies a Kinesis data stream as the destination. You provide the stream Amazon Resource Name (ARN).

func (KinesisStreamsOutput) String

func (s KinesisStreamsOutput) String() string

String returns the string representation

func (*KinesisStreamsOutput) Validate

func (s *KinesisStreamsOutput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type KinesisStreamsOutputDescription

type KinesisStreamsOutputDescription struct {

	// The Amazon Resource Name (ARN) of the Kinesis data stream.
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`

	// The ARN of the IAM role that Kinesis Data Analytics can assume to access
	// the stream.
	//
	// Provided for backward compatibility. Applications that are created with the
	// current API version have an application-level service execution role rather
	// than a resource-level role.
	RoleARN *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application's output, describes the Kinesis data stream that is configured as its destination.

func (KinesisStreamsOutputDescription) String

String returns the string representation

type KinesisStreamsOutputUpdate

type KinesisStreamsOutputUpdate struct {

	// The Amazon Resource Name (ARN) of the Kinesis data stream where you want
	// to write the output.
	//
	// ResourceARNUpdate is a required field
	ResourceARNUpdate *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

When you update an SQL-based Amazon Kinesis Data Analytics application's output configuration using the UpdateApplication operation, provides information about a Kinesis data stream that is configured as the destination.

func (KinesisStreamsOutputUpdate) String

String returns the string representation

func (*KinesisStreamsOutputUpdate) Validate

func (s *KinesisStreamsOutputUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type LambdaOutput

type LambdaOutput struct {

	// The Amazon Resource Name (ARN) of the destination Lambda function to write
	// to.
	//
	// To specify an earlier version of the Lambda function than the latest, include
	// the Lambda function version in the Lambda function ARN. For more information
	// about Lambda ARNs, see Example ARNs: AWS Lambda (/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

When you configure an SQL-based Amazon Kinesis Data Analytics application's output, identifies an AWS Lambda function as the destination. You provide the function Amazon Resource Name (ARN) of the Lambda function.

func (LambdaOutput) String

func (s LambdaOutput) String() string

String returns the string representation

func (*LambdaOutput) Validate

func (s *LambdaOutput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type LambdaOutputDescription

type LambdaOutputDescription struct {

	// The Amazon Resource Name (ARN) of the destination Lambda function.
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`

	// The ARN of the IAM role that Kinesis Data Analytics can assume to write to
	// the destination function.
	//
	// Provided for backward compatibility. Applications that are created with the
	// current API version have an application-level service execution role rather
	// than a resource-level role.
	RoleARN *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application output, describes the AWS Lambda function that is configured as its destination.

func (LambdaOutputDescription) String

func (s LambdaOutputDescription) String() string

String returns the string representation

type LambdaOutputUpdate

type LambdaOutputUpdate struct {

	// The Amazon Resource Name (ARN) of the destination AWS Lambda function.
	//
	// To specify an earlier version of the Lambda function than the latest, include
	// the Lambda function version in the Lambda function ARN. For more information
	// about Lambda ARNs, see Example ARNs: AWS Lambda (/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda)
	//
	// ResourceARNUpdate is a required field
	ResourceARNUpdate *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

When you update an SQL-based Amazon Kinesis Data Analytics application's output configuration using the UpdateApplication operation, provides information about an AWS Lambda function that is configured as the destination.

func (LambdaOutputUpdate) String

func (s LambdaOutputUpdate) String() string

String returns the string representation

func (*LambdaOutputUpdate) Validate

func (s *LambdaOutputUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListApplicationSnapshotsInput

type ListApplicationSnapshotsInput struct {

	// The name of an existing application.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// The maximum number of application snapshots to list.
	Limit *int64 `min:"1" type:"integer"`

	// Use this parameter if you receive a NextToken response in a previous request
	// that indicates that there is more output available. Set it to the value of
	// the previous call's NextToken response to indicate where the output should
	// continue from.
	NextToken *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (ListApplicationSnapshotsInput) String

String returns the string representation

func (*ListApplicationSnapshotsInput) Validate

func (s *ListApplicationSnapshotsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListApplicationSnapshotsOutput

type ListApplicationSnapshotsOutput struct {

	// The token for the next set of results, or null if there are no additional
	// results.
	NextToken *string `min:"1" type:"string"`

	// A collection of objects containing information about the application snapshots.
	SnapshotSummaries []SnapshotDetails `type:"list"`
	// contains filtered or unexported fields
}

func (ListApplicationSnapshotsOutput) String

String returns the string representation

type ListApplicationSnapshotsRequest

type ListApplicationSnapshotsRequest struct {
	*aws.Request
	Input *ListApplicationSnapshotsInput
	Copy  func(*ListApplicationSnapshotsInput) ListApplicationSnapshotsRequest
}

ListApplicationSnapshotsRequest is the request type for the ListApplicationSnapshots API operation.

func (ListApplicationSnapshotsRequest) Send

Send marshals and sends the ListApplicationSnapshots API request.

type ListApplicationSnapshotsResponse added in v0.9.0

type ListApplicationSnapshotsResponse struct {
	*ListApplicationSnapshotsOutput
	// contains filtered or unexported fields
}

ListApplicationSnapshotsResponse is the response type for the ListApplicationSnapshots API operation.

func (*ListApplicationSnapshotsResponse) SDKResponseMetdata added in v0.9.0

func (r *ListApplicationSnapshotsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListApplicationSnapshots request.

type ListApplicationsInput

type ListApplicationsInput struct {

	// The maximum number of applications to list.
	Limit *int64 `min:"1" type:"integer"`

	// If a previous command returned a pagination token, pass it into this value
	// to retrieve the next set of results. For more information about pagination,
	// see Using the AWS Command Line Interface's Pagination Options (https://docs.aws.amazon.com/cli/latest/userguide/pagination.html).
	NextToken *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (ListApplicationsInput) String

func (s ListApplicationsInput) String() string

String returns the string representation

func (*ListApplicationsInput) Validate

func (s *ListApplicationsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListApplicationsOutput

type ListApplicationsOutput struct {

	// A list of ApplicationSummary objects.
	//
	// ApplicationSummaries is a required field
	ApplicationSummaries []ApplicationSummary `type:"list" required:"true"`

	// The pagination token for the next set of results, or null if there are no
	// additional results. Pass this token into a subsequent command to retrieve
	// the next set of items For more information about pagination, see Using the
	// AWS Command Line Interface's Pagination Options (https://docs.aws.amazon.com/cli/latest/userguide/pagination.html).
	NextToken *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (ListApplicationsOutput) String

func (s ListApplicationsOutput) String() string

String returns the string representation

type ListApplicationsRequest

type ListApplicationsRequest struct {
	*aws.Request
	Input *ListApplicationsInput
	Copy  func(*ListApplicationsInput) ListApplicationsRequest
}

ListApplicationsRequest is the request type for the ListApplications API operation.

func (ListApplicationsRequest) Send

Send marshals and sends the ListApplications API request.

type ListApplicationsResponse added in v0.9.0

type ListApplicationsResponse struct {
	*ListApplicationsOutput
	// contains filtered or unexported fields
}

ListApplicationsResponse is the response type for the ListApplications API operation.

func (*ListApplicationsResponse) SDKResponseMetdata added in v0.9.0

func (r *ListApplicationsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListApplications request.

type ListTagsForResourceInput added in v0.9.0

type ListTagsForResourceInput struct {

	// The ARN of the application for which to retrieve tags.
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListTagsForResourceInput) String added in v0.9.0

func (s ListTagsForResourceInput) String() string

String returns the string representation

func (*ListTagsForResourceInput) Validate added in v0.9.0

func (s *ListTagsForResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListTagsForResourceOutput added in v0.9.0

type ListTagsForResourceOutput struct {

	// The key-value tags assigned to the application.
	Tags []Tag `min:"1" type:"list"`
	// contains filtered or unexported fields
}

func (ListTagsForResourceOutput) String added in v0.9.0

func (s ListTagsForResourceOutput) String() string

String returns the string representation

type ListTagsForResourceRequest added in v0.9.0

type ListTagsForResourceRequest struct {
	*aws.Request
	Input *ListTagsForResourceInput
	Copy  func(*ListTagsForResourceInput) ListTagsForResourceRequest
}

ListTagsForResourceRequest is the request type for the ListTagsForResource API operation.

func (ListTagsForResourceRequest) Send added in v0.9.0

Send marshals and sends the ListTagsForResource API request.

type ListTagsForResourceResponse added in v0.9.0

type ListTagsForResourceResponse struct {
	*ListTagsForResourceOutput
	// contains filtered or unexported fields
}

ListTagsForResourceResponse is the response type for the ListTagsForResource API operation.

func (*ListTagsForResourceResponse) SDKResponseMetdata added in v0.9.0

func (r *ListTagsForResourceResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListTagsForResource request.

type LogLevel

type LogLevel string
const (
	LogLevelInfo  LogLevel = "INFO"
	LogLevelWarn  LogLevel = "WARN"
	LogLevelError LogLevel = "ERROR"
	LogLevelDebug LogLevel = "DEBUG"
)

Enum values for LogLevel

func (LogLevel) MarshalValue

func (enum LogLevel) MarshalValue() (string, error)

func (LogLevel) MarshalValueBuf

func (enum LogLevel) MarshalValueBuf(b []byte) ([]byte, error)

type MappingParameters

type MappingParameters struct {

	// Provides additional mapping information when the record format uses delimiters
	// (for example, CSV).
	CSVMappingParameters *CSVMappingParameters `type:"structure"`

	// Provides additional mapping information when JSON is the record format on
	// the streaming source.
	JSONMappingParameters *JSONMappingParameters `type:"structure"`
	// contains filtered or unexported fields
}

When you configure an SQL-based Amazon Kinesis Data Analytics application's input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.

func (MappingParameters) String

func (s MappingParameters) String() string

String returns the string representation

func (*MappingParameters) Validate

func (s *MappingParameters) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type MetricsLevel

type MetricsLevel string
const (
	MetricsLevelApplication MetricsLevel = "APPLICATION"
	MetricsLevelTask        MetricsLevel = "TASK"
	MetricsLevelOperator    MetricsLevel = "OPERATOR"
	MetricsLevelParallelism MetricsLevel = "PARALLELISM"
)

Enum values for MetricsLevel

func (MetricsLevel) MarshalValue

func (enum MetricsLevel) MarshalValue() (string, error)

func (MetricsLevel) MarshalValueBuf

func (enum MetricsLevel) MarshalValueBuf(b []byte) ([]byte, error)

type MonitoringConfiguration

type MonitoringConfiguration struct {

	// Describes whether to use the default CloudWatch logging configuration for
	// an application. You must set this property to CUSTOM in order to set the
	// LogLevel or MetricsLevel parameters.
	//
	// ConfigurationType is a required field
	ConfigurationType ConfigurationType `type:"string" required:"true" enum:"true"`

	// Describes the verbosity of the CloudWatch Logs for an application.
	LogLevel LogLevel `type:"string" enum:"true"`

	// Describes the granularity of the CloudWatch Logs for an application.
	MetricsLevel MetricsLevel `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Describes configuration parameters for Amazon CloudWatch logging for a Java-based Kinesis Data Analytics application. For more information about CloudWatch logging, see Monitoring (https://docs.aws.amazon.com/kinesisanalytics/latest/java/monitoring-overview.html).

func (MonitoringConfiguration) String

func (s MonitoringConfiguration) String() string

String returns the string representation

func (*MonitoringConfiguration) Validate

func (s *MonitoringConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type MonitoringConfigurationDescription

type MonitoringConfigurationDescription struct {

	// Describes whether to use the default CloudWatch logging configuration for
	// an application.
	ConfigurationType ConfigurationType `type:"string" enum:"true"`

	// Describes the verbosity of the CloudWatch Logs for an application.
	LogLevel LogLevel `type:"string" enum:"true"`

	// Describes the granularity of the CloudWatch Logs for an application.
	MetricsLevel MetricsLevel `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Describes configuration parameters for CloudWatch logging for a Java-based Kinesis Data Analytics application.

func (MonitoringConfigurationDescription) String

String returns the string representation

type MonitoringConfigurationUpdate

type MonitoringConfigurationUpdate struct {

	// Describes updates to whether to use the default CloudWatch logging configuration
	// for an application. You must set this property to CUSTOM in order to set
	// the LogLevel or MetricsLevel parameters.
	ConfigurationTypeUpdate ConfigurationType `type:"string" enum:"true"`

	// Describes updates to the verbosity of the CloudWatch Logs for an application.
	LogLevelUpdate LogLevel `type:"string" enum:"true"`

	// Describes updates to the granularity of the CloudWatch Logs for an application.
	MetricsLevelUpdate MetricsLevel `type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Describes updates to configuration parameters for Amazon CloudWatch logging for a Java-based Kinesis Data Analytics application.

func (MonitoringConfigurationUpdate) String

String returns the string representation

type Output

type Output struct {

	// Describes the data format when records are written to the destination.
	//
	// DestinationSchema is a required field
	DestinationSchema *DestinationSchema `type:"structure" required:"true"`

	// Identifies an Amazon Kinesis Data Firehose delivery stream as the destination.
	KinesisFirehoseOutput *KinesisFirehoseOutput `type:"structure"`

	// Identifies an Amazon Kinesis data stream as the destination.
	KinesisStreamsOutput *KinesisStreamsOutput `type:"structure"`

	// Identifies an AWS Lambda function as the destination.
	LambdaOutput *LambdaOutput `type:"structure"`

	// The name of the in-application stream.
	//
	// Name is a required field
	Name *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Describes an SQL-based Amazon Kinesis Data Analytics application's output configuration, in which you identify an in-application stream and a destination where you want the in-application stream data to be written. The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.

func (Output) String

func (s Output) String() string

String returns the string representation

func (*Output) Validate

func (s *Output) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type OutputDescription

type OutputDescription struct {

	// The data format used for writing data to the destination.
	DestinationSchema *DestinationSchema `type:"structure"`

	// Describes the Kinesis Data Firehose delivery stream that is configured as
	// the destination where output is written.
	KinesisFirehoseOutputDescription *KinesisFirehoseOutputDescription `type:"structure"`

	// Describes the Kinesis data stream that is configured as the destination where
	// output is written.
	KinesisStreamsOutputDescription *KinesisStreamsOutputDescription `type:"structure"`

	// Describes the Lambda function that is configured as the destination where
	// output is written.
	LambdaOutputDescription *LambdaOutputDescription `type:"structure"`

	// The name of the in-application stream that is configured as output.
	Name *string `min:"1" type:"string"`

	// A unique identifier for the output configuration.
	OutputId *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, describes the application output configuration, which includes the in-application stream name and the destination where the stream data is written. The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.

func (OutputDescription) String

func (s OutputDescription) String() string

String returns the string representation

type OutputUpdate

type OutputUpdate struct {

	// Describes the data format when records are written to the destination.
	DestinationSchemaUpdate *DestinationSchema `type:"structure"`

	// Describes a Kinesis Data Firehose delivery stream as the destination for
	// the output.
	KinesisFirehoseOutputUpdate *KinesisFirehoseOutputUpdate `type:"structure"`

	// Describes a Kinesis data stream as the destination for the output.
	KinesisStreamsOutputUpdate *KinesisStreamsOutputUpdate `type:"structure"`

	// Describes an AWS Lambda function as the destination for the output.
	LambdaOutputUpdate *LambdaOutputUpdate `type:"structure"`

	// If you want to specify a different in-application stream for this output
	// configuration, use this field to specify the new in-application stream name.
	NameUpdate *string `min:"1" type:"string"`

	// Identifies the specific output configuration that you want to update.
	//
	// OutputId is a required field
	OutputId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, describes updates to the output configuration identified by the OutputId.

func (OutputUpdate) String

func (s OutputUpdate) String() string

String returns the string representation

func (*OutputUpdate) Validate

func (s *OutputUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ParallelismConfiguration

type ParallelismConfiguration struct {

	// Describes whether the Kinesis Data Analytics service can increase the parallelism
	// of the application in response to increased throughput.
	AutoScalingEnabled *bool `type:"boolean"`

	// Describes whether the application uses the default parallelism for the Kinesis
	// Data Analytics service. You must set this property to CUSTOM in order to
	// change your application's AutoScalingEnabled, Parallelism, or ParallelismPerKPU
	// properties.
	//
	// ConfigurationType is a required field
	ConfigurationType ConfigurationType `type:"string" required:"true" enum:"true"`

	// Describes the initial number of parallel tasks that a Java-based Kinesis
	// Data Analytics application can perform. If AutoScalingEnabled is set to True,
	// Kinesis Data Analytics increases the CurrentParallelism value in response
	// to application load. The service can increase the CurrentParallelism value
	// up to the maximum parallelism, which is ParalellismPerKPU times the maximum
	// KPUs for the application. The maximum KPUs for an application is 32 by default,
	// and can be increased by requesting a limit increase. If application load
	// is reduced, the service can reduce the CurrentParallelism value down to the
	// Parallelism setting.
	Parallelism *int64 `min:"1" type:"integer"`

	// Describes the number of parallel tasks that a Java-based Kinesis Data Analytics
	// application can perform per Kinesis Processing Unit (KPU) used by the application.
	// For more information about KPUs, see Amazon Kinesis Data Analytics Pricing
	// (http://aws.amazon.com/kinesis/data-analytics/pricing/).
	ParallelismPerKPU *int64 `min:"1" type:"integer"`
	// contains filtered or unexported fields
}

Describes parameters for how a Java-based Amazon Kinesis Data Analytics application executes multiple tasks simultaneously. For more information about parallelism, see Parallel Execution (https://ci.apache.org/projects/flink/flink-docs-stable/dev/parallel.html) in the Apache Flink Documentation (https://ci.apache.org/projects/flink/flink-docs-release-1.6/).

func (ParallelismConfiguration) String

func (s ParallelismConfiguration) String() string

String returns the string representation

func (*ParallelismConfiguration) Validate

func (s *ParallelismConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ParallelismConfigurationDescription

type ParallelismConfigurationDescription struct {

	// Describes whether the Kinesis Data Analytics service can increase the parallelism
	// of the application in response to increased throughput.
	AutoScalingEnabled *bool `type:"boolean"`

	// Describes whether the application uses the default parallelism for the Kinesis
	// Data Analytics service.
	ConfigurationType ConfigurationType `type:"string" enum:"true"`

	// Describes the current number of parallel tasks that a Java-based Kinesis
	// Data Analytics application can perform. If AutoScalingEnabled is set to True,
	// Kinesis Data Analytics can increase this value in response to application
	// load. The service can increase this value up to the maximum parallelism,
	// which is ParalellismPerKPU times the maximum KPUs for the application. The
	// maximum KPUs for an application is 32 by default, and can be increased by
	// requesting a limit increase. If application load is reduced, the service
	// can reduce the CurrentParallelism value down to the Parallelism setting.
	CurrentParallelism *int64 `min:"1" type:"integer"`

	// Describes the initial number of parallel tasks that a Java-based Kinesis
	// Data Analytics application can perform. If AutoScalingEnabled is set to True,
	// then Kinesis Data Analytics can increase the CurrentParallelism value in
	// response to application load. The service can increase CurrentParallelism
	// up to the maximum parallelism, which is ParalellismPerKPU times the maximum
	// KPUs for the application. The maximum KPUs for an application is 32 by default,
	// and can be increased by requesting a limit increase. If application load
	// is reduced, the service can reduce the CurrentParallelism value down to the
	// Parallelism setting.
	Parallelism *int64 `min:"1" type:"integer"`

	// Describes the number of parallel tasks that a Java-based Kinesis Data Analytics
	// application can perform per Kinesis Processing Unit (KPU) used by the application.
	ParallelismPerKPU *int64 `min:"1" type:"integer"`
	// contains filtered or unexported fields
}

Describes parameters for how a Java-based Kinesis Data Analytics application executes multiple tasks simultaneously.

func (ParallelismConfigurationDescription) String

String returns the string representation

type ParallelismConfigurationUpdate

type ParallelismConfigurationUpdate struct {

	// Describes updates to whether the Kinesis Data Analytics service can increase
	// the parallelism of the application in response to increased throughput.
	AutoScalingEnabledUpdate *bool `type:"boolean"`

	// Describes updates to whether the application uses the default parallelism
	// for the Kinesis Data Analytics service, or if a custom parallelism is used.
	// You must set this property to CUSTOM in order to change your application's
	// AutoScalingEnabled, Parallelism, or ParallelismPerKPU properties.
	ConfigurationTypeUpdate ConfigurationType `type:"string" enum:"true"`

	// Describes updates to the number of parallel tasks an application can perform
	// per Kinesis Processing Unit (KPU) used by the application.
	ParallelismPerKPUUpdate *int64 `min:"1" type:"integer"`

	// Describes updates to the initial number of parallel tasks an application
	// can perform. If AutoScalingEnabled is set to True, then Kinesis Data Analytics
	// can increase the CurrentParallelism value in response to application load.
	// The service can increase CurrentParallelism up to the maximum parallelism,
	// which is ParalellismPerKPU times the maximum KPUs for the application. The
	// maximum KPUs for an application is 32 by default, and can be increased by
	// requesting a limit increase. If application load is reduced, the service
	// will reduce CurrentParallelism down to the Parallelism setting.
	ParallelismUpdate *int64 `min:"1" type:"integer"`
	// contains filtered or unexported fields
}

Describes updates to parameters for how a Java-based Kinesis Data Analytics application executes multiple tasks simultaneously.

func (ParallelismConfigurationUpdate) String

String returns the string representation

func (*ParallelismConfigurationUpdate) Validate

func (s *ParallelismConfigurationUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PropertyGroup

type PropertyGroup struct {

	// Describes the key of an application execution property key-value pair.
	//
	// PropertyGroupId is a required field
	PropertyGroupId *string `min:"1" type:"string" required:"true"`

	// Describes the value of an application execution property key-value pair.
	//
	// PropertyMap is a required field
	PropertyMap map[string]string `min:"1" type:"map" required:"true"`
	// contains filtered or unexported fields
}

Property key-value pairs passed into a Java-based Kinesis Data Analytics application.

func (PropertyGroup) String

func (s PropertyGroup) String() string

String returns the string representation

func (*PropertyGroup) Validate

func (s *PropertyGroup) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RecordColumn

type RecordColumn struct {

	// A reference to the data element in the streaming input or the reference data
	// source.
	Mapping *string `type:"string"`

	// The name of the column that is created in the in-application input stream
	// or reference table.
	//
	// Name is a required field
	Name *string `type:"string" required:"true"`

	// The type of column created in the in-application input stream or reference
	// table.
	//
	// SqlType is a required field
	SqlType *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, describes the mapping of each data element in the streaming source to the corresponding column in the in-application stream.

Also used to describe the format of the reference data source.

func (RecordColumn) String

func (s RecordColumn) String() string

String returns the string representation

func (*RecordColumn) Validate

func (s *RecordColumn) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RecordFormat

type RecordFormat struct {

	// When you configure application input at the time of creating or updating
	// an application, provides additional mapping information specific to the record
	// format (such as JSON, CSV, or record fields delimited by some delimiter)
	// on the streaming source.
	MappingParameters *MappingParameters `type:"structure"`

	// The type of record format.
	//
	// RecordFormatType is a required field
	RecordFormatType RecordFormatType `type:"string" required:"true" enum:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, describes the record format and relevant mapping information that should be applied to schematize the records on the stream.

func (RecordFormat) String

func (s RecordFormat) String() string

String returns the string representation

func (*RecordFormat) Validate

func (s *RecordFormat) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RecordFormatType

type RecordFormatType string
const (
	RecordFormatTypeJson RecordFormatType = "JSON"
	RecordFormatTypeCsv  RecordFormatType = "CSV"
)

Enum values for RecordFormatType

func (RecordFormatType) MarshalValue

func (enum RecordFormatType) MarshalValue() (string, error)

func (RecordFormatType) MarshalValueBuf

func (enum RecordFormatType) MarshalValueBuf(b []byte) ([]byte, error)

type ReferenceDataSource

type ReferenceDataSource struct {

	// Describes the format of the data in the streaming source, and how each data
	// element maps to corresponding columns created in the in-application stream.
	//
	// ReferenceSchema is a required field
	ReferenceSchema *SourceSchema `type:"structure" required:"true"`

	// Identifies the S3 bucket and object that contains the reference data. A Kinesis
	// Data Analytics application loads reference data only once. If the data changes,
	// you call the UpdateApplication operation to trigger reloading of data into
	// your application.
	S3ReferenceDataSource *S3ReferenceDataSource `type:"structure"`

	// The name of the in-application table to create.
	//
	// TableName is a required field
	TableName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, describes the reference data source by providing the source information (Amazon S3 bucket name and object key name), the resulting in-application table name that is created, and the necessary schema to map the data elements in the Amazon S3 object to the in-application table.

func (ReferenceDataSource) String

func (s ReferenceDataSource) String() string

String returns the string representation

func (*ReferenceDataSource) Validate

func (s *ReferenceDataSource) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReferenceDataSourceDescription

type ReferenceDataSourceDescription struct {

	// The ID of the reference data source. This is the ID that Kinesis Data Analytics
	// assigns when you add the reference data source to your application using
	// the CreateApplication or UpdateApplication operation.
	//
	// ReferenceId is a required field
	ReferenceId *string `min:"1" type:"string" required:"true"`

	// Describes the format of the data in the streaming source, and how each data
	// element maps to corresponding columns created in the in-application stream.
	ReferenceSchema *SourceSchema `type:"structure"`

	// Provides the Amazon S3 bucket name, the object key name that contains the
	// reference data.
	//
	// S3ReferenceDataSourceDescription is a required field
	S3ReferenceDataSourceDescription *S3ReferenceDataSourceDescription `type:"structure" required:"true"`

	// The in-application table name created by the specific reference data source
	// configuration.
	//
	// TableName is a required field
	TableName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, describes the reference data source configured for an application.

func (ReferenceDataSourceDescription) String

String returns the string representation

type ReferenceDataSourceUpdate

type ReferenceDataSourceUpdate struct {

	// The ID of the reference data source that is being updated. You can use the
	// DescribeApplication operation to get this value.
	//
	// ReferenceId is a required field
	ReferenceId *string `min:"1" type:"string" required:"true"`

	// Describes the format of the data in the streaming source, and how each data
	// element maps to corresponding columns created in the in-application stream.
	ReferenceSchemaUpdate *SourceSchema `type:"structure"`

	// Describes the S3 bucket name, object key name, and IAM role that Kinesis
	// Data Analytics can assume to read the Amazon S3 object on your behalf and
	// populate the in-application reference table.
	S3ReferenceDataSourceUpdate *S3ReferenceDataSourceUpdate `type:"structure"`

	// The in-application table name that is created by this update.
	TableNameUpdate *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

When you update a reference data source configuration for a SQL-based Amazon Kinesis Data Analytics application, this object provides all the updated values (such as the source bucket name and object key name), the in-application table name that is created, and updated mapping information that maps the data in the Amazon S3 object to the in-application reference table that is created.

func (ReferenceDataSourceUpdate) String

func (s ReferenceDataSourceUpdate) String() string

String returns the string representation

func (*ReferenceDataSourceUpdate) Validate

func (s *ReferenceDataSourceUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RunConfiguration

type RunConfiguration struct {

	// Describes the restore behavior of a restarting application.
	ApplicationRestoreConfiguration *ApplicationRestoreConfiguration `type:"structure"`

	// Describes the starting parameters for an Apache Flink-based Kinesis Data
	// Analytics application.
	FlinkRunConfiguration *FlinkRunConfiguration `type:"structure"`

	// Describes the starting parameters for an SQL-based Kinesis Data Analytics
	// application.
	SqlRunConfigurations []SqlRunConfiguration `type:"list"`
	// contains filtered or unexported fields
}

Describes the starting parameters for an Amazon Kinesis Data Analytics application.

func (RunConfiguration) String

func (s RunConfiguration) String() string

String returns the string representation

func (*RunConfiguration) Validate

func (s *RunConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RunConfigurationDescription

type RunConfigurationDescription struct {

	// Describes the restore behavior of a restarting application.
	ApplicationRestoreConfigurationDescription *ApplicationRestoreConfiguration `type:"structure"`
	// contains filtered or unexported fields
}

Describes the starting properties for a Kinesis Data Analytics application.

func (RunConfigurationDescription) String

String returns the string representation

type RunConfigurationUpdate

type RunConfigurationUpdate struct {

	// Describes updates to the restore behavior of a restarting application.
	ApplicationRestoreConfiguration *ApplicationRestoreConfiguration `type:"structure"`

	// Describes the starting parameters for an Apache Flink-based Kinesis Data
	// Analytics application.
	FlinkRunConfiguration *FlinkRunConfiguration `type:"structure"`
	// contains filtered or unexported fields
}

Describes the updates to the starting parameters for a Kinesis Data Analytics application.

func (RunConfigurationUpdate) String

func (s RunConfigurationUpdate) String() string

String returns the string representation

func (*RunConfigurationUpdate) Validate

func (s *RunConfigurationUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RuntimeEnvironment

type RuntimeEnvironment string
const (
	RuntimeEnvironmentSql10   RuntimeEnvironment = "SQL-1_0"
	RuntimeEnvironmentFlink16 RuntimeEnvironment = "FLINK-1_6"
	RuntimeEnvironmentFlink18 RuntimeEnvironment = "FLINK-1_8"
)

Enum values for RuntimeEnvironment

func (RuntimeEnvironment) MarshalValue

func (enum RuntimeEnvironment) MarshalValue() (string, error)

func (RuntimeEnvironment) MarshalValueBuf

func (enum RuntimeEnvironment) MarshalValueBuf(b []byte) ([]byte, error)

type S3ApplicationCodeLocationDescription

type S3ApplicationCodeLocationDescription struct {

	// The Amazon Resource Name (ARN) for the S3 bucket containing the application
	// code.
	//
	// BucketARN is a required field
	BucketARN *string `min:"1" type:"string" required:"true"`

	// The file key for the object containing the application code.
	//
	// FileKey is a required field
	FileKey *string `min:"1" type:"string" required:"true"`

	// The version of the object containing the application code.
	ObjectVersion *string `type:"string"`
	// contains filtered or unexported fields
}

Describes the location of a Java-based Amazon Kinesis Data Analytics application's code stored in an S3 bucket.

func (S3ApplicationCodeLocationDescription) String

String returns the string representation

type S3Configuration

type S3Configuration struct {

	// The ARN of the S3 bucket that contains the data.
	//
	// BucketARN is a required field
	BucketARN *string `min:"1" type:"string" required:"true"`

	// The name of the object that contains the data.
	//
	// FileKey is a required field
	FileKey *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, provides a description of an Amazon S3 data source, including the Amazon Resource Name (ARN) of the S3 bucket and the name of the Amazon S3 object that contains the data.

func (S3Configuration) String

func (s S3Configuration) String() string

String returns the string representation

func (*S3Configuration) Validate

func (s *S3Configuration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type S3ContentLocation

type S3ContentLocation struct {

	// The Amazon Resource Name (ARN) for the S3 bucket containing the application
	// code.
	//
	// BucketARN is a required field
	BucketARN *string `min:"1" type:"string" required:"true"`

	// The file key for the object containing the application code.
	//
	// FileKey is a required field
	FileKey *string `min:"1" type:"string" required:"true"`

	// The version of the object containing the application code.
	ObjectVersion *string `type:"string"`
	// contains filtered or unexported fields
}

For a Java-based Amazon Kinesis Data Analytics application, provides a description of an Amazon S3 object, including the Amazon Resource Name (ARN) of the S3 bucket, the name of the Amazon S3 object that contains the data, and the version number of the Amazon S3 object that contains the data.

func (S3ContentLocation) String

func (s S3ContentLocation) String() string

String returns the string representation

func (*S3ContentLocation) Validate

func (s *S3ContentLocation) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type S3ContentLocationUpdate

type S3ContentLocationUpdate struct {

	// The new Amazon Resource Name (ARN) for the S3 bucket containing the application
	// code.
	BucketARNUpdate *string `min:"1" type:"string"`

	// The new file key for the object containing the application code.
	FileKeyUpdate *string `min:"1" type:"string"`

	// The new version of the object containing the application code.
	ObjectVersionUpdate *string `type:"string"`
	// contains filtered or unexported fields
}

Describes an update for the Amazon S3 code content location for a Java-based Amazon Kinesis Data Analytics application.

func (S3ContentLocationUpdate) String

func (s S3ContentLocationUpdate) String() string

String returns the string representation

func (*S3ContentLocationUpdate) Validate

func (s *S3ContentLocationUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type S3ReferenceDataSource

type S3ReferenceDataSource struct {

	// The Amazon Resource Name (ARN) of the S3 bucket.
	BucketARN *string `min:"1" type:"string"`

	// The object key name containing the reference data.
	FileKey *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, identifies the Amazon S3 bucket and object that contains the reference data.

A Kinesis Data Analytics application loads reference data only once. If the data changes, you call the UpdateApplication operation to trigger reloading of data into your application.

func (S3ReferenceDataSource) String

func (s S3ReferenceDataSource) String() string

String returns the string representation

func (*S3ReferenceDataSource) Validate

func (s *S3ReferenceDataSource) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type S3ReferenceDataSourceDescription

type S3ReferenceDataSourceDescription struct {

	// The Amazon Resource Name (ARN) of the S3 bucket.
	//
	// BucketARN is a required field
	BucketARN *string `min:"1" type:"string" required:"true"`

	// Amazon S3 object key name.
	//
	// FileKey is a required field
	FileKey *string `min:"1" type:"string" required:"true"`

	// The ARN of the IAM role that Kinesis Data Analytics can assume to read the
	// Amazon S3 object on your behalf to populate the in-application reference
	// table.
	//
	// Provided for backward compatibility. Applications that are created with the
	// current API version have an application-level service execution role rather
	// than a resource-level role.
	ReferenceRoleARN *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, provides the bucket name and object key name that stores the reference data.

func (S3ReferenceDataSourceDescription) String

String returns the string representation

type S3ReferenceDataSourceUpdate

type S3ReferenceDataSourceUpdate struct {

	// The Amazon Resource Name (ARN) of the S3 bucket.
	BucketARNUpdate *string `min:"1" type:"string"`

	// The object key name.
	FileKeyUpdate *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, describes the Amazon S3 bucket name and object key name for an in-application reference table.

func (S3ReferenceDataSourceUpdate) String

String returns the string representation

func (*S3ReferenceDataSourceUpdate) Validate

func (s *S3ReferenceDataSourceUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SnapshotDetails

type SnapshotDetails struct {

	// The current application version ID when the snapshot was created.
	//
	// ApplicationVersionId is a required field
	ApplicationVersionId *int64 `min:"1" type:"long" required:"true"`

	// The timestamp of the application snapshot.
	SnapshotCreationTimestamp *time.Time `type:"timestamp"`

	// The identifier for the application snapshot.
	//
	// SnapshotName is a required field
	SnapshotName *string `min:"1" type:"string" required:"true"`

	// The status of the application snapshot.
	//
	// SnapshotStatus is a required field
	SnapshotStatus SnapshotStatus `type:"string" required:"true" enum:"true"`
	// contains filtered or unexported fields
}

Provides details about a snapshot of application state.

func (SnapshotDetails) String

func (s SnapshotDetails) String() string

String returns the string representation

type SnapshotStatus

type SnapshotStatus string
const (
	SnapshotStatusCreating SnapshotStatus = "CREATING"
	SnapshotStatusReady    SnapshotStatus = "READY"
	SnapshotStatusDeleting SnapshotStatus = "DELETING"
	SnapshotStatusFailed   SnapshotStatus = "FAILED"
)

Enum values for SnapshotStatus

func (SnapshotStatus) MarshalValue

func (enum SnapshotStatus) MarshalValue() (string, error)

func (SnapshotStatus) MarshalValueBuf

func (enum SnapshotStatus) MarshalValueBuf(b []byte) ([]byte, error)

type SourceSchema

type SourceSchema struct {

	// A list of RecordColumn objects.
	//
	// RecordColumns is a required field
	RecordColumns []RecordColumn `min:"1" type:"list" required:"true"`

	// Specifies the encoding of the records in the streaming source. For example,
	// UTF-8.
	RecordEncoding *string `type:"string"`

	// Specifies the format of the records on the streaming source.
	//
	// RecordFormat is a required field
	RecordFormat *RecordFormat `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

For an SQL-based Amazon Kinesis Data Analytics application, describes the format of the data in the streaming source, and how each data element maps to corresponding columns created in the in-application stream.

func (SourceSchema) String

func (s SourceSchema) String() string

String returns the string representation

func (*SourceSchema) Validate

func (s *SourceSchema) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SqlApplicationConfiguration

type SqlApplicationConfiguration struct {

	// The array of Input objects describing the input streams used by the application.
	Inputs []Input `type:"list"`

	// The array of Output objects describing the destination streams used by the
	// application.
	Outputs []Output `type:"list"`

	// The array of ReferenceDataSource objects describing the reference data sources
	// used by the application.
	ReferenceDataSources []ReferenceDataSource `type:"list"`
	// contains filtered or unexported fields
}

Describes the inputs, outputs, and reference data sources for an SQL-based Kinesis Data Analytics application.

func (SqlApplicationConfiguration) String

String returns the string representation

func (*SqlApplicationConfiguration) Validate

func (s *SqlApplicationConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SqlApplicationConfigurationDescription

type SqlApplicationConfigurationDescription struct {

	// The array of InputDescription objects describing the input streams used by
	// the application.
	InputDescriptions []InputDescription `type:"list"`

	// The array of OutputDescription objects describing the destination streams
	// used by the application.
	OutputDescriptions []OutputDescription `type:"list"`

	// The array of ReferenceDataSourceDescription objects describing the reference
	// data sources used by the application.
	ReferenceDataSourceDescriptions []ReferenceDataSourceDescription `type:"list"`
	// contains filtered or unexported fields
}

Describes the inputs, outputs, and reference data sources for an SQL-based Kinesis Data Analytics application.

func (SqlApplicationConfigurationDescription) String

String returns the string representation

type SqlApplicationConfigurationUpdate

type SqlApplicationConfigurationUpdate struct {

	// The array of InputUpdate objects describing the new input streams used by
	// the application.
	InputUpdates []InputUpdate `type:"list"`

	// The array of OutputUpdate objects describing the new destination streams
	// used by the application.
	OutputUpdates []OutputUpdate `type:"list"`

	// The array of ReferenceDataSourceUpdate objects describing the new reference
	// data sources used by the application.
	ReferenceDataSourceUpdates []ReferenceDataSourceUpdate `type:"list"`
	// contains filtered or unexported fields
}

Describes updates to the input streams, destination streams, and reference data sources for an SQL-based Kinesis Data Analytics application.

func (SqlApplicationConfigurationUpdate) String

String returns the string representation

func (*SqlApplicationConfigurationUpdate) Validate

Validate inspects the fields of the type to determine if they are valid.

type SqlRunConfiguration

type SqlRunConfiguration struct {

	// The input source ID. You can get this ID by calling the DescribeApplication
	// operation.
	//
	// InputId is a required field
	InputId *string `min:"1" type:"string" required:"true"`

	// The point at which you want the application to start processing records from
	// the streaming source.
	//
	// InputStartingPositionConfiguration is a required field
	InputStartingPositionConfiguration *InputStartingPositionConfiguration `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

Describes the starting parameters for an SQL-based Kinesis Data Analytics application.

func (SqlRunConfiguration) String

func (s SqlRunConfiguration) String() string

String returns the string representation

func (*SqlRunConfiguration) Validate

func (s *SqlRunConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartApplicationInput

type StartApplicationInput struct {

	// The name of the application.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// Identifies the run configuration (start parameters) of a Kinesis Data Analytics
	// application.
	//
	// RunConfiguration is a required field
	RunConfiguration *RunConfiguration `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (StartApplicationInput) String

func (s StartApplicationInput) String() string

String returns the string representation

func (*StartApplicationInput) Validate

func (s *StartApplicationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartApplicationOutput

type StartApplicationOutput struct {
	// contains filtered or unexported fields
}

func (StartApplicationOutput) String

func (s StartApplicationOutput) String() string

String returns the string representation

type StartApplicationRequest

type StartApplicationRequest struct {
	*aws.Request
	Input *StartApplicationInput
	Copy  func(*StartApplicationInput) StartApplicationRequest
}

StartApplicationRequest is the request type for the StartApplication API operation.

func (StartApplicationRequest) Send

Send marshals and sends the StartApplication API request.

type StartApplicationResponse added in v0.9.0

type StartApplicationResponse struct {
	*StartApplicationOutput
	// contains filtered or unexported fields
}

StartApplicationResponse is the response type for the StartApplication API operation.

func (*StartApplicationResponse) SDKResponseMetdata added in v0.9.0

func (r *StartApplicationResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the StartApplication request.

type StopApplicationInput

type StopApplicationInput struct {

	// The name of the running application to stop.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (StopApplicationInput) String

func (s StopApplicationInput) String() string

String returns the string representation

func (*StopApplicationInput) Validate

func (s *StopApplicationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StopApplicationOutput

type StopApplicationOutput struct {
	// contains filtered or unexported fields
}

func (StopApplicationOutput) String

func (s StopApplicationOutput) String() string

String returns the string representation

type StopApplicationRequest

type StopApplicationRequest struct {
	*aws.Request
	Input *StopApplicationInput
	Copy  func(*StopApplicationInput) StopApplicationRequest
}

StopApplicationRequest is the request type for the StopApplication API operation.

func (StopApplicationRequest) Send

Send marshals and sends the StopApplication API request.

type StopApplicationResponse added in v0.9.0

type StopApplicationResponse struct {
	*StopApplicationOutput
	// contains filtered or unexported fields
}

StopApplicationResponse is the response type for the StopApplication API operation.

func (*StopApplicationResponse) SDKResponseMetdata added in v0.9.0

func (r *StopApplicationResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the StopApplication request.

type Tag added in v0.9.0

type Tag struct {

	// The key of the key-value tag.
	//
	// Key is a required field
	Key *string `min:"1" type:"string" required:"true"`

	// The value of the key-value tag. The value is optional.
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

A key-value pair (the value is optional) that you can define and assign to AWS resources. If you specify a tag that already exists, the tag value is replaced with the value that you specify in the request. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50. For more information, see Using Tagging (https://docs.aws.amazon.com/kinesisanalytics/latest/java/how-tagging.html).

func (Tag) String added in v0.9.0

func (s Tag) String() string

String returns the string representation

func (*Tag) Validate added in v0.9.0

func (s *Tag) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TagResourceInput added in v0.9.0

type TagResourceInput struct {

	// The ARN of the application to assign the tags.
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`

	// The key-value tags to assign to the application.
	//
	// Tags is a required field
	Tags []Tag `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (TagResourceInput) String added in v0.9.0

func (s TagResourceInput) String() string

String returns the string representation

func (*TagResourceInput) Validate added in v0.9.0

func (s *TagResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TagResourceOutput added in v0.9.0

type TagResourceOutput struct {
	// contains filtered or unexported fields
}

func (TagResourceOutput) String added in v0.9.0

func (s TagResourceOutput) String() string

String returns the string representation

type TagResourceRequest added in v0.9.0

type TagResourceRequest struct {
	*aws.Request
	Input *TagResourceInput
	Copy  func(*TagResourceInput) TagResourceRequest
}

TagResourceRequest is the request type for the TagResource API operation.

func (TagResourceRequest) Send added in v0.9.0

Send marshals and sends the TagResource API request.

type TagResourceResponse added in v0.9.0

type TagResourceResponse struct {
	*TagResourceOutput
	// contains filtered or unexported fields
}

TagResourceResponse is the response type for the TagResource API operation.

func (*TagResourceResponse) SDKResponseMetdata added in v0.9.0

func (r *TagResourceResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the TagResource request.

type UntagResourceInput added in v0.9.0

type UntagResourceInput struct {

	// The ARN of the Kinesis Analytics application from which to remove the tags.
	//
	// ResourceARN is a required field
	ResourceARN *string `min:"1" type:"string" required:"true"`

	// A list of keys of tags to remove from the specified application.
	//
	// TagKeys is a required field
	TagKeys []string `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (UntagResourceInput) String added in v0.9.0

func (s UntagResourceInput) String() string

String returns the string representation

func (*UntagResourceInput) Validate added in v0.9.0

func (s *UntagResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UntagResourceOutput added in v0.9.0

type UntagResourceOutput struct {
	// contains filtered or unexported fields
}

func (UntagResourceOutput) String added in v0.9.0

func (s UntagResourceOutput) String() string

String returns the string representation

type UntagResourceRequest added in v0.9.0

type UntagResourceRequest struct {
	*aws.Request
	Input *UntagResourceInput
	Copy  func(*UntagResourceInput) UntagResourceRequest
}

UntagResourceRequest is the request type for the UntagResource API operation.

func (UntagResourceRequest) Send added in v0.9.0

Send marshals and sends the UntagResource API request.

type UntagResourceResponse added in v0.9.0

type UntagResourceResponse struct {
	*UntagResourceOutput
	// contains filtered or unexported fields
}

UntagResourceResponse is the response type for the UntagResource API operation.

func (*UntagResourceResponse) SDKResponseMetdata added in v0.9.0

func (r *UntagResourceResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UntagResource request.

type UpdateApplicationInput

type UpdateApplicationInput struct {

	// Describes application configuration updates.
	ApplicationConfigurationUpdate *ApplicationConfigurationUpdate `type:"structure"`

	// The name of the application to update.
	//
	// ApplicationName is a required field
	ApplicationName *string `min:"1" type:"string" required:"true"`

	// 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.
	CloudWatchLoggingOptionUpdates []CloudWatchLoggingOptionUpdate `type:"list"`

	// The current application version ID. You can retrieve the application version
	// ID using DescribeApplication.
	//
	// CurrentApplicationVersionId is a required field
	CurrentApplicationVersionId *int64 `min:"1" type:"long" required:"true"`

	// Describes updates to the application's starting parameters.
	RunConfigurationUpdate *RunConfigurationUpdate `type:"structure"`

	// Describes updates to the service execution role.
	ServiceExecutionRoleUpdate *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (UpdateApplicationInput) String

func (s UpdateApplicationInput) String() string

String returns the string representation

func (*UpdateApplicationInput) Validate

func (s *UpdateApplicationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateApplicationOutput

type UpdateApplicationOutput struct {

	// Describes application updates.
	//
	// ApplicationDetail is a required field
	ApplicationDetail *ApplicationDetail `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (UpdateApplicationOutput) String

func (s UpdateApplicationOutput) String() string

String returns the string representation

type UpdateApplicationRequest

type UpdateApplicationRequest struct {
	*aws.Request
	Input *UpdateApplicationInput
	Copy  func(*UpdateApplicationInput) UpdateApplicationRequest
}

UpdateApplicationRequest is the request type for the UpdateApplication API operation.

func (UpdateApplicationRequest) Send

Send marshals and sends the UpdateApplication API request.

type UpdateApplicationResponse added in v0.9.0

type UpdateApplicationResponse struct {
	*UpdateApplicationOutput
	// contains filtered or unexported fields
}

UpdateApplicationResponse is the response type for the UpdateApplication API operation.

func (*UpdateApplicationResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdateApplicationResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdateApplication request.

type VpcConfiguration added in v0.18.0

type VpcConfiguration struct {

	// The array of SecurityGroup (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_SecurityGroup.html)
	// IDs used by the VPC configuration.
	//
	// SecurityGroupIds is a required field
	SecurityGroupIds []string `min:"1" type:"list" required:"true"`

	// The array of Subnet (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_Subnet.html)
	// IDs used by the VPC configuration.
	//
	// SubnetIds is a required field
	SubnetIds []string `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

Describes the parameters of a VPC used by the application.

func (VpcConfiguration) String added in v0.18.0

func (s VpcConfiguration) String() string

String returns the string representation

func (*VpcConfiguration) Validate added in v0.18.0

func (s *VpcConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type VpcConfigurationDescription added in v0.18.0

type VpcConfigurationDescription struct {

	// The array of SecurityGroup (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_SecurityGroup.html)
	// IDs used by the VPC configuration.
	//
	// SecurityGroupIds is a required field
	SecurityGroupIds []string `min:"1" type:"list" required:"true"`

	// The array of Subnet (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_Subnet.html)
	// IDs used by the VPC configuration.
	//
	// SubnetIds is a required field
	SubnetIds []string `min:"1" type:"list" required:"true"`

	// The ID of the VPC configuration.
	//
	// VpcConfigurationId is a required field
	VpcConfigurationId *string `min:"1" type:"string" required:"true"`

	// The ID of the associated VPC.
	//
	// VpcId is a required field
	VpcId *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Describes the parameters of a VPC used by the application.

func (VpcConfigurationDescription) String added in v0.18.0

String returns the string representation

type VpcConfigurationUpdate added in v0.18.0

type VpcConfigurationUpdate struct {

	// Describes updates to the array of SecurityGroup (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_SecurityGroup.html)
	// IDs used by the VPC configuration.
	SecurityGroupIdUpdates []string `min:"1" type:"list"`

	// Describes updates to the array of Subnet (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_Subnet.html)
	// IDs used by the VPC configuration.
	SubnetIdUpdates []string `min:"1" type:"list"`

	// Describes an update to the ID of the VPC configuration.
	//
	// VpcConfigurationId is a required field
	VpcConfigurationId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Describes updates to the VPC configuration used by the application.

func (VpcConfigurationUpdate) String added in v0.18.0

func (s VpcConfigurationUpdate) String() string

String returns the string representation

func (*VpcConfigurationUpdate) Validate added in v0.18.0

func (s *VpcConfigurationUpdate) Validate() error

Validate inspects the fields of the type to determine if they are valid.

Directories

Path Synopsis
Package kinesisanalyticsv2iface provides an interface to enable mocking the Amazon Kinesis Analytics service client for testing your code.
Package kinesisanalyticsv2iface provides an interface to enable mocking the Amazon Kinesis Analytics service client for testing your code.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL