Class CfnApplicationOutput
- All Implemented Interfaces:
IInspectable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
If you want Amazon Kinesis Analytics to deliver data from an in-application stream within your application to an external destination (such as an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, or an Amazon 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. For more information, see Understanding Application Output (Destination) .
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.
For the limits on the number of application inputs and outputs you can configure, see Limits .
This operation requires permissions to perform the kinesisanalytics:AddApplicationOutput
action.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.kinesisanalytics.*; CfnApplicationOutput cfnApplicationOutput = CfnApplicationOutput.Builder.create(this, "MyCfnApplicationOutput") .applicationName("applicationName") .output(OutputProperty.builder() .destinationSchema(DestinationSchemaProperty.builder() .recordFormatType("recordFormatType") .build()) // the properties below are optional .kinesisFirehoseOutput(KinesisFirehoseOutputProperty.builder() .resourceArn("resourceArn") .roleArn("roleArn") .build()) .kinesisStreamsOutput(KinesisStreamsOutputProperty.builder() .resourceArn("resourceArn") .roleArn("roleArn") .build()) .lambdaOutput(LambdaOutputProperty.builder() .resourceArn("resourceArn") .roleArn("roleArn") .build()) .name("name") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
A fluent builder forCfnApplicationOutput
.static interface
Describes the data format when records are written to the destination.static interface
When configuring application output, identifies an Amazon Kinesis Firehose delivery stream as the destination.static interface
When configuring application output, identifies an Amazon Kinesis stream as the destination.static interface
When configuring application output, identifies an AWS Lambda function as the destination.static interface
Describes application output configuration in which you identify an in-application stream and a destination where you want the in-application stream data to be written.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnApplicationOutput
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnApplicationOutput
(software.amazon.jsii.JsiiObjectRef objRef) CfnApplicationOutput
(software.constructs.Construct scope, String id, CfnApplicationOutputProps props) -
Method Summary
Modifier and TypeMethodDescriptionName of the application to which you want to add the output configuration.An array of objects, each describing one output configuration.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setApplicationName
(String value) Name of the application to which you want to add the output configuration.void
setOutput
(IResolvable value) An array of objects, each describing one output configuration.void
An array of objects, each describing one output configuration.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnApplicationOutput
protected CfnApplicationOutput(software.amazon.jsii.JsiiObjectRef objRef) -
CfnApplicationOutput
protected CfnApplicationOutput(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnApplicationOutput
@Stability(Stable) public CfnApplicationOutput(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnApplicationOutputProps props) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.props
- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrId
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getApplicationName
Name of the application to which you want to add the output configuration. -
setApplicationName
Name of the application to which you want to add the output configuration. -
getOutput
An array of objects, each describing one output configuration. -
setOutput
An array of objects, each describing one output configuration. -
setOutput
An array of objects, each describing one output configuration.
-