All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.datasync.kotlin.outputs.TaskManifestConfigSourceS3.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.24.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.datasync.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Specifies the S3 bucket where you're hosting the manifest that you want AWS DataSync to use.
 * @property bucketAccessRoleArn Specifies the AWS Identity and Access Management (IAM) role that allows DataSync to access your manifest.
 * @property manifestObjectPath Specifies the Amazon S3 object key of your manifest.
 * @property manifestObjectVersionId Specifies the object version ID of the manifest that you want DataSync to use.
 * @property s3BucketArn Specifies the Amazon Resource Name (ARN) of the S3 bucket where you're hosting your manifest.
 */
public data class TaskManifestConfigSourceS3(
    public val bucketAccessRoleArn: String? = null,
    public val manifestObjectPath: String? = null,
    public val manifestObjectVersionId: String? = null,
    public val s3BucketArn: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.datasync.outputs.TaskManifestConfigSourceS3): TaskManifestConfigSourceS3 = TaskManifestConfigSourceS3(
            bucketAccessRoleArn = javaType.bucketAccessRoleArn().map({ args0 -> args0 }).orElse(null),
            manifestObjectPath = javaType.manifestObjectPath().map({ args0 -> args0 }).orElse(null),
            manifestObjectVersionId = javaType.manifestObjectVersionId().map({ args0 -> args0 }).orElse(null),
            s3BucketArn = javaType.s3BucketArn().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy