
com.pulumi.aws.kinesisanalyticsv2.inputs.ApplicationApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.kinesisanalyticsv2.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class ApplicationApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationArgs extends com.pulumi.resources.ResourceArgs {
public static final ApplicationApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationArgs Empty = new ApplicationApplicationConfigurationApplicationCodeConfigurationCodeContentS3ContentLocationArgs();
/**
* The ARN for the S3 bucket containing the application code.
*
*/
@Import(name="bucketArn", required=true)
private Output bucketArn;
/**
* @return The ARN for the S3 bucket containing the application code.
*
*/
public Output bucketArn() {
return this.bucketArn;
}
/**
* The file key for the object containing the application code.
*
*/
@Import(name="fileKey", required=true)
private Output fileKey;
/**
* @return The file key for the object containing the application code.
*
*/
public Output fileKey() {
return this.fileKey;
}
/**
* The version of the object containing the application code.
*
*/
@Import(name="objectVersion")
private @Nullable Output objectVersion;
/**
* @return The version of the object containing the application code.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy