1. Packages
  2. AWS
  3. API Docs
  4. dataexchange
  5. RevisionAssets
AWS v6.82.2 published on Thursday, Jun 12, 2025 by Pulumi

aws.dataexchange.RevisionAssets

Explore with Pulumi AI

aws logo
AWS v6.82.2 published on Thursday, Jun 12, 2025 by Pulumi

    Resource for managing AWS Data Exchange Revision Assets.

    Note: This resource creates a new revision and adds associated assets. Destroying this resource will delete the revision and all associated assets.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.dataexchange.RevisionAssets("example", {
        dataSetId: "example-data-set-id",
        assets: [{
            createS3DataAccessFromS3Bucket: {
                assetSource: {
                    bucket: "example-bucket",
                },
            },
        }],
        tags: {
            Environment: "Production",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.dataexchange.RevisionAssets("example",
        data_set_id="example-data-set-id",
        assets=[{
            "create_s3_data_access_from_s3_bucket": {
                "asset_source": {
                    "bucket": "example-bucket",
                },
            },
        }],
        tags={
            "Environment": "Production",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/dataexchange"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := dataexchange.NewRevisionAssets(ctx, "example", &dataexchange.RevisionAssetsArgs{
    			DataSetId: pulumi.String("example-data-set-id"),
    			Assets: dataexchange.RevisionAssetsAssetArray{
    				&dataexchange.RevisionAssetsAssetArgs{
    					CreateS3DataAccessFromS3Bucket: &dataexchange.RevisionAssetsAssetCreateS3DataAccessFromS3BucketArgs{
    						AssetSource: &dataexchange.RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceArgs{
    							Bucket: pulumi.String("example-bucket"),
    						},
    					},
    				},
    			},
    			Tags: pulumi.StringMap{
    				"Environment": pulumi.String("Production"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.DataExchange.RevisionAssets("example", new()
        {
            DataSetId = "example-data-set-id",
            Assets = new[]
            {
                new Aws.DataExchange.Inputs.RevisionAssetsAssetArgs
                {
                    CreateS3DataAccessFromS3Bucket = new Aws.DataExchange.Inputs.RevisionAssetsAssetCreateS3DataAccessFromS3BucketArgs
                    {
                        AssetSource = new Aws.DataExchange.Inputs.RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceArgs
                        {
                            Bucket = "example-bucket",
                        },
                    },
                },
            },
            Tags = 
            {
                { "Environment", "Production" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.dataexchange.RevisionAssets;
    import com.pulumi.aws.dataexchange.RevisionAssetsArgs;
    import com.pulumi.aws.dataexchange.inputs.RevisionAssetsAssetArgs;
    import com.pulumi.aws.dataexchange.inputs.RevisionAssetsAssetCreateS3DataAccessFromS3BucketArgs;
    import com.pulumi.aws.dataexchange.inputs.RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceArgs;
    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 RevisionAssets("example", RevisionAssetsArgs.builder()
                .dataSetId("example-data-set-id")
                .assets(RevisionAssetsAssetArgs.builder()
                    .createS3DataAccessFromS3Bucket(RevisionAssetsAssetCreateS3DataAccessFromS3BucketArgs.builder()
                        .assetSource(RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceArgs.builder()
                            .bucket("example-bucket")
                            .build())
                        .build())
                    .build())
                .tags(Map.of("Environment", "Production"))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:dataexchange:RevisionAssets
        properties:
          dataSetId: example-data-set-id
          assets:
            - createS3DataAccessFromS3Bucket:
                assetSource:
                  bucket: example-bucket
          tags:
            Environment: Production
    

    Create RevisionAssets Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new RevisionAssets(name: string, args: RevisionAssetsArgs, opts?: CustomResourceOptions);
    @overload
    def RevisionAssets(resource_name: str,
                       args: RevisionAssetsArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def RevisionAssets(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       data_set_id: Optional[str] = None,
                       assets: Optional[Sequence[RevisionAssetsAssetArgs]] = None,
                       comment: Optional[str] = None,
                       finalized: Optional[bool] = None,
                       force_destroy: Optional[bool] = None,
                       tags: Optional[Mapping[str, str]] = None,
                       timeouts: Optional[RevisionAssetsTimeoutsArgs] = None)
    func NewRevisionAssets(ctx *Context, name string, args RevisionAssetsArgs, opts ...ResourceOption) (*RevisionAssets, error)
    public RevisionAssets(string name, RevisionAssetsArgs args, CustomResourceOptions? opts = null)
    public RevisionAssets(String name, RevisionAssetsArgs args)
    public RevisionAssets(String name, RevisionAssetsArgs args, CustomResourceOptions options)
    
    type: aws:dataexchange:RevisionAssets
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args RevisionAssetsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args RevisionAssetsArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args RevisionAssetsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RevisionAssetsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RevisionAssetsArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var revisionAssetsResource = new Aws.DataExchange.RevisionAssets("revisionAssetsResource", new()
    {
        DataSetId = "string",
        Assets = new[]
        {
            new Aws.DataExchange.Inputs.RevisionAssetsAssetArgs
            {
                Arn = "string",
                CreateS3DataAccessFromS3Bucket = new Aws.DataExchange.Inputs.RevisionAssetsAssetCreateS3DataAccessFromS3BucketArgs
                {
                    AccessPointAlias = "string",
                    AccessPointArn = "string",
                    AssetSource = new Aws.DataExchange.Inputs.RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceArgs
                    {
                        Bucket = "string",
                        KeyPrefixes = new[]
                        {
                            "string",
                        },
                        Keys = new[]
                        {
                            "string",
                        },
                        KmsKeysToGrants = new[]
                        {
                            new Aws.DataExchange.Inputs.RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceKmsKeysToGrantArgs
                            {
                                KmsKeyArn = "string",
                            },
                        },
                    },
                },
                CreatedAt = "string",
                Id = "string",
                ImportAssetsFromS3 = new Aws.DataExchange.Inputs.RevisionAssetsAssetImportAssetsFromS3Args
                {
                    AssetSource = new Aws.DataExchange.Inputs.RevisionAssetsAssetImportAssetsFromS3AssetSourceArgs
                    {
                        Bucket = "string",
                        Key = "string",
                    },
                },
                ImportAssetsFromSignedUrl = new Aws.DataExchange.Inputs.RevisionAssetsAssetImportAssetsFromSignedUrlArgs
                {
                    Filename = "string",
                },
                Name = "string",
                UpdatedAt = "string",
            },
        },
        Comment = "string",
        Finalized = false,
        ForceDestroy = false,
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.DataExchange.Inputs.RevisionAssetsTimeoutsArgs
        {
            Create = "string",
        },
    });
    
    example, err := dataexchange.NewRevisionAssets(ctx, "revisionAssetsResource", &dataexchange.RevisionAssetsArgs{
    	DataSetId: pulumi.String("string"),
    	Assets: dataexchange.RevisionAssetsAssetArray{
    		&dataexchange.RevisionAssetsAssetArgs{
    			Arn: pulumi.String("string"),
    			CreateS3DataAccessFromS3Bucket: &dataexchange.RevisionAssetsAssetCreateS3DataAccessFromS3BucketArgs{
    				AccessPointAlias: pulumi.String("string"),
    				AccessPointArn:   pulumi.String("string"),
    				AssetSource: &dataexchange.RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceArgs{
    					Bucket: pulumi.String("string"),
    					KeyPrefixes: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					Keys: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					KmsKeysToGrants: dataexchange.RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceKmsKeysToGrantArray{
    						&dataexchange.RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceKmsKeysToGrantArgs{
    							KmsKeyArn: pulumi.String("string"),
    						},
    					},
    				},
    			},
    			CreatedAt: pulumi.String("string"),
    			Id:        pulumi.String("string"),
    			ImportAssetsFromS3: &dataexchange.RevisionAssetsAssetImportAssetsFromS3Args{
    				AssetSource: &dataexchange.RevisionAssetsAssetImportAssetsFromS3AssetSourceArgs{
    					Bucket: pulumi.String("string"),
    					Key:    pulumi.String("string"),
    				},
    			},
    			ImportAssetsFromSignedUrl: &dataexchange.RevisionAssetsAssetImportAssetsFromSignedUrlArgs{
    				Filename: pulumi.String("string"),
    			},
    			Name:      pulumi.String("string"),
    			UpdatedAt: pulumi.String("string"),
    		},
    	},
    	Comment:      pulumi.String("string"),
    	Finalized:    pulumi.Bool(false),
    	ForceDestroy: pulumi.Bool(false),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &dataexchange.RevisionAssetsTimeoutsArgs{
    		Create: pulumi.String("string"),
    	},
    })
    
    var revisionAssetsResource = new RevisionAssets("revisionAssetsResource", RevisionAssetsArgs.builder()
        .dataSetId("string")
        .assets(RevisionAssetsAssetArgs.builder()
            .arn("string")
            .createS3DataAccessFromS3Bucket(RevisionAssetsAssetCreateS3DataAccessFromS3BucketArgs.builder()
                .accessPointAlias("string")
                .accessPointArn("string")
                .assetSource(RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceArgs.builder()
                    .bucket("string")
                    .keyPrefixes("string")
                    .keys("string")
                    .kmsKeysToGrants(RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceKmsKeysToGrantArgs.builder()
                        .kmsKeyArn("string")
                        .build())
                    .build())
                .build())
            .createdAt("string")
            .id("string")
            .importAssetsFromS3(RevisionAssetsAssetImportAssetsFromS3Args.builder()
                .assetSource(RevisionAssetsAssetImportAssetsFromS3AssetSourceArgs.builder()
                    .bucket("string")
                    .key("string")
                    .build())
                .build())
            .importAssetsFromSignedUrl(RevisionAssetsAssetImportAssetsFromSignedUrlArgs.builder()
                .filename("string")
                .build())
            .name("string")
            .updatedAt("string")
            .build())
        .comment("string")
        .finalized(false)
        .forceDestroy(false)
        .tags(Map.of("string", "string"))
        .timeouts(RevisionAssetsTimeoutsArgs.builder()
            .create("string")
            .build())
        .build());
    
    revision_assets_resource = aws.dataexchange.RevisionAssets("revisionAssetsResource",
        data_set_id="string",
        assets=[{
            "arn": "string",
            "create_s3_data_access_from_s3_bucket": {
                "access_point_alias": "string",
                "access_point_arn": "string",
                "asset_source": {
                    "bucket": "string",
                    "key_prefixes": ["string"],
                    "keys": ["string"],
                    "kms_keys_to_grants": [{
                        "kms_key_arn": "string",
                    }],
                },
            },
            "created_at": "string",
            "id": "string",
            "import_assets_from_s3": {
                "asset_source": {
                    "bucket": "string",
                    "key": "string",
                },
            },
            "import_assets_from_signed_url": {
                "filename": "string",
            },
            "name": "string",
            "updated_at": "string",
        }],
        comment="string",
        finalized=False,
        force_destroy=False,
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
        })
    
    const revisionAssetsResource = new aws.dataexchange.RevisionAssets("revisionAssetsResource", {
        dataSetId: "string",
        assets: [{
            arn: "string",
            createS3DataAccessFromS3Bucket: {
                accessPointAlias: "string",
                accessPointArn: "string",
                assetSource: {
                    bucket: "string",
                    keyPrefixes: ["string"],
                    keys: ["string"],
                    kmsKeysToGrants: [{
                        kmsKeyArn: "string",
                    }],
                },
            },
            createdAt: "string",
            id: "string",
            importAssetsFromS3: {
                assetSource: {
                    bucket: "string",
                    key: "string",
                },
            },
            importAssetsFromSignedUrl: {
                filename: "string",
            },
            name: "string",
            updatedAt: "string",
        }],
        comment: "string",
        finalized: false,
        forceDestroy: false,
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
        },
    });
    
    type: aws:dataexchange:RevisionAssets
    properties:
        assets:
            - arn: string
              createS3DataAccessFromS3Bucket:
                accessPointAlias: string
                accessPointArn: string
                assetSource:
                    bucket: string
                    keyPrefixes:
                        - string
                    keys:
                        - string
                    kmsKeysToGrants:
                        - kmsKeyArn: string
              createdAt: string
              id: string
              importAssetsFromS3:
                assetSource:
                    bucket: string
                    key: string
              importAssetsFromSignedUrl:
                filename: string
              name: string
              updatedAt: string
        comment: string
        dataSetId: string
        finalized: false
        forceDestroy: false
        tags:
            string: string
        timeouts:
            create: string
    

    RevisionAssets Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The RevisionAssets resource accepts the following input properties:

    DataSetId string
    Unique identifier for the data set associated with the revision.
    Assets List<RevisionAssetsAsset>

    A block to define the asset associated with the revision. See Asset for more details.

    The following arguments are optional:

    Comment string
    A comment for the revision. Maximum length is 16,348 characters.
    Finalized bool
    ForceDestroy bool
    Tags Dictionary<string, string>
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts RevisionAssetsTimeouts
    DataSetId string
    Unique identifier for the data set associated with the revision.
    Assets []RevisionAssetsAssetArgs

    A block to define the asset associated with the revision. See Asset for more details.

    The following arguments are optional:

    Comment string
    A comment for the revision. Maximum length is 16,348 characters.
    Finalized bool
    ForceDestroy bool
    Tags map[string]string
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts RevisionAssetsTimeoutsArgs
    dataSetId String
    Unique identifier for the data set associated with the revision.
    assets List<RevisionAssetsAsset>

    A block to define the asset associated with the revision. See Asset for more details.

    The following arguments are optional:

    comment String
    A comment for the revision. Maximum length is 16,348 characters.
    finalized Boolean
    forceDestroy Boolean
    tags Map<String,String>
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts RevisionAssetsTimeouts
    dataSetId string
    Unique identifier for the data set associated with the revision.
    assets RevisionAssetsAsset[]

    A block to define the asset associated with the revision. See Asset for more details.

    The following arguments are optional:

    comment string
    A comment for the revision. Maximum length is 16,348 characters.
    finalized boolean
    forceDestroy boolean
    tags {[key: string]: string}
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts RevisionAssetsTimeouts
    data_set_id str
    Unique identifier for the data set associated with the revision.
    assets Sequence[RevisionAssetsAssetArgs]

    A block to define the asset associated with the revision. See Asset for more details.

    The following arguments are optional:

    comment str
    A comment for the revision. Maximum length is 16,348 characters.
    finalized bool
    force_destroy bool
    tags Mapping[str, str]
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts RevisionAssetsTimeoutsArgs
    dataSetId String
    Unique identifier for the data set associated with the revision.
    assets List<Property Map>

    A block to define the asset associated with the revision. See Asset for more details.

    The following arguments are optional:

    comment String
    A comment for the revision. Maximum length is 16,348 characters.
    finalized Boolean
    forceDestroy Boolean
    tags Map<String>
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RevisionAssets resource produces the following output properties:

    Arn string
    The ARN of the Data Exchange Revision Assets.
    CreatedAt string
    The timestamp when the revision was created, in RFC3339 format.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    UpdatedAt string
    The timestamp when the revision was last updated, in RFC3339 format.
    Arn string
    The ARN of the Data Exchange Revision Assets.
    CreatedAt string
    The timestamp when the revision was created, in RFC3339 format.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    UpdatedAt string
    The timestamp when the revision was last updated, in RFC3339 format.
    arn String
    The ARN of the Data Exchange Revision Assets.
    createdAt String
    The timestamp when the revision was created, in RFC3339 format.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    updatedAt String
    The timestamp when the revision was last updated, in RFC3339 format.
    arn string
    The ARN of the Data Exchange Revision Assets.
    createdAt string
    The timestamp when the revision was created, in RFC3339 format.
    id string
    The provider-assigned unique ID for this managed resource.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    updatedAt string
    The timestamp when the revision was last updated, in RFC3339 format.
    arn str
    The ARN of the Data Exchange Revision Assets.
    created_at str
    The timestamp when the revision was created, in RFC3339 format.
    id str
    The provider-assigned unique ID for this managed resource.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    updated_at str
    The timestamp when the revision was last updated, in RFC3339 format.
    arn String
    The ARN of the Data Exchange Revision Assets.
    createdAt String
    The timestamp when the revision was created, in RFC3339 format.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    updatedAt String
    The timestamp when the revision was last updated, in RFC3339 format.

    Look up Existing RevisionAssets Resource

    Get an existing RevisionAssets resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: RevisionAssetsState, opts?: CustomResourceOptions): RevisionAssets
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            assets: Optional[Sequence[RevisionAssetsAssetArgs]] = None,
            comment: Optional[str] = None,
            created_at: Optional[str] = None,
            data_set_id: Optional[str] = None,
            finalized: Optional[bool] = None,
            force_destroy: Optional[bool] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[RevisionAssetsTimeoutsArgs] = None,
            updated_at: Optional[str] = None) -> RevisionAssets
    func GetRevisionAssets(ctx *Context, name string, id IDInput, state *RevisionAssetsState, opts ...ResourceOption) (*RevisionAssets, error)
    public static RevisionAssets Get(string name, Input<string> id, RevisionAssetsState? state, CustomResourceOptions? opts = null)
    public static RevisionAssets get(String name, Output<String> id, RevisionAssetsState state, CustomResourceOptions options)
    resources:  _:    type: aws:dataexchange:RevisionAssets    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Arn string
    The ARN of the Data Exchange Revision Assets.
    Assets List<RevisionAssetsAsset>

    A block to define the asset associated with the revision. See Asset for more details.

    The following arguments are optional:

    Comment string
    A comment for the revision. Maximum length is 16,348 characters.
    CreatedAt string
    The timestamp when the revision was created, in RFC3339 format.
    DataSetId string
    Unique identifier for the data set associated with the revision.
    Finalized bool
    ForceDestroy bool
    Tags Dictionary<string, string>
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Timeouts RevisionAssetsTimeouts
    UpdatedAt string
    The timestamp when the revision was last updated, in RFC3339 format.
    Arn string
    The ARN of the Data Exchange Revision Assets.
    Assets []RevisionAssetsAssetArgs

    A block to define the asset associated with the revision. See Asset for more details.

    The following arguments are optional:

    Comment string
    A comment for the revision. Maximum length is 16,348 characters.
    CreatedAt string
    The timestamp when the revision was created, in RFC3339 format.
    DataSetId string
    Unique identifier for the data set associated with the revision.
    Finalized bool
    ForceDestroy bool
    Tags map[string]string
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Timeouts RevisionAssetsTimeoutsArgs
    UpdatedAt string
    The timestamp when the revision was last updated, in RFC3339 format.
    arn String
    The ARN of the Data Exchange Revision Assets.
    assets List<RevisionAssetsAsset>

    A block to define the asset associated with the revision. See Asset for more details.

    The following arguments are optional:

    comment String
    A comment for the revision. Maximum length is 16,348 characters.
    createdAt String
    The timestamp when the revision was created, in RFC3339 format.
    dataSetId String
    Unique identifier for the data set associated with the revision.
    finalized Boolean
    forceDestroy Boolean
    tags Map<String,String>
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts RevisionAssetsTimeouts
    updatedAt String
    The timestamp when the revision was last updated, in RFC3339 format.
    arn string
    The ARN of the Data Exchange Revision Assets.
    assets RevisionAssetsAsset[]

    A block to define the asset associated with the revision. See Asset for more details.

    The following arguments are optional:

    comment string
    A comment for the revision. Maximum length is 16,348 characters.
    createdAt string
    The timestamp when the revision was created, in RFC3339 format.
    dataSetId string
    Unique identifier for the data set associated with the revision.
    finalized boolean
    forceDestroy boolean
    tags {[key: string]: string}
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts RevisionAssetsTimeouts
    updatedAt string
    The timestamp when the revision was last updated, in RFC3339 format.
    arn str
    The ARN of the Data Exchange Revision Assets.
    assets Sequence[RevisionAssetsAssetArgs]

    A block to define the asset associated with the revision. See Asset for more details.

    The following arguments are optional:

    comment str
    A comment for the revision. Maximum length is 16,348 characters.
    created_at str
    The timestamp when the revision was created, in RFC3339 format.
    data_set_id str
    Unique identifier for the data set associated with the revision.
    finalized bool
    force_destroy bool
    tags Mapping[str, str]
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts RevisionAssetsTimeoutsArgs
    updated_at str
    The timestamp when the revision was last updated, in RFC3339 format.
    arn String
    The ARN of the Data Exchange Revision Assets.
    assets List<Property Map>

    A block to define the asset associated with the revision. See Asset for more details.

    The following arguments are optional:

    comment String
    A comment for the revision. Maximum length is 16,348 characters.
    createdAt String
    The timestamp when the revision was created, in RFC3339 format.
    dataSetId String
    Unique identifier for the data set associated with the revision.
    finalized Boolean
    forceDestroy Boolean
    tags Map<String>
    A map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts Property Map
    updatedAt String
    The timestamp when the revision was last updated, in RFC3339 format.

    Supporting Types

    RevisionAssetsAsset, RevisionAssetsAssetArgs

    Arn string
    The ARN of the Data Exchange Revision Assets.
    CreateS3DataAccessFromS3Bucket RevisionAssetsAssetCreateS3DataAccessFromS3Bucket
    A block to create S3 data access from an S3 bucket. See Create S3 Data Access from S3 Bucket for more details.
    CreatedAt string
    The timestamp when the revision was created, in RFC3339 format.
    Id string
    The unique identifier for the revision.
    ImportAssetsFromS3 RevisionAssetsAssetImportAssetsFromS3
    A block to import assets from S3. See Import Assets from S3 for more details.
    ImportAssetsFromSignedUrl RevisionAssetsAssetImportAssetsFromSignedUrl
    A block to import assets from a signed URL. See Import Assets from Signed URL for more details.
    Name string
    UpdatedAt string
    The timestamp when the revision was last updated, in RFC3339 format.
    Arn string
    The ARN of the Data Exchange Revision Assets.
    CreateS3DataAccessFromS3Bucket RevisionAssetsAssetCreateS3DataAccessFromS3Bucket
    A block to create S3 data access from an S3 bucket. See Create S3 Data Access from S3 Bucket for more details.
    CreatedAt string
    The timestamp when the revision was created, in RFC3339 format.
    Id string
    The unique identifier for the revision.
    ImportAssetsFromS3 RevisionAssetsAssetImportAssetsFromS3
    A block to import assets from S3. See Import Assets from S3 for more details.
    ImportAssetsFromSignedUrl RevisionAssetsAssetImportAssetsFromSignedUrl
    A block to import assets from a signed URL. See Import Assets from Signed URL for more details.
    Name string
    UpdatedAt string
    The timestamp when the revision was last updated, in RFC3339 format.
    arn String
    The ARN of the Data Exchange Revision Assets.
    createS3DataAccessFromS3Bucket RevisionAssetsAssetCreateS3DataAccessFromS3Bucket
    A block to create S3 data access from an S3 bucket. See Create S3 Data Access from S3 Bucket for more details.
    createdAt String
    The timestamp when the revision was created, in RFC3339 format.
    id String
    The unique identifier for the revision.
    importAssetsFromS3 RevisionAssetsAssetImportAssetsFromS3
    A block to import assets from S3. See Import Assets from S3 for more details.
    importAssetsFromSignedUrl RevisionAssetsAssetImportAssetsFromSignedUrl
    A block to import assets from a signed URL. See Import Assets from Signed URL for more details.
    name String
    updatedAt String
    The timestamp when the revision was last updated, in RFC3339 format.
    arn string
    The ARN of the Data Exchange Revision Assets.
    createS3DataAccessFromS3Bucket RevisionAssetsAssetCreateS3DataAccessFromS3Bucket
    A block to create S3 data access from an S3 bucket. See Create S3 Data Access from S3 Bucket for more details.
    createdAt string
    The timestamp when the revision was created, in RFC3339 format.
    id string
    The unique identifier for the revision.
    importAssetsFromS3 RevisionAssetsAssetImportAssetsFromS3
    A block to import assets from S3. See Import Assets from S3 for more details.
    importAssetsFromSignedUrl RevisionAssetsAssetImportAssetsFromSignedUrl
    A block to import assets from a signed URL. See Import Assets from Signed URL for more details.
    name string
    updatedAt string
    The timestamp when the revision was last updated, in RFC3339 format.
    arn str
    The ARN of the Data Exchange Revision Assets.
    create_s3_data_access_from_s3_bucket RevisionAssetsAssetCreateS3DataAccessFromS3Bucket
    A block to create S3 data access from an S3 bucket. See Create S3 Data Access from S3 Bucket for more details.
    created_at str
    The timestamp when the revision was created, in RFC3339 format.
    id str
    The unique identifier for the revision.
    import_assets_from_s3 RevisionAssetsAssetImportAssetsFromS3
    A block to import assets from S3. See Import Assets from S3 for more details.
    import_assets_from_signed_url RevisionAssetsAssetImportAssetsFromSignedUrl
    A block to import assets from a signed URL. See Import Assets from Signed URL for more details.
    name str
    updated_at str
    The timestamp when the revision was last updated, in RFC3339 format.
    arn String
    The ARN of the Data Exchange Revision Assets.
    createS3DataAccessFromS3Bucket Property Map
    A block to create S3 data access from an S3 bucket. See Create S3 Data Access from S3 Bucket for more details.
    createdAt String
    The timestamp when the revision was created, in RFC3339 format.
    id String
    The unique identifier for the revision.
    importAssetsFromS3 Property Map
    A block to import assets from S3. See Import Assets from S3 for more details.
    importAssetsFromSignedUrl Property Map
    A block to import assets from a signed URL. See Import Assets from Signed URL for more details.
    name String
    updatedAt String
    The timestamp when the revision was last updated, in RFC3339 format.

    RevisionAssetsAssetCreateS3DataAccessFromS3Bucket, RevisionAssetsAssetCreateS3DataAccessFromS3BucketArgs

    AccessPointAlias string
    AccessPointArn string
    AssetSource RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSource
    A block specifying the source bucket for the asset. This block supports the following:
    AccessPointAlias string
    AccessPointArn string
    AssetSource RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSource
    A block specifying the source bucket for the asset. This block supports the following:
    accessPointAlias String
    accessPointArn String
    assetSource RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSource
    A block specifying the source bucket for the asset. This block supports the following:
    accessPointAlias string
    accessPointArn string
    assetSource RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSource
    A block specifying the source bucket for the asset. This block supports the following:
    access_point_alias str
    access_point_arn str
    asset_source RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSource
    A block specifying the source bucket for the asset. This block supports the following:
    accessPointAlias String
    accessPointArn String
    assetSource Property Map
    A block specifying the source bucket for the asset. This block supports the following:

    RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSource, RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceArgs

    Bucket string
    The name of the S3 bucket.
    KeyPrefixes List<string>
    List of key prefixes in the S3 bucket.
    Keys List<string>
    List of object keys in the S3 bucket.
    KmsKeysToGrants List<RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceKmsKeysToGrant>
    Bucket string
    The name of the S3 bucket.
    KeyPrefixes []string
    List of key prefixes in the S3 bucket.
    Keys []string
    List of object keys in the S3 bucket.
    KmsKeysToGrants []RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceKmsKeysToGrant
    bucket String
    The name of the S3 bucket.
    keyPrefixes List<String>
    List of key prefixes in the S3 bucket.
    keys List<String>
    List of object keys in the S3 bucket.
    kmsKeysToGrants List<RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceKmsKeysToGrant>
    bucket string
    The name of the S3 bucket.
    keyPrefixes string[]
    List of key prefixes in the S3 bucket.
    keys string[]
    List of object keys in the S3 bucket.
    kmsKeysToGrants RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceKmsKeysToGrant[]
    bucket str
    The name of the S3 bucket.
    key_prefixes Sequence[str]
    List of key prefixes in the S3 bucket.
    keys Sequence[str]
    List of object keys in the S3 bucket.
    kms_keys_to_grants Sequence[RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceKmsKeysToGrant]
    bucket String
    The name of the S3 bucket.
    keyPrefixes List<String>
    List of key prefixes in the S3 bucket.
    keys List<String>
    List of object keys in the S3 bucket.
    kmsKeysToGrants List<Property Map>

    RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceKmsKeysToGrant, RevisionAssetsAssetCreateS3DataAccessFromS3BucketAssetSourceKmsKeysToGrantArgs

    KmsKeyArn string
    The ARN of the KMS key.
    KmsKeyArn string
    The ARN of the KMS key.
    kmsKeyArn String
    The ARN of the KMS key.
    kmsKeyArn string
    The ARN of the KMS key.
    kms_key_arn str
    The ARN of the KMS key.
    kmsKeyArn String
    The ARN of the KMS key.

    RevisionAssetsAssetImportAssetsFromS3, RevisionAssetsAssetImportAssetsFromS3Args

    AssetSource RevisionAssetsAssetImportAssetsFromS3AssetSource
    A block specifying the source bucket and key for the asset. This block supports the following:
    AssetSource RevisionAssetsAssetImportAssetsFromS3AssetSource
    A block specifying the source bucket and key for the asset. This block supports the following:
    assetSource RevisionAssetsAssetImportAssetsFromS3AssetSource
    A block specifying the source bucket and key for the asset. This block supports the following:
    assetSource RevisionAssetsAssetImportAssetsFromS3AssetSource
    A block specifying the source bucket and key for the asset. This block supports the following:
    asset_source RevisionAssetsAssetImportAssetsFromS3AssetSource
    A block specifying the source bucket and key for the asset. This block supports the following:
    assetSource Property Map
    A block specifying the source bucket and key for the asset. This block supports the following:

    RevisionAssetsAssetImportAssetsFromS3AssetSource, RevisionAssetsAssetImportAssetsFromS3AssetSourceArgs

    Bucket string
    The name of the S3 bucket.
    Key string
    The key of the object in the S3 bucket.
    Bucket string
    The name of the S3 bucket.
    Key string
    The key of the object in the S3 bucket.
    bucket String
    The name of the S3 bucket.
    key String
    The key of the object in the S3 bucket.
    bucket string
    The name of the S3 bucket.
    key string
    The key of the object in the S3 bucket.
    bucket str
    The name of the S3 bucket.
    key str
    The key of the object in the S3 bucket.
    bucket String
    The name of the S3 bucket.
    key String
    The key of the object in the S3 bucket.

    RevisionAssetsAssetImportAssetsFromSignedUrl, RevisionAssetsAssetImportAssetsFromSignedUrlArgs

    Filename string
    The name of the file to import.
    Filename string
    The name of the file to import.
    filename String
    The name of the file to import.
    filename string
    The name of the file to import.
    filename str
    The name of the file to import.
    filename String
    The name of the file to import.

    RevisionAssetsTimeouts, RevisionAssetsTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v6.82.2 published on Thursday, Jun 12, 2025 by Pulumi