com.pulumi.aws.s3control.kotlin.AccessGrantArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.s3control.kotlin
import com.pulumi.aws.s3control.AccessGrantArgs.builder
import com.pulumi.aws.s3control.kotlin.inputs.AccessGrantAccessGrantsLocationConfigurationArgs
import com.pulumi.aws.s3control.kotlin.inputs.AccessGrantAccessGrantsLocationConfigurationArgsBuilder
import com.pulumi.aws.s3control.kotlin.inputs.AccessGrantGranteeArgs
import com.pulumi.aws.s3control.kotlin.inputs.AccessGrantGranteeArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* Provides a resource to manage an S3 Access Grant.
* Each access grant has its own ID and gives an IAM user or role or a directory user, or group (the grantee) access to a registered location. You determine the level of access, such as `READ` or `READWRITE`.
* Before you can create a grant, you must have an S3 Access Grants instance in the same Region as the S3 data.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const example = new aws.s3control.AccessGrantsInstance("example", {});
* const exampleAccessGrantsLocation = new aws.s3control.AccessGrantsLocation("example", {
* iamRoleArn: exampleAwsIamRole.arn,
* locationScope: `s3://${exampleAwsS3Bucket.bucket}/prefixA*`,
* }, {
* dependsOn: [example],
* });
* const exampleAccessGrant = new aws.s3control.AccessGrant("example", {
* accessGrantsLocationId: exampleAccessGrantsLocation.accessGrantsLocationId,
* permission: "READ",
* accessGrantsLocationConfiguration: {
* s3SubPrefix: "prefixB*",
* },
* grantee: {
* granteeType: "IAM",
* granteeIdentifier: exampleAwsIamUser.arn,
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* example = aws.s3control.AccessGrantsInstance("example")
* example_access_grants_location = aws.s3control.AccessGrantsLocation("example",
* iam_role_arn=example_aws_iam_role["arn"],
* location_scope=f"s3://{example_aws_s3_bucket['bucket']}/prefixA*",
* opts = pulumi.ResourceOptions(depends_on=[example]))
* example_access_grant = aws.s3control.AccessGrant("example",
* access_grants_location_id=example_access_grants_location.access_grants_location_id,
* permission="READ",
* access_grants_location_configuration={
* "s3_sub_prefix": "prefixB*",
* },
* grantee={
* "grantee_type": "IAM",
* "grantee_identifier": example_aws_iam_user["arn"],
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var example = new Aws.S3Control.AccessGrantsInstance("example");
* var exampleAccessGrantsLocation = new Aws.S3Control.AccessGrantsLocation("example", new()
* {
* IamRoleArn = exampleAwsIamRole.Arn,
* LocationScope = $"s3://{exampleAwsS3Bucket.Bucket}/prefixA*",
* }, new CustomResourceOptions
* {
* DependsOn =
* {
* example,
* },
* });
* var exampleAccessGrant = new Aws.S3Control.AccessGrant("example", new()
* {
* AccessGrantsLocationId = exampleAccessGrantsLocation.AccessGrantsLocationId,
* Permission = "READ",
* AccessGrantsLocationConfiguration = new Aws.S3Control.Inputs.AccessGrantAccessGrantsLocationConfigurationArgs
* {
* S3SubPrefix = "prefixB*",
* },
* Grantee = new Aws.S3Control.Inputs.AccessGrantGranteeArgs
* {
* GranteeType = "IAM",
* GranteeIdentifier = exampleAwsIamUser.Arn,
* },
* });
* });
* ```
* ```go
* package main
* import (
* "fmt"
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/s3control"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := s3control.NewAccessGrantsInstance(ctx, "example", nil)
* if err != nil {
* return err
* }
* exampleAccessGrantsLocation, err := s3control.NewAccessGrantsLocation(ctx, "example", &s3control.AccessGrantsLocationArgs{
* IamRoleArn: pulumi.Any(exampleAwsIamRole.Arn),
* LocationScope: pulumi.Sprintf("s3://%v/prefixA*", exampleAwsS3Bucket.Bucket),
* }, pulumi.DependsOn([]pulumi.Resource{
* example,
* }))
* if err != nil {
* return err
* }
* _, err = s3control.NewAccessGrant(ctx, "example", &s3control.AccessGrantArgs{
* AccessGrantsLocationId: exampleAccessGrantsLocation.AccessGrantsLocationId,
* Permission: pulumi.String("READ"),
* AccessGrantsLocationConfiguration: &s3control.AccessGrantAccessGrantsLocationConfigurationArgs{
* S3SubPrefix: pulumi.String("prefixB*"),
* },
* Grantee: &s3control.AccessGrantGranteeArgs{
* GranteeType: pulumi.String("IAM"),
* GranteeIdentifier: pulumi.Any(exampleAwsIamUser.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.s3control.AccessGrantsInstance;
* import com.pulumi.aws.s3control.AccessGrantsLocation;
* import com.pulumi.aws.s3control.AccessGrantsLocationArgs;
* import com.pulumi.aws.s3control.AccessGrant;
* import com.pulumi.aws.s3control.AccessGrantArgs;
* import com.pulumi.aws.s3control.inputs.AccessGrantAccessGrantsLocationConfigurationArgs;
* import com.pulumi.aws.s3control.inputs.AccessGrantGranteeArgs;
* import com.pulumi.resources.CustomResourceOptions;
* 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 AccessGrantsInstance("example");
* var exampleAccessGrantsLocation = new AccessGrantsLocation("exampleAccessGrantsLocation", AccessGrantsLocationArgs.builder()
* .iamRoleArn(exampleAwsIamRole.arn())
* .locationScope(String.format("s3://%s/prefixA*", exampleAwsS3Bucket.bucket()))
* .build(), CustomResourceOptions.builder()
* .dependsOn(example)
* .build());
* var exampleAccessGrant = new AccessGrant("exampleAccessGrant", AccessGrantArgs.builder()
* .accessGrantsLocationId(exampleAccessGrantsLocation.accessGrantsLocationId())
* .permission("READ")
* .accessGrantsLocationConfiguration(AccessGrantAccessGrantsLocationConfigurationArgs.builder()
* .s3SubPrefix("prefixB*")
* .build())
* .grantee(AccessGrantGranteeArgs.builder()
* .granteeType("IAM")
* .granteeIdentifier(exampleAwsIamUser.arn())
* .build())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: aws:s3control:AccessGrantsInstance
* exampleAccessGrantsLocation:
* type: aws:s3control:AccessGrantsLocation
* name: example
* properties:
* iamRoleArn: ${exampleAwsIamRole.arn}
* locationScope: s3://${exampleAwsS3Bucket.bucket}/prefixA*
* options:
* dependson:
* - ${example}
* exampleAccessGrant:
* type: aws:s3control:AccessGrant
* name: example
* properties:
* accessGrantsLocationId: ${exampleAccessGrantsLocation.accessGrantsLocationId}
* permission: READ
* accessGrantsLocationConfiguration:
* s3SubPrefix: prefixB*
* grantee:
* granteeType: IAM
* granteeIdentifier: ${exampleAwsIamUser.arn}
* ```
*
* ## Import
* Using `pulumi import`, import S3 Access Grants using the `account_id` and `access_grant_id`, separated by a comma (`,`). For example:
* ```sh
* $ pulumi import aws:s3control/accessGrant:AccessGrant example 123456789012,04549c5e-2f3c-4a07-824d-2cafe720aa22
* ```
* @property accessGrantsLocationConfiguration See Location Configuration below for more details.
* @property accessGrantsLocationId The ID of the S3 Access Grants location to with the access grant is giving access.
* @property accountId
* @property grantee See Grantee below for more details.
* @property permission The access grant's level of access. Valid values: `READ`, `WRITE`, `READWRITE`.
* @property s3PrefixType If you are creating an access grant that grants access to only one object, set this to `Object`. Valid values: `Object`.
* @property tags Key-value map of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
*/
public data class AccessGrantArgs(
public val accessGrantsLocationConfiguration: Output? = null,
public val accessGrantsLocationId: Output? = null,
public val accountId: Output? = null,
public val grantee: Output? = null,
public val permission: Output? = null,
public val s3PrefixType: Output? = null,
public val tags: Output