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

com.pulumi.aws.datasync.kotlin.EfsLocation.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: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.datasync.kotlin

import com.pulumi.aws.datasync.kotlin.outputs.EfsLocationEc2Config
import com.pulumi.aws.datasync.kotlin.outputs.EfsLocationEc2Config.Companion.toKotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.Deprecated
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map

/**
 * Builder for [EfsLocation].
 */
@PulumiTagMarker
public class EfsLocationResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: EfsLocationArgs = EfsLocationArgs()

    public var opts: CustomResourceOptions = CustomResourceOptions()

    /**
     * @param name The _unique_ name of the resulting resource.
     */
    public fun name(`value`: String) {
        this.name = value
    }

    /**
     * @param block The arguments to use to populate this resource's properties.
     */
    public suspend fun args(block: suspend EfsLocationArgsBuilder.() -> Unit) {
        val builder = EfsLocationArgsBuilder()
        block(builder)
        this.args = builder.build()
    }

    /**
     * @param block A bag of options that control this resource's behavior.
     */
    public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
        this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
    }

    internal fun build(): EfsLocation {
        val builtJavaResource = com.pulumi.aws.datasync.EfsLocation(
            this.name,
            this.args.toJava(),
            this.opts.toJava(),
        )
        return EfsLocation(builtJavaResource)
    }
}

/**
 * Manages an AWS DataSync EFS Location.
 * > **NOTE:** The EFS File System must have a mounted EFS Mount Target before creating this resource.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as aws from "@pulumi/aws";
 * const example = new aws.datasync.EfsLocation("example", {
 *     efsFileSystemArn: exampleAwsEfsMountTarget.fileSystemArn,
 *     ec2Config: {
 *         securityGroupArns: [exampleAwsSecurityGroup.arn],
 *         subnetArn: exampleAwsSubnet.arn,
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_aws as aws
 * example = aws.datasync.EfsLocation("example",
 *     efs_file_system_arn=example_aws_efs_mount_target["fileSystemArn"],
 *     ec2_config={
 *         "security_group_arns": [example_aws_security_group["arn"]],
 *         "subnet_arn": example_aws_subnet["arn"],
 *     })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Aws = Pulumi.Aws;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Aws.DataSync.EfsLocation("example", new()
 *     {
 *         EfsFileSystemArn = exampleAwsEfsMountTarget.FileSystemArn,
 *         Ec2Config = new Aws.DataSync.Inputs.EfsLocationEc2ConfigArgs
 *         {
 *             SecurityGroupArns = new[]
 *             {
 *                 exampleAwsSecurityGroup.Arn,
 *             },
 *             SubnetArn = exampleAwsSubnet.Arn,
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws"
 * 	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/datasync"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := datasync.NewEfsLocation(ctx, "example", &datasync.EfsLocationArgs{
 * 			EfsFileSystemArn: pulumi.Any(exampleAwsEfsMountTarget.FileSystemArn),
 * 			Ec2Config: &datasync.EfsLocationEc2ConfigArgs{
 * 				SecurityGroupArns: pulumi.StringArray{
 * 					exampleAwsSecurityGroup.Arn,
 * 				},
 * 				SubnetArn: pulumi.Any(exampleAwsSubnet.Arn),
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		return nil
 * 	})
 * }
 * ```
 * ```java
 * package generated_program;
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.aws.datasync.EfsLocation;
 * import com.pulumi.aws.datasync.EfsLocationArgs;
 * import com.pulumi.aws.datasync.inputs.EfsLocationEc2ConfigArgs;
 * import java.util.List;
 * import java.util.ArrayList;
 * import java.util.Map;
 * import java.io.File;
 * import java.nio.file.Files;
 * import java.nio.file.Paths;
 * public class App {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 *     public static void stack(Context ctx) {
 *         var example = new EfsLocation("example", EfsLocationArgs.builder()
 *             .efsFileSystemArn(exampleAwsEfsMountTarget.fileSystemArn())
 *             .ec2Config(EfsLocationEc2ConfigArgs.builder()
 *                 .securityGroupArns(exampleAwsSecurityGroup.arn())
 *                 .subnetArn(exampleAwsSubnet.arn())
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: aws:datasync:EfsLocation
 *     properties:
 *       efsFileSystemArn: ${exampleAwsEfsMountTarget.fileSystemArn}
 *       ec2Config:
 *         securityGroupArns:
 *           - ${exampleAwsSecurityGroup.arn}
 *         subnetArn: ${exampleAwsSubnet.arn}
 * ```
 * 
 * ## Import
 * Using `pulumi import`, import `aws_datasync_location_efs` using the DataSync Task Amazon Resource Name (ARN). For example:
 * ```sh
 * $ pulumi import aws:datasync/efsLocation:EfsLocation example arn:aws:datasync:us-east-1:123456789012:location/loc-12345678901234567
 * ```
 */
public class EfsLocation internal constructor(
    override val javaResource: com.pulumi.aws.datasync.EfsLocation,
) : KotlinCustomResource(javaResource, EfsLocationMapper) {
    /**
     * Specifies the Amazon Resource Name (ARN) of the access point that DataSync uses to access the Amazon EFS file system.
     */
    public val accessPointArn: Output?
        get() = javaResource.accessPointArn().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * Amazon Resource Name (ARN) of the DataSync Location.
     */
    public val arn: Output
        get() = javaResource.arn().applyValue({ args0 -> args0 })

    /**
     * Configuration block containing EC2 configurations for connecting to the EFS File System.
     */
    public val ec2Config: Output
        get() = javaResource.ec2Config().applyValue({ args0 -> args0.let({ args0 -> toKotlin(args0) }) })

    /**
     * Amazon Resource Name (ARN) of EFS File System.
     */
    public val efsFileSystemArn: Output
        get() = javaResource.efsFileSystemArn().applyValue({ args0 -> args0 })

    /**
     * Specifies an Identity and Access Management (IAM) role that DataSync assumes when mounting the Amazon EFS file system.
     */
    public val fileSystemAccessRoleArn: Output?
        get() = javaResource.fileSystemAccessRoleArn().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * Specifies whether you want DataSync to use TLS encryption when transferring data to or from your Amazon EFS file system. Valid values are `NONE` and `TLS1_2`.
     */
    public val inTransitEncryption: Output?
        get() = javaResource.inTransitEncryption().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * Subdirectory to perform actions as source or destination. Default `/`.
     */
    public val subdirectory: Output?
        get() = javaResource.subdirectory().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * Key-value pairs of resource tags to assign to the DataSync Location. .If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
     */
    public val tags: Output>?
        get() = javaResource.tags().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.key.to(args0.value)
                }).toMap()
            }).orElse(null)
        })

    /**
     * A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
     */
    @Deprecated(
        message = """
  Please use `tags` instead.
  """,
    )
    public val tagsAll: Output>
        get() = javaResource.tagsAll().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.key.to(args0.value)
            }).toMap()
        })

    public val uri: Output
        get() = javaResource.uri().applyValue({ args0 -> args0 })
}

public object EfsLocationMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.aws.datasync.EfsLocation::class == javaResource::class

    override fun map(javaResource: Resource): EfsLocation = EfsLocation(
        javaResource as
            com.pulumi.aws.datasync.EfsLocation,
    )
}

/**
 * @see [EfsLocation].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [EfsLocation].
 */
public suspend fun efsLocation(name: String, block: suspend EfsLocationResourceBuilder.() -> Unit): EfsLocation {
    val builder = EfsLocationResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [EfsLocation].
 * @param name The _unique_ name of the resulting resource.
 */
public fun efsLocation(name: String): EfsLocation {
    val builder = EfsLocationResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy