Learn R Programming

paws.compute (version 0.1.12)

ec2_reset_snapshot_attribute: Resets permission settings for the specified snapshot

Description

Resets permission settings for the specified snapshot.

For more information about modifying snapshot permissions, see Sharing snapshots in the Amazon Elastic Compute Cloud User Guide.

Usage

ec2_reset_snapshot_attribute(Attribute, SnapshotId, DryRun)

Value

An empty list.

Arguments

Attribute

[required] The attribute to reset. Currently, only the attribute for permission to create volumes can be reset.

SnapshotId

[required] The ID of the snapshot.

DryRun

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

Request syntax

svc$reset_snapshot_attribute(
  Attribute = "productCodes"|"createVolumePermission",
  SnapshotId = "string",
  DryRun = TRUE|FALSE
)

Examples

Run this code
if (FALSE) {
# This example resets the create volume permissions for snapshot
# `snap-1234567890abcdef0`. If the command succeeds, no output is
# returned.
svc$reset_snapshot_attribute(
  Attribute = "createVolumePermission",
  SnapshotId = "snap-1234567890abcdef0"
)
}

Run the code above in your browser using DataLab