1. Packages
  2. Azure Native
  3. API Docs
  4. awsconnector
  5. S3AccessPoint
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi

azure-native.awsconnector.S3AccessPoint

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi

    A Microsoft.AwsConnector resource Azure REST API version: 2024-12-01.

    Example Usage

    S3AccessPoints_CreateOrReplace

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var s3AccessPoint = new AzureNative.AwsConnector.S3AccessPoint("s3AccessPoint", new()
        {
            Location = "azmnzomeh",
            Name = "Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
            Properties = new AzureNative.AwsConnector.Inputs.S3AccessPointPropertiesArgs
            {
                Arn = "dputejthukqrofpuygrkatazvamcge",
                AwsAccountId = "rqzqzkncomjg",
                AwsProperties = new AzureNative.AwsConnector.Inputs.AwsS3AccessPointPropertiesArgs
                {
                    Alias = "sv",
                    Arn = "sizkkllnnrgdfkaov",
                    Bucket = "hsqprhqjtcqrizzbhao",
                    BucketAccountId = "bmjnxdssnshenybwnws",
                    Name = "ve",
                    NetworkOrigin = AzureNative.AwsConnector.NetworkOrigin.Internet,
                    PublicAccessBlockConfiguration = new AzureNative.AwsConnector.Inputs.PublicAccessBlockConfigurationArgs
                    {
                        BlockPublicAcls = true,
                        BlockPublicPolicy = true,
                        IgnorePublicAcls = true,
                        RestrictPublicBuckets = true,
                    },
                    VpcConfiguration = new AzureNative.AwsConnector.Inputs.VpcConfigurationArgs
                    {
                        VpcId = "hhzyvprnlxearagzmfsg",
                    },
                },
                AwsRegion = "elrkktihogsptpwwazywnyyzs",
                AwsSourceSchema = "utriogwvkzanqypvldgboyemujg",
                AwsTags = 
                {
                    { "key2658", "bhytpvuo" },
                },
                PublicCloudConnectorsResourceId = "ixhnqrsogifbzagpdzakwjxqlt",
                PublicCloudResourceName = "swojnpzcxwqfvhrikxhgu",
            },
            ResourceGroupName = "rgs3AccessPoint",
            Tags = 
            {
                { "key2363", "vhrwgmqmjqdfyeutonv" },
            },
        });
    
    });
    
    package main
    
    import (
    	awsconnector "github.com/pulumi/pulumi-azure-native-sdk/awsconnector/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := awsconnector.NewS3AccessPoint(ctx, "s3AccessPoint", &awsconnector.S3AccessPointArgs{
    			Location: pulumi.String("azmnzomeh"),
    			Name:     pulumi.String("Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])"),
    			Properties: &awsconnector.S3AccessPointPropertiesArgs{
    				Arn:          pulumi.String("dputejthukqrofpuygrkatazvamcge"),
    				AwsAccountId: pulumi.String("rqzqzkncomjg"),
    				AwsProperties: &awsconnector.AwsS3AccessPointPropertiesArgs{
    					Alias:           pulumi.String("sv"),
    					Arn:             pulumi.String("sizkkllnnrgdfkaov"),
    					Bucket:          pulumi.String("hsqprhqjtcqrizzbhao"),
    					BucketAccountId: pulumi.String("bmjnxdssnshenybwnws"),
    					Name:            pulumi.String("ve"),
    					NetworkOrigin:   pulumi.String(awsconnector.NetworkOriginInternet),
    					PublicAccessBlockConfiguration: &awsconnector.PublicAccessBlockConfigurationArgs{
    						BlockPublicAcls:       pulumi.Bool(true),
    						BlockPublicPolicy:     pulumi.Bool(true),
    						IgnorePublicAcls:      pulumi.Bool(true),
    						RestrictPublicBuckets: pulumi.Bool(true),
    					},
    					VpcConfiguration: &awsconnector.VpcConfigurationArgs{
    						VpcId: pulumi.String("hhzyvprnlxearagzmfsg"),
    					},
    				},
    				AwsRegion:       pulumi.String("elrkktihogsptpwwazywnyyzs"),
    				AwsSourceSchema: pulumi.String("utriogwvkzanqypvldgboyemujg"),
    				AwsTags: pulumi.StringMap{
    					"key2658": pulumi.String("bhytpvuo"),
    				},
    				PublicCloudConnectorsResourceId: pulumi.String("ixhnqrsogifbzagpdzakwjxqlt"),
    				PublicCloudResourceName:         pulumi.String("swojnpzcxwqfvhrikxhgu"),
    			},
    			ResourceGroupName: pulumi.String("rgs3AccessPoint"),
    			Tags: pulumi.StringMap{
    				"key2363": pulumi.String("vhrwgmqmjqdfyeutonv"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.awsconnector.S3AccessPoint;
    import com.pulumi.azurenative.awsconnector.S3AccessPointArgs;
    import com.pulumi.azurenative.awsconnector.inputs.S3AccessPointPropertiesArgs;
    import com.pulumi.azurenative.awsconnector.inputs.AwsS3AccessPointPropertiesArgs;
    import com.pulumi.azurenative.awsconnector.inputs.PublicAccessBlockConfigurationArgs;
    import com.pulumi.azurenative.awsconnector.inputs.VpcConfigurationArgs;
    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 s3AccessPoint = new S3AccessPoint("s3AccessPoint", S3AccessPointArgs.builder()
                .location("azmnzomeh")
                .name("Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])")
                .properties(S3AccessPointPropertiesArgs.builder()
                    .arn("dputejthukqrofpuygrkatazvamcge")
                    .awsAccountId("rqzqzkncomjg")
                    .awsProperties(AwsS3AccessPointPropertiesArgs.builder()
                        .alias("sv")
                        .arn("sizkkllnnrgdfkaov")
                        .bucket("hsqprhqjtcqrizzbhao")
                        .bucketAccountId("bmjnxdssnshenybwnws")
                        .name("ve")
                        .networkOrigin("Internet")
                        .publicAccessBlockConfiguration(PublicAccessBlockConfigurationArgs.builder()
                            .blockPublicAcls(true)
                            .blockPublicPolicy(true)
                            .ignorePublicAcls(true)
                            .restrictPublicBuckets(true)
                            .build())
                        .vpcConfiguration(VpcConfigurationArgs.builder()
                            .vpcId("hhzyvprnlxearagzmfsg")
                            .build())
                        .build())
                    .awsRegion("elrkktihogsptpwwazywnyyzs")
                    .awsSourceSchema("utriogwvkzanqypvldgboyemujg")
                    .awsTags(Map.of("key2658", "bhytpvuo"))
                    .publicCloudConnectorsResourceId("ixhnqrsogifbzagpdzakwjxqlt")
                    .publicCloudResourceName("swojnpzcxwqfvhrikxhgu")
                    .build())
                .resourceGroupName("rgs3AccessPoint")
                .tags(Map.of("key2363", "vhrwgmqmjqdfyeutonv"))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    s3_access_point = azure_native.awsconnector.S3AccessPoint("s3AccessPoint",
        location="azmnzomeh",
        name="Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
        properties={
            "arn": "dputejthukqrofpuygrkatazvamcge",
            "aws_account_id": "rqzqzkncomjg",
            "aws_properties": {
                "alias": "sv",
                "arn": "sizkkllnnrgdfkaov",
                "bucket": "hsqprhqjtcqrizzbhao",
                "bucket_account_id": "bmjnxdssnshenybwnws",
                "name": "ve",
                "network_origin": azure_native.awsconnector.NetworkOrigin.INTERNET,
                "public_access_block_configuration": {
                    "block_public_acls": True,
                    "block_public_policy": True,
                    "ignore_public_acls": True,
                    "restrict_public_buckets": True,
                },
                "vpc_configuration": {
                    "vpc_id": "hhzyvprnlxearagzmfsg",
                },
            },
            "aws_region": "elrkktihogsptpwwazywnyyzs",
            "aws_source_schema": "utriogwvkzanqypvldgboyemujg",
            "aws_tags": {
                "key2658": "bhytpvuo",
            },
            "public_cloud_connectors_resource_id": "ixhnqrsogifbzagpdzakwjxqlt",
            "public_cloud_resource_name": "swojnpzcxwqfvhrikxhgu",
        },
        resource_group_name="rgs3AccessPoint",
        tags={
            "key2363": "vhrwgmqmjqdfyeutonv",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const s3AccessPoint = new azure_native.awsconnector.S3AccessPoint("s3AccessPoint", {
        location: "azmnzomeh",
        name: "Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
        properties: {
            arn: "dputejthukqrofpuygrkatazvamcge",
            awsAccountId: "rqzqzkncomjg",
            awsProperties: {
                alias: "sv",
                arn: "sizkkllnnrgdfkaov",
                bucket: "hsqprhqjtcqrizzbhao",
                bucketAccountId: "bmjnxdssnshenybwnws",
                name: "ve",
                networkOrigin: azure_native.awsconnector.NetworkOrigin.Internet,
                publicAccessBlockConfiguration: {
                    blockPublicAcls: true,
                    blockPublicPolicy: true,
                    ignorePublicAcls: true,
                    restrictPublicBuckets: true,
                },
                vpcConfiguration: {
                    vpcId: "hhzyvprnlxearagzmfsg",
                },
            },
            awsRegion: "elrkktihogsptpwwazywnyyzs",
            awsSourceSchema: "utriogwvkzanqypvldgboyemujg",
            awsTags: {
                key2658: "bhytpvuo",
            },
            publicCloudConnectorsResourceId: "ixhnqrsogifbzagpdzakwjxqlt",
            publicCloudResourceName: "swojnpzcxwqfvhrikxhgu",
        },
        resourceGroupName: "rgs3AccessPoint",
        tags: {
            key2363: "vhrwgmqmjqdfyeutonv",
        },
    });
    
    resources:
      s3AccessPoint:
        type: azure-native:awsconnector:S3AccessPoint
        properties:
          location: azmnzomeh
          name: Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])
          properties:
            arn: dputejthukqrofpuygrkatazvamcge
            awsAccountId: rqzqzkncomjg
            awsProperties:
              alias: sv
              arn: sizkkllnnrgdfkaov
              bucket: hsqprhqjtcqrizzbhao
              bucketAccountId: bmjnxdssnshenybwnws
              name: ve
              networkOrigin: Internet
              publicAccessBlockConfiguration:
                blockPublicAcls: true
                blockPublicPolicy: true
                ignorePublicAcls: true
                restrictPublicBuckets: true
              vpcConfiguration:
                vpcId: hhzyvprnlxearagzmfsg
            awsRegion: elrkktihogsptpwwazywnyyzs
            awsSourceSchema: utriogwvkzanqypvldgboyemujg
            awsTags:
              key2658: bhytpvuo
            publicCloudConnectorsResourceId: ixhnqrsogifbzagpdzakwjxqlt
            publicCloudResourceName: swojnpzcxwqfvhrikxhgu
          resourceGroupName: rgs3AccessPoint
          tags:
            key2363: vhrwgmqmjqdfyeutonv
    

    Create S3AccessPoint Resource

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

    Constructor syntax

    new S3AccessPoint(name: string, args: S3AccessPointArgs, opts?: CustomResourceOptions);
    @overload
    def S3AccessPoint(resource_name: str,
                      args: S3AccessPointArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def S3AccessPoint(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      resource_group_name: Optional[str] = None,
                      location: Optional[str] = None,
                      name: Optional[str] = None,
                      properties: Optional[S3AccessPointPropertiesArgs] = None,
                      tags: Optional[Mapping[str, str]] = None)
    func NewS3AccessPoint(ctx *Context, name string, args S3AccessPointArgs, opts ...ResourceOption) (*S3AccessPoint, error)
    public S3AccessPoint(string name, S3AccessPointArgs args, CustomResourceOptions? opts = null)
    public S3AccessPoint(String name, S3AccessPointArgs args)
    public S3AccessPoint(String name, S3AccessPointArgs args, CustomResourceOptions options)
    
    type: azure-native:awsconnector:S3AccessPoint
    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 S3AccessPointArgs
    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 S3AccessPointArgs
    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 S3AccessPointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args S3AccessPointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args S3AccessPointArgs
    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 s3accessPointResource = new AzureNative.AwsConnector.S3AccessPoint("s3accessPointResource", new()
    {
        ResourceGroupName = "string",
        Location = "string",
        Name = "string",
        Properties = new AzureNative.AwsConnector.Inputs.S3AccessPointPropertiesArgs
        {
            Arn = "string",
            AwsAccountId = "string",
            AwsProperties = new AzureNative.AwsConnector.Inputs.AwsS3AccessPointPropertiesArgs
            {
                Alias = "string",
                Arn = "string",
                Bucket = "string",
                BucketAccountId = "string",
                Name = "string",
                NetworkOrigin = "string",
                Policy = "any",
                PublicAccessBlockConfiguration = new AzureNative.AwsConnector.Inputs.PublicAccessBlockConfigurationArgs
                {
                    BlockPublicAcls = false,
                    BlockPublicPolicy = false,
                    IgnorePublicAcls = false,
                    RestrictPublicBuckets = false,
                },
                VpcConfiguration = new AzureNative.AwsConnector.Inputs.VpcConfigurationArgs
                {
                    VpcId = "string",
                },
            },
            AwsRegion = "string",
            AwsSourceSchema = "string",
            AwsTags = 
            {
                { "string", "string" },
            },
            PublicCloudConnectorsResourceId = "string",
            PublicCloudResourceName = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := awsconnector.NewS3AccessPoint(ctx, "s3accessPointResource", &awsconnector.S3AccessPointArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Name:              pulumi.String("string"),
    	Properties: &awsconnector.S3AccessPointPropertiesArgs{
    		Arn:          pulumi.String("string"),
    		AwsAccountId: pulumi.String("string"),
    		AwsProperties: &awsconnector.AwsS3AccessPointPropertiesArgs{
    			Alias:           pulumi.String("string"),
    			Arn:             pulumi.String("string"),
    			Bucket:          pulumi.String("string"),
    			BucketAccountId: pulumi.String("string"),
    			Name:            pulumi.String("string"),
    			NetworkOrigin:   pulumi.String("string"),
    			Policy:          pulumi.Any("any"),
    			PublicAccessBlockConfiguration: &awsconnector.PublicAccessBlockConfigurationArgs{
    				BlockPublicAcls:       pulumi.Bool(false),
    				BlockPublicPolicy:     pulumi.Bool(false),
    				IgnorePublicAcls:      pulumi.Bool(false),
    				RestrictPublicBuckets: pulumi.Bool(false),
    			},
    			VpcConfiguration: &awsconnector.VpcConfigurationArgs{
    				VpcId: pulumi.String("string"),
    			},
    		},
    		AwsRegion:       pulumi.String("string"),
    		AwsSourceSchema: pulumi.String("string"),
    		AwsTags: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		PublicCloudConnectorsResourceId: pulumi.String("string"),
    		PublicCloudResourceName:         pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var s3accessPointResource = new S3AccessPoint("s3accessPointResource", S3AccessPointArgs.builder()
        .resourceGroupName("string")
        .location("string")
        .name("string")
        .properties(S3AccessPointPropertiesArgs.builder()
            .arn("string")
            .awsAccountId("string")
            .awsProperties(AwsS3AccessPointPropertiesArgs.builder()
                .alias("string")
                .arn("string")
                .bucket("string")
                .bucketAccountId("string")
                .name("string")
                .networkOrigin("string")
                .policy("any")
                .publicAccessBlockConfiguration(PublicAccessBlockConfigurationArgs.builder()
                    .blockPublicAcls(false)
                    .blockPublicPolicy(false)
                    .ignorePublicAcls(false)
                    .restrictPublicBuckets(false)
                    .build())
                .vpcConfiguration(VpcConfigurationArgs.builder()
                    .vpcId("string")
                    .build())
                .build())
            .awsRegion("string")
            .awsSourceSchema("string")
            .awsTags(Map.of("string", "string"))
            .publicCloudConnectorsResourceId("string")
            .publicCloudResourceName("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    s3access_point_resource = azure_native.awsconnector.S3AccessPoint("s3accessPointResource",
        resource_group_name="string",
        location="string",
        name="string",
        properties={
            "arn": "string",
            "aws_account_id": "string",
            "aws_properties": {
                "alias": "string",
                "arn": "string",
                "bucket": "string",
                "bucket_account_id": "string",
                "name": "string",
                "network_origin": "string",
                "policy": "any",
                "public_access_block_configuration": {
                    "block_public_acls": False,
                    "block_public_policy": False,
                    "ignore_public_acls": False,
                    "restrict_public_buckets": False,
                },
                "vpc_configuration": {
                    "vpc_id": "string",
                },
            },
            "aws_region": "string",
            "aws_source_schema": "string",
            "aws_tags": {
                "string": "string",
            },
            "public_cloud_connectors_resource_id": "string",
            "public_cloud_resource_name": "string",
        },
        tags={
            "string": "string",
        })
    
    const s3accessPointResource = new azure_native.awsconnector.S3AccessPoint("s3accessPointResource", {
        resourceGroupName: "string",
        location: "string",
        name: "string",
        properties: {
            arn: "string",
            awsAccountId: "string",
            awsProperties: {
                alias: "string",
                arn: "string",
                bucket: "string",
                bucketAccountId: "string",
                name: "string",
                networkOrigin: "string",
                policy: "any",
                publicAccessBlockConfiguration: {
                    blockPublicAcls: false,
                    blockPublicPolicy: false,
                    ignorePublicAcls: false,
                    restrictPublicBuckets: false,
                },
                vpcConfiguration: {
                    vpcId: "string",
                },
            },
            awsRegion: "string",
            awsSourceSchema: "string",
            awsTags: {
                string: "string",
            },
            publicCloudConnectorsResourceId: "string",
            publicCloudResourceName: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:awsconnector:S3AccessPoint
    properties:
        location: string
        name: string
        properties:
            arn: string
            awsAccountId: string
            awsProperties:
                alias: string
                arn: string
                bucket: string
                bucketAccountId: string
                name: string
                networkOrigin: string
                policy: any
                publicAccessBlockConfiguration:
                    blockPublicAcls: false
                    blockPublicPolicy: false
                    ignorePublicAcls: false
                    restrictPublicBuckets: false
                vpcConfiguration:
                    vpcId: string
            awsRegion: string
            awsSourceSchema: string
            awsTags:
                string: string
            publicCloudConnectorsResourceId: string
            publicCloudResourceName: string
        resourceGroupName: string
        tags:
            string: string
    

    S3AccessPoint 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 S3AccessPoint resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Name string
    Name of S3AccessPoint
    Properties Pulumi.AzureNative.AwsConnector.Inputs.S3AccessPointProperties
    The resource-specific properties for this resource.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Name string
    Name of S3AccessPoint
    Properties S3AccessPointPropertiesArgs
    The resource-specific properties for this resource.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    name String
    Name of S3AccessPoint
    properties S3AccessPointProperties
    The resource-specific properties for this resource.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    location string
    The geo-location where the resource lives
    name string
    Name of S3AccessPoint
    properties S3AccessPointProperties
    The resource-specific properties for this resource.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    location str
    The geo-location where the resource lives
    name str
    Name of S3AccessPoint
    properties S3AccessPointPropertiesArgs
    The resource-specific properties for this resource.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    name String
    Name of S3AccessPoint
    properties Property Map
    The resource-specific properties for this resource.
    tags Map<String>
    Resource tags.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    SystemData Pulumi.AzureNative.AwsConnector.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AwsS3AccessPointProperties, AwsS3AccessPointPropertiesArgs

    Alias string
    The alias of this Access Point. This alias can be used for compatibility purposes with other AWS services and third-party applications.
    Arn string
    The Amazon Resource Name (ARN) of the specified accesspoint. the Amazon Resource Name (ARN) of the specified accesspoint.
    Bucket string
    The name of the bucket that you want to associate this Access Point with.
    BucketAccountId string
    The AWS account ID associated with the S3 bucket associated with this access point.
    Name string
    The name you want to assign to this Access Point. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name.
    NetworkOrigin string | Pulumi.AzureNative.AwsConnector.NetworkOrigin
    Indicates whether this Access Point allows access from the public Internet. If VpcConfiguration is specified for this Access Point, then NetworkOrigin is VPC, and the Access Point doesn't allow access from the public Internet. Otherwise, NetworkOrigin is Internet, and the Access Point allows access from the public Internet, subject to the Access Point and bucket access policies.
    Policy object
    The Access Point Policy you want to apply to this access point.
    PublicAccessBlockConfiguration Pulumi.AzureNative.AwsConnector.Inputs.PublicAccessBlockConfiguration
    The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
    VpcConfiguration Pulumi.AzureNative.AwsConnector.Inputs.VpcConfiguration
    If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC). The Virtual Private Cloud (VPC) configuration for a bucket access point.
    Alias string
    The alias of this Access Point. This alias can be used for compatibility purposes with other AWS services and third-party applications.
    Arn string
    The Amazon Resource Name (ARN) of the specified accesspoint. the Amazon Resource Name (ARN) of the specified accesspoint.
    Bucket string
    The name of the bucket that you want to associate this Access Point with.
    BucketAccountId string
    The AWS account ID associated with the S3 bucket associated with this access point.
    Name string
    The name you want to assign to this Access Point. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name.
    NetworkOrigin string | NetworkOrigin
    Indicates whether this Access Point allows access from the public Internet. If VpcConfiguration is specified for this Access Point, then NetworkOrigin is VPC, and the Access Point doesn't allow access from the public Internet. Otherwise, NetworkOrigin is Internet, and the Access Point allows access from the public Internet, subject to the Access Point and bucket access policies.
    Policy interface{}
    The Access Point Policy you want to apply to this access point.
    PublicAccessBlockConfiguration PublicAccessBlockConfiguration
    The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
    VpcConfiguration VpcConfiguration
    If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC). The Virtual Private Cloud (VPC) configuration for a bucket access point.
    alias String
    The alias of this Access Point. This alias can be used for compatibility purposes with other AWS services and third-party applications.
    arn String
    The Amazon Resource Name (ARN) of the specified accesspoint. the Amazon Resource Name (ARN) of the specified accesspoint.
    bucket String
    The name of the bucket that you want to associate this Access Point with.
    bucketAccountId String
    The AWS account ID associated with the S3 bucket associated with this access point.
    name String
    The name you want to assign to this Access Point. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name.
    networkOrigin String | NetworkOrigin
    Indicates whether this Access Point allows access from the public Internet. If VpcConfiguration is specified for this Access Point, then NetworkOrigin is VPC, and the Access Point doesn't allow access from the public Internet. Otherwise, NetworkOrigin is Internet, and the Access Point allows access from the public Internet, subject to the Access Point and bucket access policies.
    policy Object
    The Access Point Policy you want to apply to this access point.
    publicAccessBlockConfiguration PublicAccessBlockConfiguration
    The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
    vpcConfiguration VpcConfiguration
    If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC). The Virtual Private Cloud (VPC) configuration for a bucket access point.
    alias string
    The alias of this Access Point. This alias can be used for compatibility purposes with other AWS services and third-party applications.
    arn string
    The Amazon Resource Name (ARN) of the specified accesspoint. the Amazon Resource Name (ARN) of the specified accesspoint.
    bucket string
    The name of the bucket that you want to associate this Access Point with.
    bucketAccountId string
    The AWS account ID associated with the S3 bucket associated with this access point.
    name string
    The name you want to assign to this Access Point. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name.
    networkOrigin string | NetworkOrigin
    Indicates whether this Access Point allows access from the public Internet. If VpcConfiguration is specified for this Access Point, then NetworkOrigin is VPC, and the Access Point doesn't allow access from the public Internet. Otherwise, NetworkOrigin is Internet, and the Access Point allows access from the public Internet, subject to the Access Point and bucket access policies.
    policy any
    The Access Point Policy you want to apply to this access point.
    publicAccessBlockConfiguration PublicAccessBlockConfiguration
    The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
    vpcConfiguration VpcConfiguration
    If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC). The Virtual Private Cloud (VPC) configuration for a bucket access point.
    alias str
    The alias of this Access Point. This alias can be used for compatibility purposes with other AWS services and third-party applications.
    arn str
    The Amazon Resource Name (ARN) of the specified accesspoint. the Amazon Resource Name (ARN) of the specified accesspoint.
    bucket str
    The name of the bucket that you want to associate this Access Point with.
    bucket_account_id str
    The AWS account ID associated with the S3 bucket associated with this access point.
    name str
    The name you want to assign to this Access Point. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name.
    network_origin str | NetworkOrigin
    Indicates whether this Access Point allows access from the public Internet. If VpcConfiguration is specified for this Access Point, then NetworkOrigin is VPC, and the Access Point doesn't allow access from the public Internet. Otherwise, NetworkOrigin is Internet, and the Access Point allows access from the public Internet, subject to the Access Point and bucket access policies.
    policy Any
    The Access Point Policy you want to apply to this access point.
    public_access_block_configuration PublicAccessBlockConfiguration
    The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
    vpc_configuration VpcConfiguration
    If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC). The Virtual Private Cloud (VPC) configuration for a bucket access point.
    alias String
    The alias of this Access Point. This alias can be used for compatibility purposes with other AWS services and third-party applications.
    arn String
    The Amazon Resource Name (ARN) of the specified accesspoint. the Amazon Resource Name (ARN) of the specified accesspoint.
    bucket String
    The name of the bucket that you want to associate this Access Point with.
    bucketAccountId String
    The AWS account ID associated with the S3 bucket associated with this access point.
    name String
    The name you want to assign to this Access Point. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name.
    networkOrigin String | "Internet" | "VPC"
    Indicates whether this Access Point allows access from the public Internet. If VpcConfiguration is specified for this Access Point, then NetworkOrigin is VPC, and the Access Point doesn't allow access from the public Internet. Otherwise, NetworkOrigin is Internet, and the Access Point allows access from the public Internet, subject to the Access Point and bucket access policies.
    policy Any
    The Access Point Policy you want to apply to this access point.
    publicAccessBlockConfiguration Property Map
    The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
    vpcConfiguration Property Map
    If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC). The Virtual Private Cloud (VPC) configuration for a bucket access point.

    AwsS3AccessPointPropertiesResponse, AwsS3AccessPointPropertiesResponseArgs

    Alias string
    The alias of this Access Point. This alias can be used for compatibility purposes with other AWS services and third-party applications.
    Arn string
    The Amazon Resource Name (ARN) of the specified accesspoint. the Amazon Resource Name (ARN) of the specified accesspoint.
    Bucket string
    The name of the bucket that you want to associate this Access Point with.
    BucketAccountId string
    The AWS account ID associated with the S3 bucket associated with this access point.
    Name string
    The name you want to assign to this Access Point. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name.
    NetworkOrigin string
    Indicates whether this Access Point allows access from the public Internet. If VpcConfiguration is specified for this Access Point, then NetworkOrigin is VPC, and the Access Point doesn't allow access from the public Internet. Otherwise, NetworkOrigin is Internet, and the Access Point allows access from the public Internet, subject to the Access Point and bucket access policies.
    Policy object
    The Access Point Policy you want to apply to this access point.
    PublicAccessBlockConfiguration Pulumi.AzureNative.AwsConnector.Inputs.PublicAccessBlockConfigurationResponse
    The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
    VpcConfiguration Pulumi.AzureNative.AwsConnector.Inputs.VpcConfigurationResponse
    If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC). The Virtual Private Cloud (VPC) configuration for a bucket access point.
    Alias string
    The alias of this Access Point. This alias can be used for compatibility purposes with other AWS services and third-party applications.
    Arn string
    The Amazon Resource Name (ARN) of the specified accesspoint. the Amazon Resource Name (ARN) of the specified accesspoint.
    Bucket string
    The name of the bucket that you want to associate this Access Point with.
    BucketAccountId string
    The AWS account ID associated with the S3 bucket associated with this access point.
    Name string
    The name you want to assign to this Access Point. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name.
    NetworkOrigin string
    Indicates whether this Access Point allows access from the public Internet. If VpcConfiguration is specified for this Access Point, then NetworkOrigin is VPC, and the Access Point doesn't allow access from the public Internet. Otherwise, NetworkOrigin is Internet, and the Access Point allows access from the public Internet, subject to the Access Point and bucket access policies.
    Policy interface{}
    The Access Point Policy you want to apply to this access point.
    PublicAccessBlockConfiguration PublicAccessBlockConfigurationResponse
    The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
    VpcConfiguration VpcConfigurationResponse
    If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC). The Virtual Private Cloud (VPC) configuration for a bucket access point.
    alias String
    The alias of this Access Point. This alias can be used for compatibility purposes with other AWS services and third-party applications.
    arn String
    The Amazon Resource Name (ARN) of the specified accesspoint. the Amazon Resource Name (ARN) of the specified accesspoint.
    bucket String
    The name of the bucket that you want to associate this Access Point with.
    bucketAccountId String
    The AWS account ID associated with the S3 bucket associated with this access point.
    name String
    The name you want to assign to this Access Point. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name.
    networkOrigin String
    Indicates whether this Access Point allows access from the public Internet. If VpcConfiguration is specified for this Access Point, then NetworkOrigin is VPC, and the Access Point doesn't allow access from the public Internet. Otherwise, NetworkOrigin is Internet, and the Access Point allows access from the public Internet, subject to the Access Point and bucket access policies.
    policy Object
    The Access Point Policy you want to apply to this access point.
    publicAccessBlockConfiguration PublicAccessBlockConfigurationResponse
    The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
    vpcConfiguration VpcConfigurationResponse
    If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC). The Virtual Private Cloud (VPC) configuration for a bucket access point.
    alias string
    The alias of this Access Point. This alias can be used for compatibility purposes with other AWS services and third-party applications.
    arn string
    The Amazon Resource Name (ARN) of the specified accesspoint. the Amazon Resource Name (ARN) of the specified accesspoint.
    bucket string
    The name of the bucket that you want to associate this Access Point with.
    bucketAccountId string
    The AWS account ID associated with the S3 bucket associated with this access point.
    name string
    The name you want to assign to this Access Point. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name.
    networkOrigin string
    Indicates whether this Access Point allows access from the public Internet. If VpcConfiguration is specified for this Access Point, then NetworkOrigin is VPC, and the Access Point doesn't allow access from the public Internet. Otherwise, NetworkOrigin is Internet, and the Access Point allows access from the public Internet, subject to the Access Point and bucket access policies.
    policy any
    The Access Point Policy you want to apply to this access point.
    publicAccessBlockConfiguration PublicAccessBlockConfigurationResponse
    The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
    vpcConfiguration VpcConfigurationResponse
    If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC). The Virtual Private Cloud (VPC) configuration for a bucket access point.
    alias str
    The alias of this Access Point. This alias can be used for compatibility purposes with other AWS services and third-party applications.
    arn str
    The Amazon Resource Name (ARN) of the specified accesspoint. the Amazon Resource Name (ARN) of the specified accesspoint.
    bucket str
    The name of the bucket that you want to associate this Access Point with.
    bucket_account_id str
    The AWS account ID associated with the S3 bucket associated with this access point.
    name str
    The name you want to assign to this Access Point. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name.
    network_origin str
    Indicates whether this Access Point allows access from the public Internet. If VpcConfiguration is specified for this Access Point, then NetworkOrigin is VPC, and the Access Point doesn't allow access from the public Internet. Otherwise, NetworkOrigin is Internet, and the Access Point allows access from the public Internet, subject to the Access Point and bucket access policies.
    policy Any
    The Access Point Policy you want to apply to this access point.
    public_access_block_configuration PublicAccessBlockConfigurationResponse
    The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
    vpc_configuration VpcConfigurationResponse
    If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC). The Virtual Private Cloud (VPC) configuration for a bucket access point.
    alias String
    The alias of this Access Point. This alias can be used for compatibility purposes with other AWS services and third-party applications.
    arn String
    The Amazon Resource Name (ARN) of the specified accesspoint. the Amazon Resource Name (ARN) of the specified accesspoint.
    bucket String
    The name of the bucket that you want to associate this Access Point with.
    bucketAccountId String
    The AWS account ID associated with the S3 bucket associated with this access point.
    name String
    The name you want to assign to this Access Point. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name.
    networkOrigin String
    Indicates whether this Access Point allows access from the public Internet. If VpcConfiguration is specified for this Access Point, then NetworkOrigin is VPC, and the Access Point doesn't allow access from the public Internet. Otherwise, NetworkOrigin is Internet, and the Access Point allows access from the public Internet, subject to the Access Point and bucket access policies.
    policy Any
    The Access Point Policy you want to apply to this access point.
    publicAccessBlockConfiguration Property Map
    The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
    vpcConfiguration Property Map
    If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC). The Virtual Private Cloud (VPC) configuration for a bucket access point.

    NetworkOrigin, NetworkOriginArgs

    Internet
    InternetNetworkOrigin enum Internet
    VPC
    VPCNetworkOrigin enum VPC
    NetworkOriginInternet
    InternetNetworkOrigin enum Internet
    NetworkOriginVPC
    VPCNetworkOrigin enum VPC
    Internet
    InternetNetworkOrigin enum Internet
    VPC
    VPCNetworkOrigin enum VPC
    Internet
    InternetNetworkOrigin enum Internet
    VPC
    VPCNetworkOrigin enum VPC
    INTERNET
    InternetNetworkOrigin enum Internet
    VPC
    VPCNetworkOrigin enum VPC
    "Internet"
    InternetNetworkOrigin enum Internet
    "VPC"
    VPCNetworkOrigin enum VPC

    PublicAccessBlockConfiguration, PublicAccessBlockConfigurationArgs

    BlockPublicAcls bool
    Specifies whether Amazon S3 should block public access control lists (ACLs) for this bucket and objects in this bucket. Setting this element to TRUE causes the following behavior: + PUT Bucket ACL and PUT Object ACL calls fail if the specified ACL is public. + PUT Object calls fail if the request includes a public ACL. + PUT Bucket calls fail if the request includes a public ACL. Enabling this setting doesn't affect existing policies or ACLs.
    BlockPublicPolicy bool
    Specifies whether Amazon S3 should block public bucket policies for this bucket. Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. Enabling this setting doesn't affect existing bucket policies.
    IgnorePublicAcls bool
    Specifies whether Amazon S3 should ignore public ACLs for this bucket and objects in this bucket. Setting this element to TRUE causes Amazon S3 to ignore all public ACLs on this bucket and objects in this bucket. Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.
    RestrictPublicBuckets bool
    Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS-service principals and authorized users within this account if the bucket has a public policy. Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.
    BlockPublicAcls bool
    Specifies whether Amazon S3 should block public access control lists (ACLs) for this bucket and objects in this bucket. Setting this element to TRUE causes the following behavior: + PUT Bucket ACL and PUT Object ACL calls fail if the specified ACL is public. + PUT Object calls fail if the request includes a public ACL. + PUT Bucket calls fail if the request includes a public ACL. Enabling this setting doesn't affect existing policies or ACLs.
    BlockPublicPolicy bool
    Specifies whether Amazon S3 should block public bucket policies for this bucket. Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. Enabling this setting doesn't affect existing bucket policies.
    IgnorePublicAcls bool
    Specifies whether Amazon S3 should ignore public ACLs for this bucket and objects in this bucket. Setting this element to TRUE causes Amazon S3 to ignore all public ACLs on this bucket and objects in this bucket. Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.
    RestrictPublicBuckets bool
    Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS-service principals and authorized users within this account if the bucket has a public policy. Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.
    blockPublicAcls Boolean
    Specifies whether Amazon S3 should block public access control lists (ACLs) for this bucket and objects in this bucket. Setting this element to TRUE causes the following behavior: + PUT Bucket ACL and PUT Object ACL calls fail if the specified ACL is public. + PUT Object calls fail if the request includes a public ACL. + PUT Bucket calls fail if the request includes a public ACL. Enabling this setting doesn't affect existing policies or ACLs.
    blockPublicPolicy Boolean
    Specifies whether Amazon S3 should block public bucket policies for this bucket. Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. Enabling this setting doesn't affect existing bucket policies.
    ignorePublicAcls Boolean
    Specifies whether Amazon S3 should ignore public ACLs for this bucket and objects in this bucket. Setting this element to TRUE causes Amazon S3 to ignore all public ACLs on this bucket and objects in this bucket. Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.
    restrictPublicBuckets Boolean
    Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS-service principals and authorized users within this account if the bucket has a public policy. Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.
    blockPublicAcls boolean
    Specifies whether Amazon S3 should block public access control lists (ACLs) for this bucket and objects in this bucket. Setting this element to TRUE causes the following behavior: + PUT Bucket ACL and PUT Object ACL calls fail if the specified ACL is public. + PUT Object calls fail if the request includes a public ACL. + PUT Bucket calls fail if the request includes a public ACL. Enabling this setting doesn't affect existing policies or ACLs.
    blockPublicPolicy boolean
    Specifies whether Amazon S3 should block public bucket policies for this bucket. Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. Enabling this setting doesn't affect existing bucket policies.
    ignorePublicAcls boolean
    Specifies whether Amazon S3 should ignore public ACLs for this bucket and objects in this bucket. Setting this element to TRUE causes Amazon S3 to ignore all public ACLs on this bucket and objects in this bucket. Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.
    restrictPublicBuckets boolean
    Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS-service principals and authorized users within this account if the bucket has a public policy. Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.
    block_public_acls bool
    Specifies whether Amazon S3 should block public access control lists (ACLs) for this bucket and objects in this bucket. Setting this element to TRUE causes the following behavior: + PUT Bucket ACL and PUT Object ACL calls fail if the specified ACL is public. + PUT Object calls fail if the request includes a public ACL. + PUT Bucket calls fail if the request includes a public ACL. Enabling this setting doesn't affect existing policies or ACLs.
    block_public_policy bool
    Specifies whether Amazon S3 should block public bucket policies for this bucket. Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. Enabling this setting doesn't affect existing bucket policies.
    ignore_public_acls bool
    Specifies whether Amazon S3 should ignore public ACLs for this bucket and objects in this bucket. Setting this element to TRUE causes Amazon S3 to ignore all public ACLs on this bucket and objects in this bucket. Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.
    restrict_public_buckets bool
    Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS-service principals and authorized users within this account if the bucket has a public policy. Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.
    blockPublicAcls Boolean
    Specifies whether Amazon S3 should block public access control lists (ACLs) for this bucket and objects in this bucket. Setting this element to TRUE causes the following behavior: + PUT Bucket ACL and PUT Object ACL calls fail if the specified ACL is public. + PUT Object calls fail if the request includes a public ACL. + PUT Bucket calls fail if the request includes a public ACL. Enabling this setting doesn't affect existing policies or ACLs.
    blockPublicPolicy Boolean
    Specifies whether Amazon S3 should block public bucket policies for this bucket. Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. Enabling this setting doesn't affect existing bucket policies.
    ignorePublicAcls Boolean
    Specifies whether Amazon S3 should ignore public ACLs for this bucket and objects in this bucket. Setting this element to TRUE causes Amazon S3 to ignore all public ACLs on this bucket and objects in this bucket. Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.
    restrictPublicBuckets Boolean
    Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS-service principals and authorized users within this account if the bucket has a public policy. Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.

    PublicAccessBlockConfigurationResponse, PublicAccessBlockConfigurationResponseArgs

    BlockPublicAcls bool
    Specifies whether Amazon S3 should block public access control lists (ACLs) for this bucket and objects in this bucket. Setting this element to TRUE causes the following behavior: + PUT Bucket ACL and PUT Object ACL calls fail if the specified ACL is public. + PUT Object calls fail if the request includes a public ACL. + PUT Bucket calls fail if the request includes a public ACL. Enabling this setting doesn't affect existing policies or ACLs.
    BlockPublicPolicy bool
    Specifies whether Amazon S3 should block public bucket policies for this bucket. Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. Enabling this setting doesn't affect existing bucket policies.
    IgnorePublicAcls bool
    Specifies whether Amazon S3 should ignore public ACLs for this bucket and objects in this bucket. Setting this element to TRUE causes Amazon S3 to ignore all public ACLs on this bucket and objects in this bucket. Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.
    RestrictPublicBuckets bool
    Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS-service principals and authorized users within this account if the bucket has a public policy. Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.
    BlockPublicAcls bool
    Specifies whether Amazon S3 should block public access control lists (ACLs) for this bucket and objects in this bucket. Setting this element to TRUE causes the following behavior: + PUT Bucket ACL and PUT Object ACL calls fail if the specified ACL is public. + PUT Object calls fail if the request includes a public ACL. + PUT Bucket calls fail if the request includes a public ACL. Enabling this setting doesn't affect existing policies or ACLs.
    BlockPublicPolicy bool
    Specifies whether Amazon S3 should block public bucket policies for this bucket. Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. Enabling this setting doesn't affect existing bucket policies.
    IgnorePublicAcls bool
    Specifies whether Amazon S3 should ignore public ACLs for this bucket and objects in this bucket. Setting this element to TRUE causes Amazon S3 to ignore all public ACLs on this bucket and objects in this bucket. Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.
    RestrictPublicBuckets bool
    Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS-service principals and authorized users within this account if the bucket has a public policy. Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.
    blockPublicAcls Boolean
    Specifies whether Amazon S3 should block public access control lists (ACLs) for this bucket and objects in this bucket. Setting this element to TRUE causes the following behavior: + PUT Bucket ACL and PUT Object ACL calls fail if the specified ACL is public. + PUT Object calls fail if the request includes a public ACL. + PUT Bucket calls fail if the request includes a public ACL. Enabling this setting doesn't affect existing policies or ACLs.
    blockPublicPolicy Boolean
    Specifies whether Amazon S3 should block public bucket policies for this bucket. Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. Enabling this setting doesn't affect existing bucket policies.
    ignorePublicAcls Boolean
    Specifies whether Amazon S3 should ignore public ACLs for this bucket and objects in this bucket. Setting this element to TRUE causes Amazon S3 to ignore all public ACLs on this bucket and objects in this bucket. Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.
    restrictPublicBuckets Boolean
    Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS-service principals and authorized users within this account if the bucket has a public policy. Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.
    blockPublicAcls boolean
    Specifies whether Amazon S3 should block public access control lists (ACLs) for this bucket and objects in this bucket. Setting this element to TRUE causes the following behavior: + PUT Bucket ACL and PUT Object ACL calls fail if the specified ACL is public. + PUT Object calls fail if the request includes a public ACL. + PUT Bucket calls fail if the request includes a public ACL. Enabling this setting doesn't affect existing policies or ACLs.
    blockPublicPolicy boolean
    Specifies whether Amazon S3 should block public bucket policies for this bucket. Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. Enabling this setting doesn't affect existing bucket policies.
    ignorePublicAcls boolean
    Specifies whether Amazon S3 should ignore public ACLs for this bucket and objects in this bucket. Setting this element to TRUE causes Amazon S3 to ignore all public ACLs on this bucket and objects in this bucket. Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.
    restrictPublicBuckets boolean
    Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS-service principals and authorized users within this account if the bucket has a public policy. Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.
    block_public_acls bool
    Specifies whether Amazon S3 should block public access control lists (ACLs) for this bucket and objects in this bucket. Setting this element to TRUE causes the following behavior: + PUT Bucket ACL and PUT Object ACL calls fail if the specified ACL is public. + PUT Object calls fail if the request includes a public ACL. + PUT Bucket calls fail if the request includes a public ACL. Enabling this setting doesn't affect existing policies or ACLs.
    block_public_policy bool
    Specifies whether Amazon S3 should block public bucket policies for this bucket. Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. Enabling this setting doesn't affect existing bucket policies.
    ignore_public_acls bool
    Specifies whether Amazon S3 should ignore public ACLs for this bucket and objects in this bucket. Setting this element to TRUE causes Amazon S3 to ignore all public ACLs on this bucket and objects in this bucket. Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.
    restrict_public_buckets bool
    Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS-service principals and authorized users within this account if the bucket has a public policy. Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.
    blockPublicAcls Boolean
    Specifies whether Amazon S3 should block public access control lists (ACLs) for this bucket and objects in this bucket. Setting this element to TRUE causes the following behavior: + PUT Bucket ACL and PUT Object ACL calls fail if the specified ACL is public. + PUT Object calls fail if the request includes a public ACL. + PUT Bucket calls fail if the request includes a public ACL. Enabling this setting doesn't affect existing policies or ACLs.
    blockPublicPolicy Boolean
    Specifies whether Amazon S3 should block public bucket policies for this bucket. Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. Enabling this setting doesn't affect existing bucket policies.
    ignorePublicAcls Boolean
    Specifies whether Amazon S3 should ignore public ACLs for this bucket and objects in this bucket. Setting this element to TRUE causes Amazon S3 to ignore all public ACLs on this bucket and objects in this bucket. Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.
    restrictPublicBuckets Boolean
    Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS-service principals and authorized users within this account if the bucket has a public policy. Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.

    S3AccessPointProperties, S3AccessPointPropertiesArgs

    Arn string
    Amazon Resource Name (ARN)
    AwsAccountId string
    AWS Account ID
    AwsProperties Pulumi.AzureNative.AwsConnector.Inputs.AwsS3AccessPointProperties
    AWS Properties
    AwsRegion string
    AWS Region
    AwsSourceSchema string
    AWS Source Schema
    AwsTags Dictionary<string, string>
    AWS Tags
    PublicCloudConnectorsResourceId string
    Public Cloud Connectors Resource ID
    PublicCloudResourceName string
    Public Cloud Resource Name
    Arn string
    Amazon Resource Name (ARN)
    AwsAccountId string
    AWS Account ID
    AwsProperties AwsS3AccessPointProperties
    AWS Properties
    AwsRegion string
    AWS Region
    AwsSourceSchema string
    AWS Source Schema
    AwsTags map[string]string
    AWS Tags
    PublicCloudConnectorsResourceId string
    Public Cloud Connectors Resource ID
    PublicCloudResourceName string
    Public Cloud Resource Name
    arn String
    Amazon Resource Name (ARN)
    awsAccountId String
    AWS Account ID
    awsProperties AwsS3AccessPointProperties
    AWS Properties
    awsRegion String
    AWS Region
    awsSourceSchema String
    AWS Source Schema
    awsTags Map<String,String>
    AWS Tags
    publicCloudConnectorsResourceId String
    Public Cloud Connectors Resource ID
    publicCloudResourceName String
    Public Cloud Resource Name
    arn string
    Amazon Resource Name (ARN)
    awsAccountId string
    AWS Account ID
    awsProperties AwsS3AccessPointProperties
    AWS Properties
    awsRegion string
    AWS Region
    awsSourceSchema string
    AWS Source Schema
    awsTags {[key: string]: string}
    AWS Tags
    publicCloudConnectorsResourceId string
    Public Cloud Connectors Resource ID
    publicCloudResourceName string
    Public Cloud Resource Name
    arn str
    Amazon Resource Name (ARN)
    aws_account_id str
    AWS Account ID
    aws_properties AwsS3AccessPointProperties
    AWS Properties
    aws_region str
    AWS Region
    aws_source_schema str
    AWS Source Schema
    aws_tags Mapping[str, str]
    AWS Tags
    public_cloud_connectors_resource_id str
    Public Cloud Connectors Resource ID
    public_cloud_resource_name str
    Public Cloud Resource Name
    arn String
    Amazon Resource Name (ARN)
    awsAccountId String
    AWS Account ID
    awsProperties Property Map
    AWS Properties
    awsRegion String
    AWS Region
    awsSourceSchema String
    AWS Source Schema
    awsTags Map<String>
    AWS Tags
    publicCloudConnectorsResourceId String
    Public Cloud Connectors Resource ID
    publicCloudResourceName String
    Public Cloud Resource Name

    S3AccessPointPropertiesResponse, S3AccessPointPropertiesResponseArgs

    ProvisioningState string
    The status of the last operation.
    Arn string
    Amazon Resource Name (ARN)
    AwsAccountId string
    AWS Account ID
    AwsProperties Pulumi.AzureNative.AwsConnector.Inputs.AwsS3AccessPointPropertiesResponse
    AWS Properties
    AwsRegion string
    AWS Region
    AwsSourceSchema string
    AWS Source Schema
    AwsTags Dictionary<string, string>
    AWS Tags
    PublicCloudConnectorsResourceId string
    Public Cloud Connectors Resource ID
    PublicCloudResourceName string
    Public Cloud Resource Name
    ProvisioningState string
    The status of the last operation.
    Arn string
    Amazon Resource Name (ARN)
    AwsAccountId string
    AWS Account ID
    AwsProperties AwsS3AccessPointPropertiesResponse
    AWS Properties
    AwsRegion string
    AWS Region
    AwsSourceSchema string
    AWS Source Schema
    AwsTags map[string]string
    AWS Tags
    PublicCloudConnectorsResourceId string
    Public Cloud Connectors Resource ID
    PublicCloudResourceName string
    Public Cloud Resource Name
    provisioningState String
    The status of the last operation.
    arn String
    Amazon Resource Name (ARN)
    awsAccountId String
    AWS Account ID
    awsProperties AwsS3AccessPointPropertiesResponse
    AWS Properties
    awsRegion String
    AWS Region
    awsSourceSchema String
    AWS Source Schema
    awsTags Map<String,String>
    AWS Tags
    publicCloudConnectorsResourceId String
    Public Cloud Connectors Resource ID
    publicCloudResourceName String
    Public Cloud Resource Name
    provisioningState string
    The status of the last operation.
    arn string
    Amazon Resource Name (ARN)
    awsAccountId string
    AWS Account ID
    awsProperties AwsS3AccessPointPropertiesResponse
    AWS Properties
    awsRegion string
    AWS Region
    awsSourceSchema string
    AWS Source Schema
    awsTags {[key: string]: string}
    AWS Tags
    publicCloudConnectorsResourceId string
    Public Cloud Connectors Resource ID
    publicCloudResourceName string
    Public Cloud Resource Name
    provisioning_state str
    The status of the last operation.
    arn str
    Amazon Resource Name (ARN)
    aws_account_id str
    AWS Account ID
    aws_properties AwsS3AccessPointPropertiesResponse
    AWS Properties
    aws_region str
    AWS Region
    aws_source_schema str
    AWS Source Schema
    aws_tags Mapping[str, str]
    AWS Tags
    public_cloud_connectors_resource_id str
    Public Cloud Connectors Resource ID
    public_cloud_resource_name str
    Public Cloud Resource Name
    provisioningState String
    The status of the last operation.
    arn String
    Amazon Resource Name (ARN)
    awsAccountId String
    AWS Account ID
    awsProperties Property Map
    AWS Properties
    awsRegion String
    AWS Region
    awsSourceSchema String
    AWS Source Schema
    awsTags Map<String>
    AWS Tags
    publicCloudConnectorsResourceId String
    Public Cloud Connectors Resource ID
    publicCloudResourceName String
    Public Cloud Resource Name

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    VpcConfiguration, VpcConfigurationArgs

    VpcId string
    If this field is specified, this access point will only allow connections from the specified VPC ID.
    VpcId string
    If this field is specified, this access point will only allow connections from the specified VPC ID.
    vpcId String
    If this field is specified, this access point will only allow connections from the specified VPC ID.
    vpcId string
    If this field is specified, this access point will only allow connections from the specified VPC ID.
    vpc_id str
    If this field is specified, this access point will only allow connections from the specified VPC ID.
    vpcId String
    If this field is specified, this access point will only allow connections from the specified VPC ID.

    VpcConfigurationResponse, VpcConfigurationResponseArgs

    VpcId string
    If this field is specified, this access point will only allow connections from the specified VPC ID.
    VpcId string
    If this field is specified, this access point will only allow connections from the specified VPC ID.
    vpcId String
    If this field is specified, this access point will only allow connections from the specified VPC ID.
    vpcId string
    If this field is specified, this access point will only allow connections from the specified VPC ID.
    vpc_id str
    If this field is specified, this access point will only allow connections from the specified VPC ID.
    vpcId String
    If this field is specified, this access point will only allow connections from the specified VPC ID.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:awsconnector:S3AccessPoint zlyclqdkaecrmrt /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AwsConnector/s3AccessPoints/{name} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi