Show / Hide Table of Contents

Interface CfnApplication.IApplicationCodeConfigurationProperty

Describes code configuration for an application.

Namespace: Amazon.CDK.AWS.KinesisAnalyticsV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnApplication.IApplicationCodeConfigurationProperty
Syntax (vb)
Public Interface CfnApplication.IApplicationCodeConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationcodeconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.KinesisAnalyticsV2;

             var applicationCodeConfigurationProperty = new ApplicationCodeConfigurationProperty {
                 CodeContent = new CodeContentProperty {
                     S3ContentLocation = new S3ContentLocationProperty {
                         BucketArn = "bucketArn",
                         FileKey = "fileKey",

                         // the properties below are optional
                         ObjectVersion = "objectVersion"
                     },
                     TextContent = "textContent",
                     ZipFileContent = "zipFileContent"
                 },
                 CodeContentType = "codeContentType"
             };

Synopsis

Properties

CodeContent

The location and type of the application code.

CodeContentType

Specifies whether the code content is in text or zip format.

Properties

CodeContent

The location and type of the application code.

object CodeContent { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationcodeconfiguration.html#cfn-kinesisanalyticsv2-application-applicationcodeconfiguration-codecontent

Type union: either IResolvable or CfnApplication.ICodeContentProperty

CodeContentType

Specifies whether the code content is in text or zip format.

string CodeContentType { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationcodeconfiguration.html#cfn-kinesisanalyticsv2-application-applicationcodeconfiguration-codecontenttype

Back to top Generated by DocFX