1. Packages
  2. AWS
  3. API Docs
  4. s3control
  5. AccessPointPolicy
AWS v6.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

aws.s3control.AccessPointPolicy

Explore with Pulumi AI

Provides a resource to manage an S3 Access Point resource policy.

NOTE on Access Points and Access Point Policies: The provider provides both a standalone Access Point Policy resource and an Access Point resource with a resource policy defined in-line. You cannot use an Access Point with in-line resource policy in conjunction with an Access Point Policy resource. Doing so will cause a conflict of policies and will overwrite the access point’s resource policy.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.s3.BucketV2("example", {bucket: "example"});
const exampleAccessPoint = new aws.s3.AccessPoint("example", {
    bucket: example.id,
    name: "example",
    publicAccessBlockConfiguration: {
        blockPublicAcls: true,
        blockPublicPolicy: false,
        ignorePublicAcls: true,
        restrictPublicBuckets: false,
    },
});
const exampleAccessPointPolicy = new aws.s3control.AccessPointPolicy("example", {
    accessPointArn: exampleAccessPoint.arn,
    policy: pulumi.jsonStringify({
        Version: "2008-10-17",
        Statement: [{
            Effect: "Allow",
            Action: "s3:GetObjectTagging",
            Principal: {
                AWS: "*",
            },
            Resource: pulumi.interpolate`${exampleAccessPoint.arn}/object/*`,
        }],
    }),
});
Copy
import pulumi
import json
import pulumi_aws as aws

example = aws.s3.BucketV2("example", bucket="example")
example_access_point = aws.s3.AccessPoint("example",
    bucket=example.id,
    name="example",
    public_access_block_configuration={
        "block_public_acls": True,
        "block_public_policy": False,
        "ignore_public_acls": True,
        "restrict_public_buckets": False,
    })
example_access_point_policy = aws.s3control.AccessPointPolicy("example",
    access_point_arn=example_access_point.arn,
    policy=pulumi.Output.json_dumps({
        "Version": "2008-10-17",
        "Statement": [{
            "Effect": "Allow",
            "Action": "s3:GetObjectTagging",
            "Principal": {
                "AWS": "*",
            },
            "Resource": example_access_point.arn.apply(lambda arn: f"{arn}/object/*"),
        }],
    }))
Copy
package main

import (
	"encoding/json"
	"fmt"

	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/s3"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/s3control"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := s3.NewBucketV2(ctx, "example", &s3.BucketV2Args{
			Bucket: pulumi.String("example"),
		})
		if err != nil {
			return err
		}
		exampleAccessPoint, err := s3.NewAccessPoint(ctx, "example", &s3.AccessPointArgs{
			Bucket: example.ID(),
			Name:   pulumi.String("example"),
			PublicAccessBlockConfiguration: &s3.AccessPointPublicAccessBlockConfigurationArgs{
				BlockPublicAcls:       pulumi.Bool(true),
				BlockPublicPolicy:     pulumi.Bool(false),
				IgnorePublicAcls:      pulumi.Bool(true),
				RestrictPublicBuckets: pulumi.Bool(false),
			},
		})
		if err != nil {
			return err
		}
		_, err = s3control.NewAccessPointPolicy(ctx, "example", &s3control.AccessPointPolicyArgs{
			AccessPointArn: exampleAccessPoint.Arn,
			Policy: exampleAccessPoint.Arn.ApplyT(func(arn string) (pulumi.String, error) {
				var _zero pulumi.String
				tmpJSON0, err := json.Marshal(map[string]interface{}{
					"Version": "2008-10-17",
					"Statement": []map[string]interface{}{
						map[string]interface{}{
							"Effect": "Allow",
							"Action": "s3:GetObjectTagging",
							"Principal": map[string]interface{}{
								"AWS": "*",
							},
							"Resource": fmt.Sprintf("%v/object/*", arn),
						},
					},
				})
				if err != nil {
					return _zero, err
				}
				json0 := string(tmpJSON0)
				return pulumi.String(json0), nil
			}).(pulumi.StringOutput),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.S3.BucketV2("example", new()
    {
        Bucket = "example",
    });

    var exampleAccessPoint = new Aws.S3.AccessPoint("example", new()
    {
        Bucket = example.Id,
        Name = "example",
        PublicAccessBlockConfiguration = new Aws.S3.Inputs.AccessPointPublicAccessBlockConfigurationArgs
        {
            BlockPublicAcls = true,
            BlockPublicPolicy = false,
            IgnorePublicAcls = true,
            RestrictPublicBuckets = false,
        },
    });

    var exampleAccessPointPolicy = new Aws.S3Control.AccessPointPolicy("example", new()
    {
        AccessPointArn = exampleAccessPoint.Arn,
        Policy = Output.JsonSerialize(Output.Create(new Dictionary<string, object?>
        {
            ["Version"] = "2008-10-17",
            ["Statement"] = new[]
            {
                new Dictionary<string, object?>
                {
                    ["Effect"] = "Allow",
                    ["Action"] = "s3:GetObjectTagging",
                    ["Principal"] = new Dictionary<string, object?>
                    {
                        ["AWS"] = "*",
                    },
                    ["Resource"] = exampleAccessPoint.Arn.Apply(arn => $"{arn}/object/*"),
                },
            },
        })),
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.s3.BucketV2;
import com.pulumi.aws.s3.BucketV2Args;
import com.pulumi.aws.s3.AccessPoint;
import com.pulumi.aws.s3.AccessPointArgs;
import com.pulumi.aws.s3.inputs.AccessPointPublicAccessBlockConfigurationArgs;
import com.pulumi.aws.s3control.AccessPointPolicy;
import com.pulumi.aws.s3control.AccessPointPolicyArgs;
import static com.pulumi.codegen.internal.Serialization.*;
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 BucketV2("example", BucketV2Args.builder()
            .bucket("example")
            .build());

        var exampleAccessPoint = new AccessPoint("exampleAccessPoint", AccessPointArgs.builder()
            .bucket(example.id())
            .name("example")
            .publicAccessBlockConfiguration(AccessPointPublicAccessBlockConfigurationArgs.builder()
                .blockPublicAcls(true)
                .blockPublicPolicy(false)
                .ignorePublicAcls(true)
                .restrictPublicBuckets(false)
                .build())
            .build());

        var exampleAccessPointPolicy = new AccessPointPolicy("exampleAccessPointPolicy", AccessPointPolicyArgs.builder()
            .accessPointArn(exampleAccessPoint.arn())
            .policy(exampleAccessPoint.arn().applyValue(arn -> serializeJson(
                jsonObject(
                    jsonProperty("Version", "2008-10-17"),
                    jsonProperty("Statement", jsonArray(jsonObject(
                        jsonProperty("Effect", "Allow"),
                        jsonProperty("Action", "s3:GetObjectTagging"),
                        jsonProperty("Principal", jsonObject(
                            jsonProperty("AWS", "*")
                        )),
                        jsonProperty("Resource", String.format("%s/object/*", arn))
                    )))
                ))))
            .build());

    }
}
Copy
resources:
  example:
    type: aws:s3:BucketV2
    properties:
      bucket: example
  exampleAccessPoint:
    type: aws:s3:AccessPoint
    name: example
    properties:
      bucket: ${example.id}
      name: example
      publicAccessBlockConfiguration:
        blockPublicAcls: true
        blockPublicPolicy: false
        ignorePublicAcls: true
        restrictPublicBuckets: false
  exampleAccessPointPolicy:
    type: aws:s3control:AccessPointPolicy
    name: example
    properties:
      accessPointArn: ${exampleAccessPoint.arn}
      policy:
        fn::toJSON:
          Version: 2008-10-17
          Statement:
            - Effect: Allow
              Action: s3:GetObjectTagging
              Principal:
                AWS: '*'
              Resource: ${exampleAccessPoint.arn}/object/*
Copy

Create AccessPointPolicy Resource

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

Constructor syntax

new AccessPointPolicy(name: string, args: AccessPointPolicyArgs, opts?: CustomResourceOptions);
@overload
def AccessPointPolicy(resource_name: str,
                      args: AccessPointPolicyArgs,
                      opts: Optional[ResourceOptions] = None)

@overload
def AccessPointPolicy(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      access_point_arn: Optional[str] = None,
                      policy: Optional[str] = None)
func NewAccessPointPolicy(ctx *Context, name string, args AccessPointPolicyArgs, opts ...ResourceOption) (*AccessPointPolicy, error)
public AccessPointPolicy(string name, AccessPointPolicyArgs args, CustomResourceOptions? opts = null)
public AccessPointPolicy(String name, AccessPointPolicyArgs args)
public AccessPointPolicy(String name, AccessPointPolicyArgs args, CustomResourceOptions options)
type: aws:s3control:AccessPointPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AccessPointPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AccessPointPolicyArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AccessPointPolicyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AccessPointPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AccessPointPolicyArgs
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 accessPointPolicyResource = new Aws.S3Control.AccessPointPolicy("accessPointPolicyResource", new()
{
    AccessPointArn = "string",
    Policy = "string",
});
Copy
example, err := s3control.NewAccessPointPolicy(ctx, "accessPointPolicyResource", &s3control.AccessPointPolicyArgs{
	AccessPointArn: pulumi.String("string"),
	Policy:         pulumi.String("string"),
})
Copy
var accessPointPolicyResource = new AccessPointPolicy("accessPointPolicyResource", AccessPointPolicyArgs.builder()
    .accessPointArn("string")
    .policy("string")
    .build());
Copy
access_point_policy_resource = aws.s3control.AccessPointPolicy("accessPointPolicyResource",
    access_point_arn="string",
    policy="string")
Copy
const accessPointPolicyResource = new aws.s3control.AccessPointPolicy("accessPointPolicyResource", {
    accessPointArn: "string",
    policy: "string",
});
Copy
type: aws:s3control:AccessPointPolicy
properties:
    accessPointArn: string
    policy: string
Copy

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

AccessPointArn
This property is required.
Changes to this property will trigger replacement.
string
The ARN of the access point that you want to associate with the specified policy.
Policy This property is required. string
The policy that you want to apply to the specified access point.
AccessPointArn
This property is required.
Changes to this property will trigger replacement.
string
The ARN of the access point that you want to associate with the specified policy.
Policy This property is required. string
The policy that you want to apply to the specified access point.
accessPointArn
This property is required.
Changes to this property will trigger replacement.
String
The ARN of the access point that you want to associate with the specified policy.
policy This property is required. String
The policy that you want to apply to the specified access point.
accessPointArn
This property is required.
Changes to this property will trigger replacement.
string
The ARN of the access point that you want to associate with the specified policy.
policy This property is required. string
The policy that you want to apply to the specified access point.
access_point_arn
This property is required.
Changes to this property will trigger replacement.
str
The ARN of the access point that you want to associate with the specified policy.
policy This property is required. str
The policy that you want to apply to the specified access point.
accessPointArn
This property is required.
Changes to this property will trigger replacement.
String
The ARN of the access point that you want to associate with the specified policy.
policy This property is required. String
The policy that you want to apply to the specified access point.

Outputs

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

HasPublicAccessPolicy bool
Indicates whether this access point currently has a policy that allows public access.
Id string
The provider-assigned unique ID for this managed resource.
HasPublicAccessPolicy bool
Indicates whether this access point currently has a policy that allows public access.
Id string
The provider-assigned unique ID for this managed resource.
hasPublicAccessPolicy Boolean
Indicates whether this access point currently has a policy that allows public access.
id String
The provider-assigned unique ID for this managed resource.
hasPublicAccessPolicy boolean
Indicates whether this access point currently has a policy that allows public access.
id string
The provider-assigned unique ID for this managed resource.
has_public_access_policy bool
Indicates whether this access point currently has a policy that allows public access.
id str
The provider-assigned unique ID for this managed resource.
hasPublicAccessPolicy Boolean
Indicates whether this access point currently has a policy that allows public access.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing AccessPointPolicy Resource

Get an existing AccessPointPolicy 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?: AccessPointPolicyState, opts?: CustomResourceOptions): AccessPointPolicy
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        access_point_arn: Optional[str] = None,
        has_public_access_policy: Optional[bool] = None,
        policy: Optional[str] = None) -> AccessPointPolicy
func GetAccessPointPolicy(ctx *Context, name string, id IDInput, state *AccessPointPolicyState, opts ...ResourceOption) (*AccessPointPolicy, error)
public static AccessPointPolicy Get(string name, Input<string> id, AccessPointPolicyState? state, CustomResourceOptions? opts = null)
public static AccessPointPolicy get(String name, Output<String> id, AccessPointPolicyState state, CustomResourceOptions options)
resources:  _:    type: aws:s3control:AccessPointPolicy    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AccessPointArn Changes to this property will trigger replacement. string
The ARN of the access point that you want to associate with the specified policy.
HasPublicAccessPolicy bool
Indicates whether this access point currently has a policy that allows public access.
Policy string
The policy that you want to apply to the specified access point.
AccessPointArn Changes to this property will trigger replacement. string
The ARN of the access point that you want to associate with the specified policy.
HasPublicAccessPolicy bool
Indicates whether this access point currently has a policy that allows public access.
Policy string
The policy that you want to apply to the specified access point.
accessPointArn Changes to this property will trigger replacement. String
The ARN of the access point that you want to associate with the specified policy.
hasPublicAccessPolicy Boolean
Indicates whether this access point currently has a policy that allows public access.
policy String
The policy that you want to apply to the specified access point.
accessPointArn Changes to this property will trigger replacement. string
The ARN of the access point that you want to associate with the specified policy.
hasPublicAccessPolicy boolean
Indicates whether this access point currently has a policy that allows public access.
policy string
The policy that you want to apply to the specified access point.
access_point_arn Changes to this property will trigger replacement. str
The ARN of the access point that you want to associate with the specified policy.
has_public_access_policy bool
Indicates whether this access point currently has a policy that allows public access.
policy str
The policy that you want to apply to the specified access point.
accessPointArn Changes to this property will trigger replacement. String
The ARN of the access point that you want to associate with the specified policy.
hasPublicAccessPolicy Boolean
Indicates whether this access point currently has a policy that allows public access.
policy String
The policy that you want to apply to the specified access point.

Import

Using pulumi import, import Access Point policies using the access_point_arn. For example:

$ pulumi import aws:s3control/accessPointPolicy:AccessPointPolicy example arn:aws:s3:us-west-2:123456789012:accesspoint/example
Copy

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

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.