Skip to content

Describe Account Preferences

efs_describe_account_preferences R Documentation

Returns the account preferences settings for the Amazon Web Services account associated with the user making the request, in the current Amazon Web Services Region

Description

Returns the account preferences settings for the Amazon Web Services account associated with the user making the request, in the current Amazon Web Services Region.

Usage

efs_describe_account_preferences(NextToken, MaxResults)

Arguments

NextToken

(Optional) You can use NextToken in a subsequent request to fetch the next page of Amazon Web Services account preferences if the response payload was paginated.

MaxResults

(Optional) When retrieving account preferences, you can optionally specify the MaxItems parameter to limit the number of objects returned in a response. The default value is 100.

Value

A list with the following syntax:

list(
  ResourceIdPreference = list(
    ResourceIdType = "LONG_ID"|"SHORT_ID",
    Resources = list(
      "FILE_SYSTEM"|"MOUNT_TARGET"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_account_preferences(
  NextToken = "string",
  MaxResults = 123
)