Documentation ¶
Overview ¶
Package organizations provides the client and types for making API requests to AWS Organizations.
AWS Organizations is a web service that enables you to consolidate your multiple AWS accounts into an organization and centrally manage your accounts and their resources.
This guide provides descriptions of the Organizations API. For more information about using this service, see the AWS Organizations User Guide (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_introduction.html).
API Version ¶
This version of the Organizations API Reference documents the Organizations API version 2016-11-28.
As an alternative to using the API directly, you can use one of the AWS SDKs, which consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .NET, iOS, Android, and more). The SDKs provide a convenient way to create programmatic access to AWS Organizations. For example, the SDKs take care of cryptographically signing requests, managing errors, and retrying requests automatically. For more information about the AWS SDKs, including how to download and install them, see Tools for Amazon Web Services (http://aws.amazon.com/tools/).
We recommend that you use the AWS SDKs to make programmatic API calls to Organizations. However, you also can use the Organizations Query API to make direct calls to the Organizations web service. To learn more about the Organizations Query API, see Making Query Requests (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_query-requests.html) in the AWS Organizations User Guide. Organizations supports GET and POST requests for all actions. That is, the API does not require you to use GET for some actions and POST for others. However, GET requests are subject to the limitation size of a URL. Therefore, for operations that require larger sizes, use a POST request.
Signing Requests ¶
When you send HTTP requests to AWS, you must sign the requests so that AWS can identify who sent them. You sign requests with your AWS access key, which consists of an access key ID and a secret access key. We strongly recommend that you do not create an access key for your root account. Anyone who has the access key for your root account has unrestricted access to all the resources in your account. Instead, create an access key for an IAM user account that has administrative privileges. As another option, use AWS Security Token Service to generate temporary security credentials, and use those credentials to sign requests.
To sign requests, we recommend that you use Signature Version 4 (http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html). If you have an existing application that uses Signature Version 2, you do not have to update it to use Signature Version 4. However, some operations now require Signature Version 4. The documentation for operations that require version 4 indicate this requirement.
When you use the AWS Command Line Interface (AWS CLI) or one of the AWS SDKs to make requests to AWS, these tools automatically sign the requests for you with the access key that you specify when you configure the tools.
In this release, each organization can have only one root. In a future release, a single organization will support multiple roots.
Support and Feedback for AWS Organizations ¶
We welcome your feedback. Send your comments to feedback-awsorganizations@amazon.com (mailto:feedback-awsorganizations@amazon.com) or post your feedback and questions in our private AWS Organizations support forum (http://forums.aws.amazon.com/forum.jspa?forumID=219). If you don't have access to the forum, send a request for access to the email address, along with your forum user ID. For more information about the AWS support forums, see Forums Help (http://forums.aws.amazon.com/help.jspa).
Endpoint to Call When Using the CLI or the AWS API ¶
For the current release of Organizations, you must specify the us-east-1 region for all AWS API and CLI calls. You can do this in the CLI by using these parameters and commands:
- Use the following parameter with each command to specify both the endpoint and its region:
--endpoint-url https://organizations.us-east-1.amazonaws.com
- Use the default endpoint, but configure your default region with this command:
aws configure set default.region us-east-1
- Use the following parameter with each command to specify the endpoint:
--region us-east-1
For the various SDKs used to call the APIs, see the documentation for the SDK of interest to learn how to direct the requests to a specific endpoint. For more information, see Regions and Endpoints (http://docs.aws.amazon.com/general/latest/gr/rande.html#sts_region) in the AWS General Reference.
How examples are presented ¶
The JSON returned by the AWS Organizations service as response to your requests is returned as a single long string without line breaks or formatting whitespace. Both line breaks and whitespace are included in the examples in this guide to improve readability. When example input parameters also would result in long strings that would extend beyond the screen, we insert line breaks to enhance readability. You should always submit the input as a single JSON text string.
Recording API Requests ¶
AWS Organizations supports AWS CloudTrail, a service that records AWS API calls for your AWS account and delivers log files to an Amazon S3 bucket. By using information collected by AWS CloudTrail, you can determine which requests were successfully made to Organizations, who made the request, when it was made, and so on. For more about AWS Organizations and its support for AWS CloudTrail, see Logging AWS Organizations Events with AWS CloudTrail (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_cloudtrail-integration.html) in the AWS Organizations User Guide. To learn more about CloudTrail, including how to turn it on and find your log files, see the AWS CloudTrail User Guide (http://docs.aws.amazon.com/awscloudtrail/latest/userguide/what_is_cloud_trail_top_level.html).
See https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28 for more information on this service.
See organizations package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/organizations/
Using the Client ¶
To use the client for AWS Organizations you will first need to create a new instance of it.
When creating a client for an AWS service you'll first need to have a Session already created. The Session provides configuration that can be shared between multiple service clients. Additional configuration can be applied to the Session and service's client when they are constructed. The aws package's Config type contains several fields such as Region for the AWS Region the client should make API requests too. The optional Config value can be provided as the variadic argument for Sessions and client creation.
Once the service's client is created you can use it to make API requests the AWS service. These clients are safe to use concurrently.
// Create a session to share configuration, and load external configuration. sess := session.Must(session.NewSession()) // Create the service's client with the session. svc := organizations.New(sess)
See the SDK's documentation for more information on how to use service clients. https://docs.aws.amazon.com/sdk-for-go/api/
See aws package's Config type for more information on configuration options. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config
See the AWS Organizations client Organizations for more information on creating the service's client. https://docs.aws.amazon.com/sdk-for-go/api/service/organizations/#New
Once the client is created you can make an API request to the service. Each API method takes a input parameter, and returns the service response and an error.
The API method will document which error codes the service can be returned by the operation if the service models the API operation's errors. These errors will also be available as const strings prefixed with "ErrCode".
result, err := svc.AcceptHandshake(params) if err != nil { // Cast err to awserr.Error to handle specific error codes. aerr, ok := err.(awserr.Error) if ok && aerr.Code() == <error code to check for> { // Specific error code handling } return err } fmt.Println("AcceptHandshake result:") fmt.Println(result)
Using the Client with Context ¶
The service's client also provides methods to make API requests with a Context value. This allows you to control the timeout, and cancellation of pending requests. These methods also take request Option as variadic parameter to apply additional configuration to the API request.
ctx := context.Background() result, err := svc.AcceptHandshakeWithContext(ctx, params)
See the request package documentation for more information on using Context pattern with the SDK. https://docs.aws.amazon.com/sdk-for-go/api/aws/request/
Index ¶
- Constants
- type AcceptHandshakeInput
- type AcceptHandshakeOutput
- type Account
- func (s Account) GoString() string
- func (s *Account) SetArn(v string) *Account
- func (s *Account) SetEmail(v string) *Account
- func (s *Account) SetId(v string) *Account
- func (s *Account) SetJoinedMethod(v string) *Account
- func (s *Account) SetJoinedTimestamp(v time.Time) *Account
- func (s *Account) SetName(v string) *Account
- func (s *Account) SetStatus(v string) *Account
- func (s Account) String() string
- type AttachPolicyInput
- type AttachPolicyOutput
- type CancelHandshakeInput
- type CancelHandshakeOutput
- type Child
- type CreateAccountInput
- func (s CreateAccountInput) GoString() string
- func (s *CreateAccountInput) SetAccountName(v string) *CreateAccountInput
- func (s *CreateAccountInput) SetEmail(v string) *CreateAccountInput
- func (s *CreateAccountInput) SetIamUserAccessToBilling(v string) *CreateAccountInput
- func (s *CreateAccountInput) SetRoleName(v string) *CreateAccountInput
- func (s CreateAccountInput) String() string
- func (s *CreateAccountInput) Validate() error
- type CreateAccountOutput
- type CreateAccountStatus
- func (s CreateAccountStatus) GoString() string
- func (s *CreateAccountStatus) SetAccountId(v string) *CreateAccountStatus
- func (s *CreateAccountStatus) SetAccountName(v string) *CreateAccountStatus
- func (s *CreateAccountStatus) SetCompletedTimestamp(v time.Time) *CreateAccountStatus
- func (s *CreateAccountStatus) SetFailureReason(v string) *CreateAccountStatus
- func (s *CreateAccountStatus) SetId(v string) *CreateAccountStatus
- func (s *CreateAccountStatus) SetRequestedTimestamp(v time.Time) *CreateAccountStatus
- func (s *CreateAccountStatus) SetState(v string) *CreateAccountStatus
- func (s CreateAccountStatus) String() string
- type CreateOrganizationInput
- type CreateOrganizationOutput
- type CreateOrganizationalUnitInput
- func (s CreateOrganizationalUnitInput) GoString() string
- func (s *CreateOrganizationalUnitInput) SetName(v string) *CreateOrganizationalUnitInput
- func (s *CreateOrganizationalUnitInput) SetParentId(v string) *CreateOrganizationalUnitInput
- func (s CreateOrganizationalUnitInput) String() string
- func (s *CreateOrganizationalUnitInput) Validate() error
- type CreateOrganizationalUnitOutput
- type CreatePolicyInput
- func (s CreatePolicyInput) GoString() string
- func (s *CreatePolicyInput) SetContent(v string) *CreatePolicyInput
- func (s *CreatePolicyInput) SetDescription(v string) *CreatePolicyInput
- func (s *CreatePolicyInput) SetName(v string) *CreatePolicyInput
- func (s *CreatePolicyInput) SetType(v string) *CreatePolicyInput
- func (s CreatePolicyInput) String() string
- func (s *CreatePolicyInput) Validate() error
- type CreatePolicyOutput
- type DeclineHandshakeInput
- type DeclineHandshakeOutput
- type DeleteOrganizationInput
- type DeleteOrganizationOutput
- type DeleteOrganizationalUnitInput
- type DeleteOrganizationalUnitOutput
- type DeletePolicyInput
- type DeletePolicyOutput
- type DescribeAccountInput
- type DescribeAccountOutput
- type DescribeCreateAccountStatusInput
- type DescribeCreateAccountStatusOutput
- type DescribeHandshakeInput
- type DescribeHandshakeOutput
- type DescribeOrganizationInput
- type DescribeOrganizationOutput
- type DescribeOrganizationalUnitInput
- type DescribeOrganizationalUnitOutput
- type DescribePolicyInput
- type DescribePolicyOutput
- type DetachPolicyInput
- type DetachPolicyOutput
- type DisablePolicyTypeInput
- func (s DisablePolicyTypeInput) GoString() string
- func (s *DisablePolicyTypeInput) SetPolicyType(v string) *DisablePolicyTypeInput
- func (s *DisablePolicyTypeInput) SetRootId(v string) *DisablePolicyTypeInput
- func (s DisablePolicyTypeInput) String() string
- func (s *DisablePolicyTypeInput) Validate() error
- type DisablePolicyTypeOutput
- type EnableAllFeaturesInput
- type EnableAllFeaturesOutput
- type EnablePolicyTypeInput
- type EnablePolicyTypeOutput
- type Handshake
- func (s Handshake) GoString() string
- func (s *Handshake) SetAction(v string) *Handshake
- func (s *Handshake) SetArn(v string) *Handshake
- func (s *Handshake) SetExpirationTimestamp(v time.Time) *Handshake
- func (s *Handshake) SetId(v string) *Handshake
- func (s *Handshake) SetParties(v []*HandshakeParty) *Handshake
- func (s *Handshake) SetRequestedTimestamp(v time.Time) *Handshake
- func (s *Handshake) SetResources(v []*HandshakeResource) *Handshake
- func (s *Handshake) SetState(v string) *Handshake
- func (s Handshake) String() string
- type HandshakeFilter
- type HandshakeParty
- type HandshakeResource
- func (s HandshakeResource) GoString() string
- func (s *HandshakeResource) SetResources(v []*HandshakeResource) *HandshakeResource
- func (s *HandshakeResource) SetType(v string) *HandshakeResource
- func (s *HandshakeResource) SetValue(v string) *HandshakeResource
- func (s HandshakeResource) String() string
- type InviteAccountToOrganizationInput
- func (s InviteAccountToOrganizationInput) GoString() string
- func (s *InviteAccountToOrganizationInput) SetNotes(v string) *InviteAccountToOrganizationInput
- func (s *InviteAccountToOrganizationInput) SetTarget(v *HandshakeParty) *InviteAccountToOrganizationInput
- func (s InviteAccountToOrganizationInput) String() string
- func (s *InviteAccountToOrganizationInput) Validate() error
- type InviteAccountToOrganizationOutput
- type LeaveOrganizationInput
- type LeaveOrganizationOutput
- type ListAccountsForParentInput
- func (s ListAccountsForParentInput) GoString() string
- func (s *ListAccountsForParentInput) SetMaxResults(v int64) *ListAccountsForParentInput
- func (s *ListAccountsForParentInput) SetNextToken(v string) *ListAccountsForParentInput
- func (s *ListAccountsForParentInput) SetParentId(v string) *ListAccountsForParentInput
- func (s ListAccountsForParentInput) String() string
- func (s *ListAccountsForParentInput) Validate() error
- type ListAccountsForParentOutput
- type ListAccountsInput
- type ListAccountsOutput
- type ListChildrenInput
- func (s ListChildrenInput) GoString() string
- func (s *ListChildrenInput) SetChildType(v string) *ListChildrenInput
- func (s *ListChildrenInput) SetMaxResults(v int64) *ListChildrenInput
- func (s *ListChildrenInput) SetNextToken(v string) *ListChildrenInput
- func (s *ListChildrenInput) SetParentId(v string) *ListChildrenInput
- func (s ListChildrenInput) String() string
- func (s *ListChildrenInput) Validate() error
- type ListChildrenOutput
- type ListCreateAccountStatusInput
- func (s ListCreateAccountStatusInput) GoString() string
- func (s *ListCreateAccountStatusInput) SetMaxResults(v int64) *ListCreateAccountStatusInput
- func (s *ListCreateAccountStatusInput) SetNextToken(v string) *ListCreateAccountStatusInput
- func (s *ListCreateAccountStatusInput) SetStates(v []*string) *ListCreateAccountStatusInput
- func (s ListCreateAccountStatusInput) String() string
- func (s *ListCreateAccountStatusInput) Validate() error
- type ListCreateAccountStatusOutput
- func (s ListCreateAccountStatusOutput) GoString() string
- func (s *ListCreateAccountStatusOutput) SetCreateAccountStatuses(v []*CreateAccountStatus) *ListCreateAccountStatusOutput
- func (s *ListCreateAccountStatusOutput) SetNextToken(v string) *ListCreateAccountStatusOutput
- func (s ListCreateAccountStatusOutput) String() string
- type ListHandshakesForAccountInput
- func (s ListHandshakesForAccountInput) GoString() string
- func (s *ListHandshakesForAccountInput) SetFilter(v *HandshakeFilter) *ListHandshakesForAccountInput
- func (s *ListHandshakesForAccountInput) SetMaxResults(v int64) *ListHandshakesForAccountInput
- func (s *ListHandshakesForAccountInput) SetNextToken(v string) *ListHandshakesForAccountInput
- func (s ListHandshakesForAccountInput) String() string
- func (s *ListHandshakesForAccountInput) Validate() error
- type ListHandshakesForAccountOutput
- func (s ListHandshakesForAccountOutput) GoString() string
- func (s *ListHandshakesForAccountOutput) SetHandshakes(v []*Handshake) *ListHandshakesForAccountOutput
- func (s *ListHandshakesForAccountOutput) SetNextToken(v string) *ListHandshakesForAccountOutput
- func (s ListHandshakesForAccountOutput) String() string
- type ListHandshakesForOrganizationInput
- func (s ListHandshakesForOrganizationInput) GoString() string
- func (s *ListHandshakesForOrganizationInput) SetFilter(v *HandshakeFilter) *ListHandshakesForOrganizationInput
- func (s *ListHandshakesForOrganizationInput) SetMaxResults(v int64) *ListHandshakesForOrganizationInput
- func (s *ListHandshakesForOrganizationInput) SetNextToken(v string) *ListHandshakesForOrganizationInput
- func (s ListHandshakesForOrganizationInput) String() string
- func (s *ListHandshakesForOrganizationInput) Validate() error
- type ListHandshakesForOrganizationOutput
- func (s ListHandshakesForOrganizationOutput) GoString() string
- func (s *ListHandshakesForOrganizationOutput) SetHandshakes(v []*Handshake) *ListHandshakesForOrganizationOutput
- func (s *ListHandshakesForOrganizationOutput) SetNextToken(v string) *ListHandshakesForOrganizationOutput
- func (s ListHandshakesForOrganizationOutput) String() string
- type ListOrganizationalUnitsForParentInput
- func (s ListOrganizationalUnitsForParentInput) GoString() string
- func (s *ListOrganizationalUnitsForParentInput) SetMaxResults(v int64) *ListOrganizationalUnitsForParentInput
- func (s *ListOrganizationalUnitsForParentInput) SetNextToken(v string) *ListOrganizationalUnitsForParentInput
- func (s *ListOrganizationalUnitsForParentInput) SetParentId(v string) *ListOrganizationalUnitsForParentInput
- func (s ListOrganizationalUnitsForParentInput) String() string
- func (s *ListOrganizationalUnitsForParentInput) Validate() error
- type ListOrganizationalUnitsForParentOutput
- func (s ListOrganizationalUnitsForParentOutput) GoString() string
- func (s *ListOrganizationalUnitsForParentOutput) SetNextToken(v string) *ListOrganizationalUnitsForParentOutput
- func (s *ListOrganizationalUnitsForParentOutput) SetOrganizationalUnits(v []*OrganizationalUnit) *ListOrganizationalUnitsForParentOutput
- func (s ListOrganizationalUnitsForParentOutput) String() string
- type ListParentsInput
- func (s ListParentsInput) GoString() string
- func (s *ListParentsInput) SetChildId(v string) *ListParentsInput
- func (s *ListParentsInput) SetMaxResults(v int64) *ListParentsInput
- func (s *ListParentsInput) SetNextToken(v string) *ListParentsInput
- func (s ListParentsInput) String() string
- func (s *ListParentsInput) Validate() error
- type ListParentsOutput
- type ListPoliciesForTargetInput
- func (s ListPoliciesForTargetInput) GoString() string
- func (s *ListPoliciesForTargetInput) SetFilter(v string) *ListPoliciesForTargetInput
- func (s *ListPoliciesForTargetInput) SetMaxResults(v int64) *ListPoliciesForTargetInput
- func (s *ListPoliciesForTargetInput) SetNextToken(v string) *ListPoliciesForTargetInput
- func (s *ListPoliciesForTargetInput) SetTargetId(v string) *ListPoliciesForTargetInput
- func (s ListPoliciesForTargetInput) String() string
- func (s *ListPoliciesForTargetInput) Validate() error
- type ListPoliciesForTargetOutput
- type ListPoliciesInput
- func (s ListPoliciesInput) GoString() string
- func (s *ListPoliciesInput) SetFilter(v string) *ListPoliciesInput
- func (s *ListPoliciesInput) SetMaxResults(v int64) *ListPoliciesInput
- func (s *ListPoliciesInput) SetNextToken(v string) *ListPoliciesInput
- func (s ListPoliciesInput) String() string
- func (s *ListPoliciesInput) Validate() error
- type ListPoliciesOutput
- type ListRootsInput
- type ListRootsOutput
- type ListTargetsForPolicyInput
- func (s ListTargetsForPolicyInput) GoString() string
- func (s *ListTargetsForPolicyInput) SetMaxResults(v int64) *ListTargetsForPolicyInput
- func (s *ListTargetsForPolicyInput) SetNextToken(v string) *ListTargetsForPolicyInput
- func (s *ListTargetsForPolicyInput) SetPolicyId(v string) *ListTargetsForPolicyInput
- func (s ListTargetsForPolicyInput) String() string
- func (s *ListTargetsForPolicyInput) Validate() error
- type ListTargetsForPolicyOutput
- type MoveAccountInput
- func (s MoveAccountInput) GoString() string
- func (s *MoveAccountInput) SetAccountId(v string) *MoveAccountInput
- func (s *MoveAccountInput) SetDestinationParentId(v string) *MoveAccountInput
- func (s *MoveAccountInput) SetSourceParentId(v string) *MoveAccountInput
- func (s MoveAccountInput) String() string
- func (s *MoveAccountInput) Validate() error
- type MoveAccountOutput
- type Organization
- func (s Organization) GoString() string
- func (s *Organization) SetArn(v string) *Organization
- func (s *Organization) SetAvailablePolicyTypes(v []*PolicyTypeSummary) *Organization
- func (s *Organization) SetFeatureSet(v string) *Organization
- func (s *Organization) SetId(v string) *Organization
- func (s *Organization) SetMasterAccountArn(v string) *Organization
- func (s *Organization) SetMasterAccountEmail(v string) *Organization
- func (s *Organization) SetMasterAccountId(v string) *Organization
- func (s Organization) String() string
- type OrganizationalUnit
- type Organizations
- func (c *Organizations) AcceptHandshake(input *AcceptHandshakeInput) (*AcceptHandshakeOutput, error)
- func (c *Organizations) AcceptHandshakeRequest(input *AcceptHandshakeInput) (req *request.Request, output *AcceptHandshakeOutput)
- func (c *Organizations) AcceptHandshakeWithContext(ctx aws.Context, input *AcceptHandshakeInput, opts ...request.Option) (*AcceptHandshakeOutput, error)
- func (c *Organizations) AttachPolicy(input *AttachPolicyInput) (*AttachPolicyOutput, error)
- func (c *Organizations) AttachPolicyRequest(input *AttachPolicyInput) (req *request.Request, output *AttachPolicyOutput)
- func (c *Organizations) AttachPolicyWithContext(ctx aws.Context, input *AttachPolicyInput, opts ...request.Option) (*AttachPolicyOutput, error)
- func (c *Organizations) CancelHandshake(input *CancelHandshakeInput) (*CancelHandshakeOutput, error)
- func (c *Organizations) CancelHandshakeRequest(input *CancelHandshakeInput) (req *request.Request, output *CancelHandshakeOutput)
- func (c *Organizations) CancelHandshakeWithContext(ctx aws.Context, input *CancelHandshakeInput, opts ...request.Option) (*CancelHandshakeOutput, error)
- func (c *Organizations) CreateAccount(input *CreateAccountInput) (*CreateAccountOutput, error)
- func (c *Organizations) CreateAccountRequest(input *CreateAccountInput) (req *request.Request, output *CreateAccountOutput)
- func (c *Organizations) CreateAccountWithContext(ctx aws.Context, input *CreateAccountInput, opts ...request.Option) (*CreateAccountOutput, error)
- func (c *Organizations) CreateOrganization(input *CreateOrganizationInput) (*CreateOrganizationOutput, error)
- func (c *Organizations) CreateOrganizationRequest(input *CreateOrganizationInput) (req *request.Request, output *CreateOrganizationOutput)
- func (c *Organizations) CreateOrganizationWithContext(ctx aws.Context, input *CreateOrganizationInput, opts ...request.Option) (*CreateOrganizationOutput, error)
- func (c *Organizations) CreateOrganizationalUnit(input *CreateOrganizationalUnitInput) (*CreateOrganizationalUnitOutput, error)
- func (c *Organizations) CreateOrganizationalUnitRequest(input *CreateOrganizationalUnitInput) (req *request.Request, output *CreateOrganizationalUnitOutput)
- func (c *Organizations) CreateOrganizationalUnitWithContext(ctx aws.Context, input *CreateOrganizationalUnitInput, opts ...request.Option) (*CreateOrganizationalUnitOutput, error)
- func (c *Organizations) CreatePolicy(input *CreatePolicyInput) (*CreatePolicyOutput, error)
- func (c *Organizations) CreatePolicyRequest(input *CreatePolicyInput) (req *request.Request, output *CreatePolicyOutput)
- func (c *Organizations) CreatePolicyWithContext(ctx aws.Context, input *CreatePolicyInput, opts ...request.Option) (*CreatePolicyOutput, error)
- func (c *Organizations) DeclineHandshake(input *DeclineHandshakeInput) (*DeclineHandshakeOutput, error)
- func (c *Organizations) DeclineHandshakeRequest(input *DeclineHandshakeInput) (req *request.Request, output *DeclineHandshakeOutput)
- func (c *Organizations) DeclineHandshakeWithContext(ctx aws.Context, input *DeclineHandshakeInput, opts ...request.Option) (*DeclineHandshakeOutput, error)
- func (c *Organizations) DeleteOrganization(input *DeleteOrganizationInput) (*DeleteOrganizationOutput, error)
- func (c *Organizations) DeleteOrganizationRequest(input *DeleteOrganizationInput) (req *request.Request, output *DeleteOrganizationOutput)
- func (c *Organizations) DeleteOrganizationWithContext(ctx aws.Context, input *DeleteOrganizationInput, opts ...request.Option) (*DeleteOrganizationOutput, error)
- func (c *Organizations) DeleteOrganizationalUnit(input *DeleteOrganizationalUnitInput) (*DeleteOrganizationalUnitOutput, error)
- func (c *Organizations) DeleteOrganizationalUnitRequest(input *DeleteOrganizationalUnitInput) (req *request.Request, output *DeleteOrganizationalUnitOutput)
- func (c *Organizations) DeleteOrganizationalUnitWithContext(ctx aws.Context, input *DeleteOrganizationalUnitInput, opts ...request.Option) (*DeleteOrganizationalUnitOutput, error)
- func (c *Organizations) DeletePolicy(input *DeletePolicyInput) (*DeletePolicyOutput, error)
- func (c *Organizations) DeletePolicyRequest(input *DeletePolicyInput) (req *request.Request, output *DeletePolicyOutput)
- func (c *Organizations) DeletePolicyWithContext(ctx aws.Context, input *DeletePolicyInput, opts ...request.Option) (*DeletePolicyOutput, error)
- func (c *Organizations) DescribeAccount(input *DescribeAccountInput) (*DescribeAccountOutput, error)
- func (c *Organizations) DescribeAccountRequest(input *DescribeAccountInput) (req *request.Request, output *DescribeAccountOutput)
- func (c *Organizations) DescribeAccountWithContext(ctx aws.Context, input *DescribeAccountInput, opts ...request.Option) (*DescribeAccountOutput, error)
- func (c *Organizations) DescribeCreateAccountStatus(input *DescribeCreateAccountStatusInput) (*DescribeCreateAccountStatusOutput, error)
- func (c *Organizations) DescribeCreateAccountStatusRequest(input *DescribeCreateAccountStatusInput) (req *request.Request, output *DescribeCreateAccountStatusOutput)
- func (c *Organizations) DescribeCreateAccountStatusWithContext(ctx aws.Context, input *DescribeCreateAccountStatusInput, ...) (*DescribeCreateAccountStatusOutput, error)
- func (c *Organizations) DescribeHandshake(input *DescribeHandshakeInput) (*DescribeHandshakeOutput, error)
- func (c *Organizations) DescribeHandshakeRequest(input *DescribeHandshakeInput) (req *request.Request, output *DescribeHandshakeOutput)
- func (c *Organizations) DescribeHandshakeWithContext(ctx aws.Context, input *DescribeHandshakeInput, opts ...request.Option) (*DescribeHandshakeOutput, error)
- func (c *Organizations) DescribeOrganization(input *DescribeOrganizationInput) (*DescribeOrganizationOutput, error)
- func (c *Organizations) DescribeOrganizationRequest(input *DescribeOrganizationInput) (req *request.Request, output *DescribeOrganizationOutput)
- func (c *Organizations) DescribeOrganizationWithContext(ctx aws.Context, input *DescribeOrganizationInput, opts ...request.Option) (*DescribeOrganizationOutput, error)
- func (c *Organizations) DescribeOrganizationalUnit(input *DescribeOrganizationalUnitInput) (*DescribeOrganizationalUnitOutput, error)
- func (c *Organizations) DescribeOrganizationalUnitRequest(input *DescribeOrganizationalUnitInput) (req *request.Request, output *DescribeOrganizationalUnitOutput)
- func (c *Organizations) DescribeOrganizationalUnitWithContext(ctx aws.Context, input *DescribeOrganizationalUnitInput, ...) (*DescribeOrganizationalUnitOutput, error)
- func (c *Organizations) DescribePolicy(input *DescribePolicyInput) (*DescribePolicyOutput, error)
- func (c *Organizations) DescribePolicyRequest(input *DescribePolicyInput) (req *request.Request, output *DescribePolicyOutput)
- func (c *Organizations) DescribePolicyWithContext(ctx aws.Context, input *DescribePolicyInput, opts ...request.Option) (*DescribePolicyOutput, error)
- func (c *Organizations) DetachPolicy(input *DetachPolicyInput) (*DetachPolicyOutput, error)
- func (c *Organizations) DetachPolicyRequest(input *DetachPolicyInput) (req *request.Request, output *DetachPolicyOutput)
- func (c *Organizations) DetachPolicyWithContext(ctx aws.Context, input *DetachPolicyInput, opts ...request.Option) (*DetachPolicyOutput, error)
- func (c *Organizations) DisablePolicyType(input *DisablePolicyTypeInput) (*DisablePolicyTypeOutput, error)
- func (c *Organizations) DisablePolicyTypeRequest(input *DisablePolicyTypeInput) (req *request.Request, output *DisablePolicyTypeOutput)
- func (c *Organizations) DisablePolicyTypeWithContext(ctx aws.Context, input *DisablePolicyTypeInput, opts ...request.Option) (*DisablePolicyTypeOutput, error)
- func (c *Organizations) EnableAllFeatures(input *EnableAllFeaturesInput) (*EnableAllFeaturesOutput, error)
- func (c *Organizations) EnableAllFeaturesRequest(input *EnableAllFeaturesInput) (req *request.Request, output *EnableAllFeaturesOutput)
- func (c *Organizations) EnableAllFeaturesWithContext(ctx aws.Context, input *EnableAllFeaturesInput, opts ...request.Option) (*EnableAllFeaturesOutput, error)
- func (c *Organizations) EnablePolicyType(input *EnablePolicyTypeInput) (*EnablePolicyTypeOutput, error)
- func (c *Organizations) EnablePolicyTypeRequest(input *EnablePolicyTypeInput) (req *request.Request, output *EnablePolicyTypeOutput)
- func (c *Organizations) EnablePolicyTypeWithContext(ctx aws.Context, input *EnablePolicyTypeInput, opts ...request.Option) (*EnablePolicyTypeOutput, error)
- func (c *Organizations) InviteAccountToOrganization(input *InviteAccountToOrganizationInput) (*InviteAccountToOrganizationOutput, error)
- func (c *Organizations) InviteAccountToOrganizationRequest(input *InviteAccountToOrganizationInput) (req *request.Request, output *InviteAccountToOrganizationOutput)
- func (c *Organizations) InviteAccountToOrganizationWithContext(ctx aws.Context, input *InviteAccountToOrganizationInput, ...) (*InviteAccountToOrganizationOutput, error)
- func (c *Organizations) LeaveOrganization(input *LeaveOrganizationInput) (*LeaveOrganizationOutput, error)
- func (c *Organizations) LeaveOrganizationRequest(input *LeaveOrganizationInput) (req *request.Request, output *LeaveOrganizationOutput)
- func (c *Organizations) LeaveOrganizationWithContext(ctx aws.Context, input *LeaveOrganizationInput, opts ...request.Option) (*LeaveOrganizationOutput, error)
- func (c *Organizations) ListAccounts(input *ListAccountsInput) (*ListAccountsOutput, error)
- func (c *Organizations) ListAccountsForParent(input *ListAccountsForParentInput) (*ListAccountsForParentOutput, error)
- func (c *Organizations) ListAccountsForParentPages(input *ListAccountsForParentInput, ...) error
- func (c *Organizations) ListAccountsForParentPagesWithContext(ctx aws.Context, input *ListAccountsForParentInput, ...) error
- func (c *Organizations) ListAccountsForParentRequest(input *ListAccountsForParentInput) (req *request.Request, output *ListAccountsForParentOutput)
- func (c *Organizations) ListAccountsForParentWithContext(ctx aws.Context, input *ListAccountsForParentInput, opts ...request.Option) (*ListAccountsForParentOutput, error)
- func (c *Organizations) ListAccountsPages(input *ListAccountsInput, fn func(*ListAccountsOutput, bool) bool) error
- func (c *Organizations) ListAccountsPagesWithContext(ctx aws.Context, input *ListAccountsInput, ...) error
- func (c *Organizations) ListAccountsRequest(input *ListAccountsInput) (req *request.Request, output *ListAccountsOutput)
- func (c *Organizations) ListAccountsWithContext(ctx aws.Context, input *ListAccountsInput, opts ...request.Option) (*ListAccountsOutput, error)
- func (c *Organizations) ListChildren(input *ListChildrenInput) (*ListChildrenOutput, error)
- func (c *Organizations) ListChildrenPages(input *ListChildrenInput, fn func(*ListChildrenOutput, bool) bool) error
- func (c *Organizations) ListChildrenPagesWithContext(ctx aws.Context, input *ListChildrenInput, ...) error
- func (c *Organizations) ListChildrenRequest(input *ListChildrenInput) (req *request.Request, output *ListChildrenOutput)
- func (c *Organizations) ListChildrenWithContext(ctx aws.Context, input *ListChildrenInput, opts ...request.Option) (*ListChildrenOutput, error)
- func (c *Organizations) ListCreateAccountStatus(input *ListCreateAccountStatusInput) (*ListCreateAccountStatusOutput, error)
- func (c *Organizations) ListCreateAccountStatusPages(input *ListCreateAccountStatusInput, ...) error
- func (c *Organizations) ListCreateAccountStatusPagesWithContext(ctx aws.Context, input *ListCreateAccountStatusInput, ...) error
- func (c *Organizations) ListCreateAccountStatusRequest(input *ListCreateAccountStatusInput) (req *request.Request, output *ListCreateAccountStatusOutput)
- func (c *Organizations) ListCreateAccountStatusWithContext(ctx aws.Context, input *ListCreateAccountStatusInput, opts ...request.Option) (*ListCreateAccountStatusOutput, error)
- func (c *Organizations) ListHandshakesForAccount(input *ListHandshakesForAccountInput) (*ListHandshakesForAccountOutput, error)
- func (c *Organizations) ListHandshakesForAccountPages(input *ListHandshakesForAccountInput, ...) error
- func (c *Organizations) ListHandshakesForAccountPagesWithContext(ctx aws.Context, input *ListHandshakesForAccountInput, ...) error
- func (c *Organizations) ListHandshakesForAccountRequest(input *ListHandshakesForAccountInput) (req *request.Request, output *ListHandshakesForAccountOutput)
- func (c *Organizations) ListHandshakesForAccountWithContext(ctx aws.Context, input *ListHandshakesForAccountInput, opts ...request.Option) (*ListHandshakesForAccountOutput, error)
- func (c *Organizations) ListHandshakesForOrganization(input *ListHandshakesForOrganizationInput) (*ListHandshakesForOrganizationOutput, error)
- func (c *Organizations) ListHandshakesForOrganizationPages(input *ListHandshakesForOrganizationInput, ...) error
- func (c *Organizations) ListHandshakesForOrganizationPagesWithContext(ctx aws.Context, input *ListHandshakesForOrganizationInput, ...) error
- func (c *Organizations) ListHandshakesForOrganizationRequest(input *ListHandshakesForOrganizationInput) (req *request.Request, output *ListHandshakesForOrganizationOutput)
- func (c *Organizations) ListHandshakesForOrganizationWithContext(ctx aws.Context, input *ListHandshakesForOrganizationInput, ...) (*ListHandshakesForOrganizationOutput, error)
- func (c *Organizations) ListOrganizationalUnitsForParent(input *ListOrganizationalUnitsForParentInput) (*ListOrganizationalUnitsForParentOutput, error)
- func (c *Organizations) ListOrganizationalUnitsForParentPages(input *ListOrganizationalUnitsForParentInput, ...) error
- func (c *Organizations) ListOrganizationalUnitsForParentPagesWithContext(ctx aws.Context, input *ListOrganizationalUnitsForParentInput, ...) error
- func (c *Organizations) ListOrganizationalUnitsForParentRequest(input *ListOrganizationalUnitsForParentInput) (req *request.Request, output *ListOrganizationalUnitsForParentOutput)
- func (c *Organizations) ListOrganizationalUnitsForParentWithContext(ctx aws.Context, input *ListOrganizationalUnitsForParentInput, ...) (*ListOrganizationalUnitsForParentOutput, error)
- func (c *Organizations) ListParents(input *ListParentsInput) (*ListParentsOutput, error)
- func (c *Organizations) ListParentsPages(input *ListParentsInput, fn func(*ListParentsOutput, bool) bool) error
- func (c *Organizations) ListParentsPagesWithContext(ctx aws.Context, input *ListParentsInput, ...) error
- func (c *Organizations) ListParentsRequest(input *ListParentsInput) (req *request.Request, output *ListParentsOutput)
- func (c *Organizations) ListParentsWithContext(ctx aws.Context, input *ListParentsInput, opts ...request.Option) (*ListParentsOutput, error)
- func (c *Organizations) ListPolicies(input *ListPoliciesInput) (*ListPoliciesOutput, error)
- func (c *Organizations) ListPoliciesForTarget(input *ListPoliciesForTargetInput) (*ListPoliciesForTargetOutput, error)
- func (c *Organizations) ListPoliciesForTargetPages(input *ListPoliciesForTargetInput, ...) error
- func (c *Organizations) ListPoliciesForTargetPagesWithContext(ctx aws.Context, input *ListPoliciesForTargetInput, ...) error
- func (c *Organizations) ListPoliciesForTargetRequest(input *ListPoliciesForTargetInput) (req *request.Request, output *ListPoliciesForTargetOutput)
- func (c *Organizations) ListPoliciesForTargetWithContext(ctx aws.Context, input *ListPoliciesForTargetInput, opts ...request.Option) (*ListPoliciesForTargetOutput, error)
- func (c *Organizations) ListPoliciesPages(input *ListPoliciesInput, fn func(*ListPoliciesOutput, bool) bool) error
- func (c *Organizations) ListPoliciesPagesWithContext(ctx aws.Context, input *ListPoliciesInput, ...) error
- func (c *Organizations) ListPoliciesRequest(input *ListPoliciesInput) (req *request.Request, output *ListPoliciesOutput)
- func (c *Organizations) ListPoliciesWithContext(ctx aws.Context, input *ListPoliciesInput, opts ...request.Option) (*ListPoliciesOutput, error)
- func (c *Organizations) ListRoots(input *ListRootsInput) (*ListRootsOutput, error)
- func (c *Organizations) ListRootsPages(input *ListRootsInput, fn func(*ListRootsOutput, bool) bool) error
- func (c *Organizations) ListRootsPagesWithContext(ctx aws.Context, input *ListRootsInput, fn func(*ListRootsOutput, bool) bool, ...) error
- func (c *Organizations) ListRootsRequest(input *ListRootsInput) (req *request.Request, output *ListRootsOutput)
- func (c *Organizations) ListRootsWithContext(ctx aws.Context, input *ListRootsInput, opts ...request.Option) (*ListRootsOutput, error)
- func (c *Organizations) ListTargetsForPolicy(input *ListTargetsForPolicyInput) (*ListTargetsForPolicyOutput, error)
- func (c *Organizations) ListTargetsForPolicyPages(input *ListTargetsForPolicyInput, ...) error
- func (c *Organizations) ListTargetsForPolicyPagesWithContext(ctx aws.Context, input *ListTargetsForPolicyInput, ...) error
- func (c *Organizations) ListTargetsForPolicyRequest(input *ListTargetsForPolicyInput) (req *request.Request, output *ListTargetsForPolicyOutput)
- func (c *Organizations) ListTargetsForPolicyWithContext(ctx aws.Context, input *ListTargetsForPolicyInput, opts ...request.Option) (*ListTargetsForPolicyOutput, error)
- func (c *Organizations) MoveAccount(input *MoveAccountInput) (*MoveAccountOutput, error)
- func (c *Organizations) MoveAccountRequest(input *MoveAccountInput) (req *request.Request, output *MoveAccountOutput)
- func (c *Organizations) MoveAccountWithContext(ctx aws.Context, input *MoveAccountInput, opts ...request.Option) (*MoveAccountOutput, error)
- func (c *Organizations) RemoveAccountFromOrganization(input *RemoveAccountFromOrganizationInput) (*RemoveAccountFromOrganizationOutput, error)
- func (c *Organizations) RemoveAccountFromOrganizationRequest(input *RemoveAccountFromOrganizationInput) (req *request.Request, output *RemoveAccountFromOrganizationOutput)
- func (c *Organizations) RemoveAccountFromOrganizationWithContext(ctx aws.Context, input *RemoveAccountFromOrganizationInput, ...) (*RemoveAccountFromOrganizationOutput, error)
- func (c *Organizations) UpdateOrganizationalUnit(input *UpdateOrganizationalUnitInput) (*UpdateOrganizationalUnitOutput, error)
- func (c *Organizations) UpdateOrganizationalUnitRequest(input *UpdateOrganizationalUnitInput) (req *request.Request, output *UpdateOrganizationalUnitOutput)
- func (c *Organizations) UpdateOrganizationalUnitWithContext(ctx aws.Context, input *UpdateOrganizationalUnitInput, opts ...request.Option) (*UpdateOrganizationalUnitOutput, error)
- func (c *Organizations) UpdatePolicy(input *UpdatePolicyInput) (*UpdatePolicyOutput, error)
- func (c *Organizations) UpdatePolicyRequest(input *UpdatePolicyInput) (req *request.Request, output *UpdatePolicyOutput)
- func (c *Organizations) UpdatePolicyWithContext(ctx aws.Context, input *UpdatePolicyInput, opts ...request.Option) (*UpdatePolicyOutput, error)
- type Parent
- type Policy
- type PolicySummary
- func (s PolicySummary) GoString() string
- func (s *PolicySummary) SetArn(v string) *PolicySummary
- func (s *PolicySummary) SetAwsManaged(v bool) *PolicySummary
- func (s *PolicySummary) SetDescription(v string) *PolicySummary
- func (s *PolicySummary) SetId(v string) *PolicySummary
- func (s *PolicySummary) SetName(v string) *PolicySummary
- func (s *PolicySummary) SetType(v string) *PolicySummary
- func (s PolicySummary) String() string
- type PolicyTargetSummary
- func (s PolicyTargetSummary) GoString() string
- func (s *PolicyTargetSummary) SetArn(v string) *PolicyTargetSummary
- func (s *PolicyTargetSummary) SetName(v string) *PolicyTargetSummary
- func (s *PolicyTargetSummary) SetTargetId(v string) *PolicyTargetSummary
- func (s *PolicyTargetSummary) SetType(v string) *PolicyTargetSummary
- func (s PolicyTargetSummary) String() string
- type PolicyTypeSummary
- type RemoveAccountFromOrganizationInput
- type RemoveAccountFromOrganizationOutput
- type Root
- type UpdateOrganizationalUnitInput
- func (s UpdateOrganizationalUnitInput) GoString() string
- func (s *UpdateOrganizationalUnitInput) SetName(v string) *UpdateOrganizationalUnitInput
- func (s *UpdateOrganizationalUnitInput) SetOrganizationalUnitId(v string) *UpdateOrganizationalUnitInput
- func (s UpdateOrganizationalUnitInput) String() string
- func (s *UpdateOrganizationalUnitInput) Validate() error
- type UpdateOrganizationalUnitOutput
- type UpdatePolicyInput
- func (s UpdatePolicyInput) GoString() string
- func (s *UpdatePolicyInput) SetContent(v string) *UpdatePolicyInput
- func (s *UpdatePolicyInput) SetDescription(v string) *UpdatePolicyInput
- func (s *UpdatePolicyInput) SetName(v string) *UpdatePolicyInput
- func (s *UpdatePolicyInput) SetPolicyId(v string) *UpdatePolicyInput
- func (s UpdatePolicyInput) String() string
- func (s *UpdatePolicyInput) Validate() error
- type UpdatePolicyOutput
Examples ¶
- Organizations.AcceptHandshake (Shared00)
- Organizations.AttachPolicy (Shared00)
- Organizations.AttachPolicy (Shared01)
- Organizations.CancelHandshake (Shared00)
- Organizations.CreateAccount (Shared00)
- Organizations.CreateOrganization (Shared00)
- Organizations.CreateOrganization (Shared01)
- Organizations.CreateOrganizationalUnit (Shared00)
- Organizations.CreatePolicy (Shared00)
- Organizations.DeclineHandshake (Shared00)
- Organizations.DeleteOrganizationalUnit (Shared00)
- Organizations.DeletePolicy (Shared00)
- Organizations.DescribeAccount (Shared00)
- Organizations.DescribeCreateAccountStatus (Shared00)
- Organizations.DescribeHandshake (Shared00)
- Organizations.DescribeOrganization (Shared00)
- Organizations.DescribeOrganizationalUnit (Shared00)
- Organizations.DescribePolicy (Shared00)
- Organizations.DetachPolicy (Shared00)
- Organizations.DisablePolicyType (Shared00)
- Organizations.EnableAllFeatures (Shared00)
- Organizations.EnablePolicyType (Shared00)
- Organizations.InviteAccountToOrganization (Shared00)
- Organizations.LeaveOrganization (Shared00)
- Organizations.ListAccounts (Shared00)
- Organizations.ListAccountsForParent (Shared00)
- Organizations.ListChildren (Shared00)
- Organizations.ListCreateAccountStatus (Shared00)
- Organizations.ListCreateAccountStatus (Shared01)
- Organizations.ListHandshakesForAccount (Shared00)
- Organizations.ListHandshakesForOrganization (Shared00)
- Organizations.ListOrganizationalUnitsForParent (Shared00)
- Organizations.ListParents (Shared00)
- Organizations.ListPolicies (Shared00)
- Organizations.ListPoliciesForTarget (Shared00)
- Organizations.ListRoots (Shared00)
- Organizations.ListTargetsForPolicy (Shared00)
- Organizations.MoveAccount (Shared00)
- Organizations.RemoveAccountFromOrganization (Shared00)
- Organizations.UpdateOrganizationalUnit (Shared00)
- Organizations.UpdatePolicy (Shared00)
- Organizations.UpdatePolicy (Shared01)
Constants ¶
const ( // AccountJoinedMethodInvited is a AccountJoinedMethod enum value AccountJoinedMethodInvited = "INVITED" // AccountJoinedMethodCreated is a AccountJoinedMethod enum value AccountJoinedMethodCreated = "CREATED" )
const ( // AccountStatusActive is a AccountStatus enum value AccountStatusActive = "ACTIVE" // AccountStatusSuspended is a AccountStatus enum value AccountStatusSuspended = "SUSPENDED" )
const ( // ActionTypeInvite is a ActionType enum value ActionTypeInvite = "INVITE" // ActionTypeEnableAllFeatures is a ActionType enum value ActionTypeEnableAllFeatures = "ENABLE_ALL_FEATURES" // ActionTypeApproveAllFeatures is a ActionType enum value ActionTypeApproveAllFeatures = "APPROVE_ALL_FEATURES" )
const ( // ChildTypeAccount is a ChildType enum value ChildTypeAccount = "ACCOUNT" // ChildTypeOrganizationalUnit is a ChildType enum value ChildTypeOrganizationalUnit = "ORGANIZATIONAL_UNIT" )
const ( // ConstraintViolationExceptionReasonAccountNumberLimitExceeded is a ConstraintViolationExceptionReason enum value ConstraintViolationExceptionReasonAccountNumberLimitExceeded = "ACCOUNT_NUMBER_LIMIT_EXCEEDED" // ConstraintViolationExceptionReasonHandshakeRateLimitExceeded is a ConstraintViolationExceptionReason enum value ConstraintViolationExceptionReasonHandshakeRateLimitExceeded = "HANDSHAKE_RATE_LIMIT_EXCEEDED" // ConstraintViolationExceptionReasonOuNumberLimitExceeded is a ConstraintViolationExceptionReason enum value ConstraintViolationExceptionReasonOuNumberLimitExceeded = "OU_NUMBER_LIMIT_EXCEEDED" // ConstraintViolationExceptionReasonOuDepthLimitExceeded is a ConstraintViolationExceptionReason enum value ConstraintViolationExceptionReasonOuDepthLimitExceeded = "OU_DEPTH_LIMIT_EXCEEDED" // ConstraintViolationExceptionReasonPolicyNumberLimitExceeded is a ConstraintViolationExceptionReason enum value ConstraintViolationExceptionReasonPolicyNumberLimitExceeded = "POLICY_NUMBER_LIMIT_EXCEEDED" // ConstraintViolationExceptionReasonMaxPolicyTypeAttachmentLimitExceeded is a ConstraintViolationExceptionReason enum value ConstraintViolationExceptionReasonMaxPolicyTypeAttachmentLimitExceeded = "MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED" // ConstraintViolationExceptionReasonMinPolicyTypeAttachmentLimitExceeded is a ConstraintViolationExceptionReason enum value ConstraintViolationExceptionReasonMinPolicyTypeAttachmentLimitExceeded = "MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED" // ConstraintViolationExceptionReasonAccountCannotLeaveOrganization is a ConstraintViolationExceptionReason enum value ConstraintViolationExceptionReasonAccountCannotLeaveOrganization = "ACCOUNT_CANNOT_LEAVE_ORGANIZATION" // ConstraintViolationExceptionReasonAccountCannotLeaveWithoutEula is a ConstraintViolationExceptionReason enum value ConstraintViolationExceptionReasonAccountCannotLeaveWithoutEula = "ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA" // ConstraintViolationExceptionReasonAccountCannotLeaveWithoutPhoneVerification is a ConstraintViolationExceptionReason enum value ConstraintViolationExceptionReasonAccountCannotLeaveWithoutPhoneVerification = "ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION" // ConstraintViolationExceptionReasonMasterAccountPaymentInstrumentRequired is a ConstraintViolationExceptionReason enum value ConstraintViolationExceptionReasonMasterAccountPaymentInstrumentRequired = "MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED" // ConstraintViolationExceptionReasonMemberAccountPaymentInstrumentRequired is a ConstraintViolationExceptionReason enum value ConstraintViolationExceptionReasonMemberAccountPaymentInstrumentRequired = "MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED" // ConstraintViolationExceptionReasonAccountCreationRateLimitExceeded is a ConstraintViolationExceptionReason enum value ConstraintViolationExceptionReasonAccountCreationRateLimitExceeded = "ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED" // ConstraintViolationExceptionReasonMasterAccountAddressDoesNotMatchMarketplace is a ConstraintViolationExceptionReason enum value ConstraintViolationExceptionReasonMasterAccountAddressDoesNotMatchMarketplace = "MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE" )
const ( // CreateAccountFailureReasonAccountLimitExceeded is a CreateAccountFailureReason enum value CreateAccountFailureReasonAccountLimitExceeded = "ACCOUNT_LIMIT_EXCEEDED" // CreateAccountFailureReasonEmailAlreadyExists is a CreateAccountFailureReason enum value CreateAccountFailureReasonEmailAlreadyExists = "EMAIL_ALREADY_EXISTS" // CreateAccountFailureReasonInvalidAddress is a CreateAccountFailureReason enum value CreateAccountFailureReasonInvalidAddress = "INVALID_ADDRESS" // CreateAccountFailureReasonInvalidEmail is a CreateAccountFailureReason enum value CreateAccountFailureReasonInvalidEmail = "INVALID_EMAIL" // CreateAccountFailureReasonInternalFailure is a CreateAccountFailureReason enum value CreateAccountFailureReasonInternalFailure = "INTERNAL_FAILURE" )
const ( // CreateAccountStateInProgress is a CreateAccountState enum value CreateAccountStateInProgress = "IN_PROGRESS" // CreateAccountStateSucceeded is a CreateAccountState enum value CreateAccountStateSucceeded = "SUCCEEDED" // CreateAccountStateFailed is a CreateAccountState enum value CreateAccountStateFailed = "FAILED" )
const ( // HandshakeConstraintViolationExceptionReasonAccountNumberLimitExceeded is a HandshakeConstraintViolationExceptionReason enum value HandshakeConstraintViolationExceptionReasonAccountNumberLimitExceeded = "ACCOUNT_NUMBER_LIMIT_EXCEEDED" // HandshakeConstraintViolationExceptionReasonHandshakeRateLimitExceeded is a HandshakeConstraintViolationExceptionReason enum value HandshakeConstraintViolationExceptionReasonHandshakeRateLimitExceeded = "HANDSHAKE_RATE_LIMIT_EXCEEDED" // HandshakeConstraintViolationExceptionReasonAlreadyInAnOrganization is a HandshakeConstraintViolationExceptionReason enum value HandshakeConstraintViolationExceptionReasonAlreadyInAnOrganization = "ALREADY_IN_AN_ORGANIZATION" // HandshakeConstraintViolationExceptionReasonOrganizationAlreadyHasAllFeatures is a HandshakeConstraintViolationExceptionReason enum value HandshakeConstraintViolationExceptionReasonOrganizationAlreadyHasAllFeatures = "ORGANIZATION_ALREADY_HAS_ALL_FEATURES" // HandshakeConstraintViolationExceptionReasonInviteDisabledDuringEnableAllFeatures is a HandshakeConstraintViolationExceptionReason enum value HandshakeConstraintViolationExceptionReasonInviteDisabledDuringEnableAllFeatures = "INVITE_DISABLED_DURING_ENABLE_ALL_FEATURES" // HandshakeConstraintViolationExceptionReasonPaymentInstrumentRequired is a HandshakeConstraintViolationExceptionReason enum value HandshakeConstraintViolationExceptionReasonPaymentInstrumentRequired = "PAYMENT_INSTRUMENT_REQUIRED" // HandshakeConstraintViolationExceptionReasonOrganizationFromDifferentSellerOfRecord is a HandshakeConstraintViolationExceptionReason enum value HandshakeConstraintViolationExceptionReasonOrganizationFromDifferentSellerOfRecord = "ORGANIZATION_FROM_DIFFERENT_SELLER_OF_RECORD" // HandshakeConstraintViolationExceptionReasonOrganizationMembershipChangeRateLimitExceeded is a HandshakeConstraintViolationExceptionReason enum value HandshakeConstraintViolationExceptionReasonOrganizationMembershipChangeRateLimitExceeded = "ORGANIZATION_MEMBERSHIP_CHANGE_RATE_LIMIT_EXCEEDED" )
const ( // HandshakePartyTypeAccount is a HandshakePartyType enum value HandshakePartyTypeAccount = "ACCOUNT" // HandshakePartyTypeOrganization is a HandshakePartyType enum value HandshakePartyTypeOrganization = "ORGANIZATION" // HandshakePartyTypeEmail is a HandshakePartyType enum value HandshakePartyTypeEmail = "EMAIL" )
const ( // HandshakeResourceTypeAccount is a HandshakeResourceType enum value HandshakeResourceTypeAccount = "ACCOUNT" // HandshakeResourceTypeOrganization is a HandshakeResourceType enum value HandshakeResourceTypeOrganization = "ORGANIZATION" // HandshakeResourceTypeOrganizationFeatureSet is a HandshakeResourceType enum value HandshakeResourceTypeOrganizationFeatureSet = "ORGANIZATION_FEATURE_SET" // HandshakeResourceTypeEmail is a HandshakeResourceType enum value HandshakeResourceTypeEmail = "EMAIL" // HandshakeResourceTypeMasterEmail is a HandshakeResourceType enum value HandshakeResourceTypeMasterEmail = "MASTER_EMAIL" // HandshakeResourceTypeMasterName is a HandshakeResourceType enum value HandshakeResourceTypeMasterName = "MASTER_NAME" // HandshakeResourceTypeNotes is a HandshakeResourceType enum value HandshakeResourceTypeNotes = "NOTES" // HandshakeResourceTypeParentHandshake is a HandshakeResourceType enum value HandshakeResourceTypeParentHandshake = "PARENT_HANDSHAKE" )
const ( // HandshakeStateRequested is a HandshakeState enum value HandshakeStateRequested = "REQUESTED" // HandshakeStateOpen is a HandshakeState enum value HandshakeStateOpen = "OPEN" // HandshakeStateCanceled is a HandshakeState enum value HandshakeStateCanceled = "CANCELED" // HandshakeStateAccepted is a HandshakeState enum value HandshakeStateAccepted = "ACCEPTED" // HandshakeStateDeclined is a HandshakeState enum value HandshakeStateDeclined = "DECLINED" // HandshakeStateExpired is a HandshakeState enum value HandshakeStateExpired = "EXPIRED" )
const ( // IAMUserAccessToBillingAllow is a IAMUserAccessToBilling enum value IAMUserAccessToBillingAllow = "ALLOW" // IAMUserAccessToBillingDeny is a IAMUserAccessToBilling enum value IAMUserAccessToBillingDeny = "DENY" )
const ( // InvalidInputExceptionReasonInvalidPartyTypeTarget is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonInvalidPartyTypeTarget = "INVALID_PARTY_TYPE_TARGET" // InvalidInputExceptionReasonInvalidSyntaxOrganizationArn is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonInvalidSyntaxOrganizationArn = "INVALID_SYNTAX_ORGANIZATION_ARN" // InvalidInputExceptionReasonInvalidSyntaxPolicyId is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonInvalidSyntaxPolicyId = "INVALID_SYNTAX_POLICY_ID" // InvalidInputExceptionReasonInvalidEnum is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonInvalidEnum = "INVALID_ENUM" // InvalidInputExceptionReasonInvalidListMember is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonInvalidListMember = "INVALID_LIST_MEMBER" // InvalidInputExceptionReasonMaxLengthExceeded is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonMaxLengthExceeded = "MAX_LENGTH_EXCEEDED" // InvalidInputExceptionReasonMaxValueExceeded is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonMaxValueExceeded = "MAX_VALUE_EXCEEDED" // InvalidInputExceptionReasonMinLengthExceeded is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonMinLengthExceeded = "MIN_LENGTH_EXCEEDED" // InvalidInputExceptionReasonMinValueExceeded is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonMinValueExceeded = "MIN_VALUE_EXCEEDED" // InvalidInputExceptionReasonImmutablePolicy is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonImmutablePolicy = "IMMUTABLE_POLICY" // InvalidInputExceptionReasonInvalidPattern is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonInvalidPattern = "INVALID_PATTERN" // InvalidInputExceptionReasonInvalidPatternTargetId is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonInvalidPatternTargetId = "INVALID_PATTERN_TARGET_ID" // InvalidInputExceptionReasonInputRequired is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonInputRequired = "INPUT_REQUIRED" // InvalidInputExceptionReasonInvalidNextToken is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonInvalidNextToken = "INVALID_NEXT_TOKEN" // InvalidInputExceptionReasonMaxLimitExceededFilter is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonMaxLimitExceededFilter = "MAX_LIMIT_EXCEEDED_FILTER" // InvalidInputExceptionReasonMovingAccountBetweenDifferentRoots is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonMovingAccountBetweenDifferentRoots = "MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS" // InvalidInputExceptionReasonInvalidFullNameTarget is a InvalidInputExceptionReason enum value InvalidInputExceptionReasonInvalidFullNameTarget = "INVALID_FULL_NAME_TARGET" )
const ( // OrganizationFeatureSetAll is a OrganizationFeatureSet enum value OrganizationFeatureSetAll = "ALL" // OrganizationFeatureSetConsolidatedBilling is a OrganizationFeatureSet enum value OrganizationFeatureSetConsolidatedBilling = "CONSOLIDATED_BILLING" )
const ( // ParentTypeRoot is a ParentType enum value ParentTypeRoot = "ROOT" // ParentTypeOrganizationalUnit is a ParentType enum value ParentTypeOrganizationalUnit = "ORGANIZATIONAL_UNIT" )
const ( // PolicyTypeStatusEnabled is a PolicyTypeStatus enum value PolicyTypeStatusEnabled = "ENABLED" // PolicyTypeStatusPendingEnable is a PolicyTypeStatus enum value PolicyTypeStatusPendingEnable = "PENDING_ENABLE" // PolicyTypeStatusPendingDisable is a PolicyTypeStatus enum value PolicyTypeStatusPendingDisable = "PENDING_DISABLE" )
const ( // TargetTypeAccount is a TargetType enum value TargetTypeAccount = "ACCOUNT" // TargetTypeOrganizationalUnit is a TargetType enum value TargetTypeOrganizationalUnit = "ORGANIZATIONAL_UNIT" // TargetTypeRoot is a TargetType enum value TargetTypeRoot = "ROOT" )
const ( // ErrCodeAWSOrganizationsNotInUseException for service response error code // "AWSOrganizationsNotInUseException". // // Your account is not a member of an organization. To make this request, you // must use the credentials of an account that belongs to an organization. ErrCodeAWSOrganizationsNotInUseException = "AWSOrganizationsNotInUseException" // ErrCodeAccessDeniedException for service response error code // "AccessDeniedException". // // You don't have permissions to perform the requested operation. The user or // role that is making the request must have at least one IAM permissions policy // attached that grants the required permissions. For more information, see // Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) // in the IAM User Guide. ErrCodeAccessDeniedException = "AccessDeniedException" // ErrCodeAccountNotFoundException for service response error code // "AccountNotFoundException". // // We can't find an AWS account with the AccountId that you specified, or the // account whose credentials you used to make this request is not a member of // an organization. ErrCodeAccountNotFoundException = "AccountNotFoundException" // ErrCodeAlreadyInOrganizationException for service response error code // "AlreadyInOrganizationException". // // This account is already a member of an organization. An account can belong // to only one organization at a time. ErrCodeAlreadyInOrganizationException = "AlreadyInOrganizationException" // ErrCodeChildNotFoundException for service response error code // "ChildNotFoundException". // // We can't find an organizational unit (OU) or AWS account with the ChildId // that you specified. ErrCodeChildNotFoundException = "ChildNotFoundException" // ErrCodeConcurrentModificationException for service response error code // "ConcurrentModificationException". // // The target of the operation is currently being modified by a different request. // Try again later. ErrCodeConcurrentModificationException = "ConcurrentModificationException" // ErrCodeConstraintViolationException for service response error code // "ConstraintViolationException". // // Performing this operation violates a minimum or maximum value limit. For // example, attempting to removing the last SCP from an OU or root, inviting // or creating too many accounts to the organization, or attaching too many // policies to an account, OU, or root. This exception includes a reason that // contains additional information about the violated limit: // // ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number // of accounts in an organization. If you need more accounts, contact AWS Support // to request an increase in your limit. // // Or, The number of invitations that you tried to send would cause you to exceed // the limit of accounts in your organization. Send fewer invitations, or contact // AWS Support to request an increase in the number of accounts. // // Note: deleted and closed accounts still count toward your limit. // // * HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of // handshakes you can send in one day. // // * OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of organizational // units you can have in an organization. // // * OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an organizational unit // tree that is too many levels deep. // // * POLICY_NUMBER_LIMIT_EXCEEDED. You attempted to exceed the number of // policies that you can have in an organization. // // * MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the // number of policies of a certain type that can be attached to an entity // at one time. // // * MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a // policy from an entity that would cause the entity to have fewer than the // minimum number of policies of a certain type required. // // * ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: You attempted to remove an account // from the organization that does not yet have enough information to exist // as a stand-alone account. This account requires you to first agree to // the End-User License Agreement (EULA). // // * ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove // an account from the organization that does not yet have enough information // to exist as a stand-alone account. This account requires you to first // complete phone verification. // // * MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization // with this account, you first must associate a payment instrument, such // as a credit card, with the account. // // * MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation // with this member account, you first must associate a payment instrument, // such as a credit card, with the account. // // * ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number // of accounts that you can create in one day. // // * MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account // in this organization, you first must migrate the organization's master // account to the marketplace that corresponds to the master account's address. // For example, accounts with India addresses must be associated with the // AISPL marketplace. All accounts in an organization must be associated // with the same marketplace. ErrCodeConstraintViolationException = "ConstraintViolationException" // ErrCodeCreateAccountStatusNotFoundException for service response error code // "CreateAccountStatusNotFoundException". // // We can't find an create account request with the CreateAccountRequestId that // you specified. ErrCodeCreateAccountStatusNotFoundException = "CreateAccountStatusNotFoundException" // ErrCodeDestinationParentNotFoundException for service response error code // "DestinationParentNotFoundException". // // We can't find the destination container (a root or OU) with the ParentId // that you specified. ErrCodeDestinationParentNotFoundException = "DestinationParentNotFoundException" // ErrCodeDuplicateAccountException for service response error code // "DuplicateAccountException". // // That account is already present in the specified destination. ErrCodeDuplicateAccountException = "DuplicateAccountException" // ErrCodeDuplicateHandshakeException for service response error code // "DuplicateHandshakeException". // // A handshake with the same action and target already exists. For example, // if you invited an account to join your organization, the invited account // might already have a pending invitation from this organization. If you intend // to resend an invitation to an account, ensure that existing handshakes that // might be considered duplicates are canceled or declined. ErrCodeDuplicateHandshakeException = "DuplicateHandshakeException" // ErrCodeDuplicateOrganizationalUnitException for service response error code // "DuplicateOrganizationalUnitException". // // An organizational unit (OU) with the same name already exists. ErrCodeDuplicateOrganizationalUnitException = "DuplicateOrganizationalUnitException" // ErrCodeDuplicatePolicyAttachmentException for service response error code // "DuplicatePolicyAttachmentException". // // The selected policy is already attached to the specified target. ErrCodeDuplicatePolicyAttachmentException = "DuplicatePolicyAttachmentException" // ErrCodeDuplicatePolicyException for service response error code // "DuplicatePolicyException". // // A policy with the same name already exists. ErrCodeDuplicatePolicyException = "DuplicatePolicyException" // ErrCodeFinalizingOrganizationException for service response error code // "FinalizingOrganizationException". // // AWS Organizations could not finalize the creation of your organization. Try // again later. If this persists, contact AWS customer support. ErrCodeFinalizingOrganizationException = "FinalizingOrganizationException" // ErrCodeHandshakeAlreadyInStateException for service response error code // "HandshakeAlreadyInStateException". // // The specified handshake is already in the requested state. For example, you // can't accept a handshake that was already accepted. ErrCodeHandshakeAlreadyInStateException = "HandshakeAlreadyInStateException" // ErrCodeHandshakeConstraintViolationException for service response error code // "HandshakeConstraintViolationException". // // The requested operation would violate the constraint identified in the reason // code. // // * ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on // the number of accounts in an organization. Note: deleted and closed accounts // still count toward your limit. // // * HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of // handshakes you can send in one day. // // * ALREADY_IN_AN_ORGANIZATION: The handshake request is invalid because // the invited account is already a member of an organization. // // * ORGANIZATION_ALREADY_HAS_ALL_FEATURES: The handshake request is invalid // because the organization has already enabled all features. // // * INVITE_DISABLED_DURING_ENABLE_ALL_FEATURES: You cannot issue new invitations // to join an organization while it is in the process of enabling all features. // You can resume inviting accounts after you finalize the process when all // accounts have agreed to the change. // // * PAYMENT_INSTRUMENT_REQUIRED: You cannot complete the operation with // an account that does not have a payment instrument, such as a credit card, // associated with it. // // * ORGANIZATION_FROM_DIFFERENT_SELLER_OF_RECORD: The request failed because // the account is from a different marketplace than the accounts in the organization. // For example, accounts with India addresses must be associated with the // AISPL marketplace. All accounts in an organization must be from the same // marketplace. // // * ORGANIZATION_MEMBERSHIP_CHANGE_RATE_LIMIT_EXCEEDED: You attempted to // change the membership of an account too quickly after its previous change. ErrCodeHandshakeConstraintViolationException = "HandshakeConstraintViolationException" // ErrCodeHandshakeNotFoundException for service response error code // "HandshakeNotFoundException". // // We can't find a handshake with the HandshakeId that you specified. ErrCodeHandshakeNotFoundException = "HandshakeNotFoundException" // ErrCodeInvalidHandshakeTransitionException for service response error code // "InvalidHandshakeTransitionException". // // You can't perform the operation on the handshake in its current state. For // example, you can't cancel a handshake that was already accepted, or accept // a handshake that was already declined. ErrCodeInvalidHandshakeTransitionException = "InvalidHandshakeTransitionException" // ErrCodeInvalidInputException for service response error code // "InvalidInputException". // // The requested operation failed because you provided invalid values for one // or more of the request parameters. This exception includes a reason that // contains additional information about the violated limit: // // * INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, // organization, or email) as a party. // // * INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the // organization. // // * INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID. // // * INVALID_ENUM: You specified a value that is not valid for that parameter. // // * INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid // characters. // // * INVALID_LIST_MEMBER: You provided a list to a parameter that contains // at least one invalid value. // // * MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer // than allowed. // // * MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger // value than allowed. // // * MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter // than allowed. // // * MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller // value than allowed. // // * IMMUTABLE_POLICY: You specified a policy that is managed by AWS and // cannot be modified. // // * INVALID_PATTERN: You provided a value that doesn't match the required // pattern. // // * INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't // match the required pattern. // // * INPUT_REQUIRED: You must include a value for all required parameters. // // * INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter // from the response to a previous call of the operation. // // * MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter // for the operation. // // * MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only // between entities in the same root. ErrCodeInvalidInputException = "InvalidInputException" // ErrCodeMalformedPolicyDocumentException for service response error code // "MalformedPolicyDocumentException". // // The provided policy document does not meet the requirements of the specified // policy type. For example, the syntax might be incorrect. For details about // service control policy syntax, see Service Control Policy Syntax (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_reference_scp-syntax.html) // in the AWS Organizations User Guide. ErrCodeMalformedPolicyDocumentException = "MalformedPolicyDocumentException" // ErrCodeMasterCannotLeaveOrganizationException for service response error code // "MasterCannotLeaveOrganizationException". // // You can't remove a master account from an organization. If you want the master // account to become a member account in another organization, you must first // delete the current organization of the master account. ErrCodeMasterCannotLeaveOrganizationException = "MasterCannotLeaveOrganizationException" // ErrCodeOrganizationNotEmptyException for service response error code // "OrganizationNotEmptyException". // // The organization isn't empty. To delete an organization, you must first remove // all accounts except the master account, delete all organizational units (OUs), // and delete all policies. ErrCodeOrganizationNotEmptyException = "OrganizationNotEmptyException" // ErrCodeOrganizationalUnitNotEmptyException for service response error code // "OrganizationalUnitNotEmptyException". // // The specified organizational unit (OU) is not empty. Move all accounts to // another root or to other OUs, remove all child OUs, and then try the operation // again. ErrCodeOrganizationalUnitNotEmptyException = "OrganizationalUnitNotEmptyException" // ErrCodeOrganizationalUnitNotFoundException for service response error code // "OrganizationalUnitNotFoundException". // // We can't find an organizational unit (OU) with the OrganizationalUnitId that // you specified. ErrCodeOrganizationalUnitNotFoundException = "OrganizationalUnitNotFoundException" // ErrCodeParentNotFoundException for service response error code // "ParentNotFoundException". // // We can't find a root or organizational unit (OU) with the ParentId that you // specified. ErrCodeParentNotFoundException = "ParentNotFoundException" // ErrCodePolicyInUseException for service response error code // "PolicyInUseException". // // The policy is attached to one or more entities. You must detach it from all // roots, organizational units (OUs), and accounts before performing this operation. ErrCodePolicyInUseException = "PolicyInUseException" // ErrCodePolicyNotAttachedException for service response error code // "PolicyNotAttachedException". // // The policy isn't attached to the specified target in the specified root. ErrCodePolicyNotAttachedException = "PolicyNotAttachedException" // ErrCodePolicyNotFoundException for service response error code // "PolicyNotFoundException". // // We can't find a policy with the PolicyId that you specified. ErrCodePolicyNotFoundException = "PolicyNotFoundException" // ErrCodePolicyTypeAlreadyEnabledException for service response error code // "PolicyTypeAlreadyEnabledException". // // The specified policy type is already enabled in the specified root. ErrCodePolicyTypeAlreadyEnabledException = "PolicyTypeAlreadyEnabledException" // ErrCodePolicyTypeNotAvailableForOrganizationException for service response error code // "PolicyTypeNotAvailableForOrganizationException". // // You can't use the specified policy type with the feature set currently enabled // for this organization. For example, you can enable service control policies // (SCPs) only after you enable all features in the organization. For more information, // see Enabling and Disabling a Policy Type on a Root (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies.html#enable_policies_on_root) // in the AWS Organizations User Guide. ErrCodePolicyTypeNotAvailableForOrganizationException = "PolicyTypeNotAvailableForOrganizationException" // ErrCodePolicyTypeNotEnabledException for service response error code // "PolicyTypeNotEnabledException". // // The specified policy type is not currently enabled in this root. You cannot // attach policies of the specified type to entities in a root until you enable // that type in the root. For more information, see Enabling All Features in // Your Organization (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_org_support-all-features.html) // in the AWS Organizations User Guide. ErrCodePolicyTypeNotEnabledException = "PolicyTypeNotEnabledException" // ErrCodeRootNotFoundException for service response error code // "RootNotFoundException". // // We can't find a root with the RootId that you specified. ErrCodeRootNotFoundException = "RootNotFoundException" // ErrCodeServiceException for service response error code // "ServiceException". // // AWS Organizations can't complete your request because of an internal service // error. Try again later. ErrCodeServiceException = "ServiceException" // ErrCodeSourceParentNotFoundException for service response error code // "SourceParentNotFoundException". // // We can't find a source root or OU with the ParentId that you specified. ErrCodeSourceParentNotFoundException = "SourceParentNotFoundException" // ErrCodeTargetNotFoundException for service response error code // "TargetNotFoundException". // // We can't find a root, OU, or account with the TargetId that you specified. ErrCodeTargetNotFoundException = "TargetNotFoundException" // ErrCodeTooManyRequestsException for service response error code // "TooManyRequestsException". // // You've sent too many requests in too short a period of time. The limit helps // protect against denial-of-service attacks. Try again later. ErrCodeTooManyRequestsException = "TooManyRequestsException" )
const ( ServiceName = "organizations" // Service endpoint prefix API calls made to. EndpointsID = ServiceName // Service ID for Regions and Endpoints metadata. )
Service information constants
const (
// PolicyTypeServiceControlPolicy is a PolicyType enum value
PolicyTypeServiceControlPolicy = "SERVICE_CONTROL_POLICY"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AcceptHandshakeInput ¶
type AcceptHandshakeInput struct { // The unique identifier (ID) of the handshake that you want to accept. // // The regex pattern (http://wikipedia.org/wiki/regex) for handshake ID string // requires "h-" followed by from 8 to 32 lower-case letters or digits. // // HandshakeId is a required field HandshakeId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/AcceptHandshakeRequest
func (AcceptHandshakeInput) GoString ¶
func (s AcceptHandshakeInput) GoString() string
GoString returns the string representation
func (*AcceptHandshakeInput) SetHandshakeId ¶
func (s *AcceptHandshakeInput) SetHandshakeId(v string) *AcceptHandshakeInput
SetHandshakeId sets the HandshakeId field's value.
func (AcceptHandshakeInput) String ¶
func (s AcceptHandshakeInput) String() string
String returns the string representation
func (*AcceptHandshakeInput) Validate ¶
func (s *AcceptHandshakeInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type AcceptHandshakeOutput ¶
type AcceptHandshakeOutput struct { // A structure that contains details about the accepted handshake. Handshake *Handshake `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/AcceptHandshakeResponse
func (AcceptHandshakeOutput) GoString ¶
func (s AcceptHandshakeOutput) GoString() string
GoString returns the string representation
func (*AcceptHandshakeOutput) SetHandshake ¶
func (s *AcceptHandshakeOutput) SetHandshake(v *Handshake) *AcceptHandshakeOutput
SetHandshake sets the Handshake field's value.
func (AcceptHandshakeOutput) String ¶
func (s AcceptHandshakeOutput) String() string
String returns the string representation
type Account ¶
type Account struct { // The Amazon Resource Name (ARN) of the account. // // For more information about ARNs in Organizations, see ARN Formats Supported // by Organizations (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_permissions.html#orgs-permissions-arns) // in the AWS Organizations User Guide. Arn *string `type:"string"` // The email address associated with the AWS account. // // The regex pattern (http://wikipedia.org/wiki/regex) for this parameter is // a string of characters that represents a standard Internet email address. Email *string `min:"6" type:"string"` // The unique identifier (ID) of the account. // // The regex pattern (http://wikipedia.org/wiki/regex) for an account ID string // requires exactly 12 digits. Id *string `type:"string"` // The method by which the account joined the organization. JoinedMethod *string `type:"string" enum:"AccountJoinedMethod"` // The date the account became a part of the organization. JoinedTimestamp *time.Time `type:"timestamp" timestampFormat:"unix"` // The friendly name of the account. // // The regex pattern (http://wikipedia.org/wiki/regex) that is used to validate // this parameter is a string of any of the characters in the ASCII character // range. Name *string `min:"1" type:"string"` // The status of the account in the organization. Status *string `type:"string" enum:"AccountStatus"` // contains filtered or unexported fields }
Contains information about an AWS account that is a member of an organization. Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/Account
func (*Account) SetJoinedMethod ¶
SetJoinedMethod sets the JoinedMethod field's value.
func (*Account) SetJoinedTimestamp ¶
SetJoinedTimestamp sets the JoinedTimestamp field's value.
type AttachPolicyInput ¶
type AttachPolicyInput struct { // The unique identifier (ID) of the policy that you want to attach to the target. // You can get the ID for the policy by calling the ListPolicies operation. // // The regex pattern (http://wikipedia.org/wiki/regex) for a policy ID string // requires "p-" followed by from 8 to 128 lower-case letters or digits. // // PolicyId is a required field PolicyId *string `type:"string" required:"true"` // The unique identifier (ID) of the root, OU, or account that you want to attach // the policy to. You can get the ID by calling the ListRoots, ListOrganizationalUnitsForParent, // or ListAccounts operations. // // The regex pattern (http://wikipedia.org/wiki/regex) for a target ID string // requires one of the following: // // * Root: a string that begins with "r-" followed by from 4 to 32 lower-case // letters or digits. // // * Account: a string that consists of exactly 12 digits. // // * Organizational unit (OU): a string that begins with "ou-" followed by // from 4 to 32 lower-case letters or digits (the ID of the root that the // OU is in) followed by a second "-" dash and from 8 to 32 additional lower-case // letters or digits. // // TargetId is a required field TargetId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/AttachPolicyRequest
func (AttachPolicyInput) GoString ¶
func (s AttachPolicyInput) GoString() string
GoString returns the string representation
func (*AttachPolicyInput) SetPolicyId ¶
func (s *AttachPolicyInput) SetPolicyId(v string) *AttachPolicyInput
SetPolicyId sets the PolicyId field's value.
func (*AttachPolicyInput) SetTargetId ¶
func (s *AttachPolicyInput) SetTargetId(v string) *AttachPolicyInput
SetTargetId sets the TargetId field's value.
func (AttachPolicyInput) String ¶
func (s AttachPolicyInput) String() string
String returns the string representation
func (*AttachPolicyInput) Validate ¶
func (s *AttachPolicyInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type AttachPolicyOutput ¶
type AttachPolicyOutput struct {
// contains filtered or unexported fields
}
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/AttachPolicyOutput
func (AttachPolicyOutput) GoString ¶
func (s AttachPolicyOutput) GoString() string
GoString returns the string representation
func (AttachPolicyOutput) String ¶
func (s AttachPolicyOutput) String() string
String returns the string representation
type CancelHandshakeInput ¶
type CancelHandshakeInput struct { // The unique identifier (ID) of the handshake that you want to cancel. You // can get the ID from the ListHandshakesForOrganization operation. // // The regex pattern (http://wikipedia.org/wiki/regex) for handshake ID string // requires "h-" followed by from 8 to 32 lower-case letters or digits. // // HandshakeId is a required field HandshakeId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CancelHandshakeRequest
func (CancelHandshakeInput) GoString ¶
func (s CancelHandshakeInput) GoString() string
GoString returns the string representation
func (*CancelHandshakeInput) SetHandshakeId ¶
func (s *CancelHandshakeInput) SetHandshakeId(v string) *CancelHandshakeInput
SetHandshakeId sets the HandshakeId field's value.
func (CancelHandshakeInput) String ¶
func (s CancelHandshakeInput) String() string
String returns the string representation
func (*CancelHandshakeInput) Validate ¶
func (s *CancelHandshakeInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CancelHandshakeOutput ¶
type CancelHandshakeOutput struct { // A structure that contains details about the handshake that you canceled. Handshake *Handshake `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CancelHandshakeResponse
func (CancelHandshakeOutput) GoString ¶
func (s CancelHandshakeOutput) GoString() string
GoString returns the string representation
func (*CancelHandshakeOutput) SetHandshake ¶
func (s *CancelHandshakeOutput) SetHandshake(v *Handshake) *CancelHandshakeOutput
SetHandshake sets the Handshake field's value.
func (CancelHandshakeOutput) String ¶
func (s CancelHandshakeOutput) String() string
String returns the string representation
type Child ¶
type Child struct { // The unique identifier (ID) of this child entity. // // The regex pattern (http://wikipedia.org/wiki/regex) for a child ID string // requires one of the following: // // * Account: a string that consists of exactly 12 digits. // // * Organizational unit (OU): a string that begins with "ou-" followed by // from 4 to 32 lower-case letters or digits (the ID of the root that contains // the OU) followed by a second "-" dash and from 8 to 32 additional lower-case // letters or digits. Id *string `type:"string"` // The type of this child entity. Type *string `type:"string" enum:"ChildType"` // contains filtered or unexported fields }
Contains a list of child entities, either OUs or accounts. Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/Child
type CreateAccountInput ¶
type CreateAccountInput struct { // The friendly name of the member account. // // AccountName is a required field AccountName *string `min:"1" type:"string" required:"true"` // The email address of the owner to assign to the new member account. This // email address must not already be associated with another AWS account. // // Email is a required field Email *string `min:"6" type:"string" required:"true"` // If set to ALLOW, the new account enables IAM users to access account billing // information if they have the required permissions. If set to DENY, then only // the root user of the new account can access account billing information. // For more information, see Activating Access to the Billing and Cost Management // Console (http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/grantaccess.html#ControllingAccessWebsite-Activate) // in the AWS Billing and Cost Management User Guide. // // If you do not specify this parameter, the value defaults to ALLOW, and IAM // users and roles with the required permissions can access billing information // for the new account. IamUserAccessToBilling *string `type:"string" enum:"IAMUserAccessToBilling"` // (Optional) // // The name of an IAM role that Organizations automatically preconfigures in // the new member account. This role trusts the master account, allowing users // in the master account to assume the role, as permitted by the master account // administrator. The role has administrator permissions in the new member account. // // If you do not specify this parameter, the role name defaults to OrganizationAccountAccessRole. // // For more information about how to use this role to access the member account, // see Accessing and Administering the Member Accounts in Your Organization // (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_accounts_access.html#orgs_manage_accounts_create-cross-account-role) // in the AWS Organizations User Guide, and steps 2 and 3 in Tutorial: Delegate // Access Across AWS Accounts Using IAM Roles (http://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_cross-account-with-roles.html) // in the IAM User Guide. // // The regex pattern (http://wikipedia.org/wiki/regex) that is used to validate // this parameter is a string of characters that can consist of uppercase letters, // lowercase letters, digits with no spaces, and any of the following characters: // =,.@- RoleName *string `type:"string"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateAccountRequest
func (CreateAccountInput) GoString ¶
func (s CreateAccountInput) GoString() string
GoString returns the string representation
func (*CreateAccountInput) SetAccountName ¶
func (s *CreateAccountInput) SetAccountName(v string) *CreateAccountInput
SetAccountName sets the AccountName field's value.
func (*CreateAccountInput) SetEmail ¶
func (s *CreateAccountInput) SetEmail(v string) *CreateAccountInput
SetEmail sets the Email field's value.
func (*CreateAccountInput) SetIamUserAccessToBilling ¶
func (s *CreateAccountInput) SetIamUserAccessToBilling(v string) *CreateAccountInput
SetIamUserAccessToBilling sets the IamUserAccessToBilling field's value.
func (*CreateAccountInput) SetRoleName ¶
func (s *CreateAccountInput) SetRoleName(v string) *CreateAccountInput
SetRoleName sets the RoleName field's value.
func (CreateAccountInput) String ¶
func (s CreateAccountInput) String() string
String returns the string representation
func (*CreateAccountInput) Validate ¶
func (s *CreateAccountInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateAccountOutput ¶
type CreateAccountOutput struct { // A structure that contains details about the request to create an account. // This response structure might not be fully populated when you first receive // it because account creation is an asynchronous process. You can pass the // returned CreateAccountStatus ID as a parameter to DescribeCreateAccountStatus // to get status about the progress of the request at later times. CreateAccountStatus *CreateAccountStatus `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateAccountResponse
func (CreateAccountOutput) GoString ¶
func (s CreateAccountOutput) GoString() string
GoString returns the string representation
func (*CreateAccountOutput) SetCreateAccountStatus ¶
func (s *CreateAccountOutput) SetCreateAccountStatus(v *CreateAccountStatus) *CreateAccountOutput
SetCreateAccountStatus sets the CreateAccountStatus field's value.
func (CreateAccountOutput) String ¶
func (s CreateAccountOutput) String() string
String returns the string representation
type CreateAccountStatus ¶
type CreateAccountStatus struct { // If the account was created successfully, the unique identifier (ID) of the // new account. // // The regex pattern (http://wikipedia.org/wiki/regex) for an account ID string // requires exactly 12 digits. AccountId *string `type:"string"` // The account name given to the account when it was created. AccountName *string `min:"1" type:"string"` // The date and time that the account was created and the request completed. CompletedTimestamp *time.Time `type:"timestamp" timestampFormat:"unix"` // If the request failed, a description of the reason for the failure. // // * ACCOUNT_LIMIT_EXCEEDED: The account could not be created because you // have reached the limit on the number of accounts in your organization. // // * EMAIL_ALREADY_EXISTS: The account could not be created because another // AWS account with that email address already exists. // // * INVALID_ADDRESS: The account could not be created because the address // you provided is not valid. // // * INVALID_EMAIL: The account could not be created because the email address // you provided is not valid. // // * INTERNAL_FAILURE: The account could not be created because of an internal // failure. Try again later. If the problem persists, contact Customer Support. FailureReason *string `type:"string" enum:"CreateAccountFailureReason"` // The unique identifier (ID) that references this request. You get this value // from the response of the initial CreateAccount request to create the account. // // The regex pattern (http://wikipedia.org/wiki/regex) for an create account // request ID string requires "car-" followed by from 8 to 32 lower-case letters // or digits. Id *string `type:"string"` // The date and time that the request was made for the account creation. RequestedTimestamp *time.Time `type:"timestamp" timestampFormat:"unix"` // The status of the request. State *string `type:"string" enum:"CreateAccountState"` // contains filtered or unexported fields }
Contains the status about a CreateAccount request to create an AWS account in an organization. Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateAccountStatus
func (CreateAccountStatus) GoString ¶
func (s CreateAccountStatus) GoString() string
GoString returns the string representation
func (*CreateAccountStatus) SetAccountId ¶
func (s *CreateAccountStatus) SetAccountId(v string) *CreateAccountStatus
SetAccountId sets the AccountId field's value.
func (*CreateAccountStatus) SetAccountName ¶
func (s *CreateAccountStatus) SetAccountName(v string) *CreateAccountStatus
SetAccountName sets the AccountName field's value.
func (*CreateAccountStatus) SetCompletedTimestamp ¶
func (s *CreateAccountStatus) SetCompletedTimestamp(v time.Time) *CreateAccountStatus
SetCompletedTimestamp sets the CompletedTimestamp field's value.
func (*CreateAccountStatus) SetFailureReason ¶
func (s *CreateAccountStatus) SetFailureReason(v string) *CreateAccountStatus
SetFailureReason sets the FailureReason field's value.
func (*CreateAccountStatus) SetId ¶
func (s *CreateAccountStatus) SetId(v string) *CreateAccountStatus
SetId sets the Id field's value.
func (*CreateAccountStatus) SetRequestedTimestamp ¶
func (s *CreateAccountStatus) SetRequestedTimestamp(v time.Time) *CreateAccountStatus
SetRequestedTimestamp sets the RequestedTimestamp field's value.
func (*CreateAccountStatus) SetState ¶
func (s *CreateAccountStatus) SetState(v string) *CreateAccountStatus
SetState sets the State field's value.
func (CreateAccountStatus) String ¶
func (s CreateAccountStatus) String() string
String returns the string representation
type CreateOrganizationInput ¶
type CreateOrganizationInput struct { // Specifies the feature set supported by the new organization. Each feature // set supports different levels of functionality. // // * CONSOLIDATED_BILLING: All member accounts have their bills consolidated // to and paid by the master account. For more information, see Consolidated // Billing (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#feature-set-cb-only) // in the AWS Organizations User Guide. // // * ALL: In addition to all the features supported by the consolidated billing // feature set, the master account can also apply any type of policy to any // member account in the organization. For more information, see All features // (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#feature-set-all) // in the AWS Organizations User Guide. FeatureSet *string `type:"string" enum:"OrganizationFeatureSet"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateOrganizationRequest
func (CreateOrganizationInput) GoString ¶
func (s CreateOrganizationInput) GoString() string
GoString returns the string representation
func (*CreateOrganizationInput) SetFeatureSet ¶
func (s *CreateOrganizationInput) SetFeatureSet(v string) *CreateOrganizationInput
SetFeatureSet sets the FeatureSet field's value.
func (CreateOrganizationInput) String ¶
func (s CreateOrganizationInput) String() string
String returns the string representation
type CreateOrganizationOutput ¶
type CreateOrganizationOutput struct { // A structure that contains details about the newly created organization. Organization *Organization `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateOrganizationResponse
func (CreateOrganizationOutput) GoString ¶
func (s CreateOrganizationOutput) GoString() string
GoString returns the string representation
func (*CreateOrganizationOutput) SetOrganization ¶
func (s *CreateOrganizationOutput) SetOrganization(v *Organization) *CreateOrganizationOutput
SetOrganization sets the Organization field's value.
func (CreateOrganizationOutput) String ¶
func (s CreateOrganizationOutput) String() string
String returns the string representation
type CreateOrganizationalUnitInput ¶
type CreateOrganizationalUnitInput struct { // The friendly name to assign to the new OU. // // Name is a required field Name *string `min:"1" type:"string" required:"true"` // The unique identifier (ID) of the parent root or OU in which you want to // create the new OU. // // The regex pattern (http://wikipedia.org/wiki/regex) for a parent ID string // requires one of the following: // // * Root: a string that begins with "r-" followed by from 4 to 32 lower-case // letters or digits. // // * Organizational unit (OU): a string that begins with "ou-" followed by // from 4 to 32 lower-case letters or digits (the ID of the root that the // OU is in) followed by a second "-" dash and from 8 to 32 additional lower-case // letters or digits. // // ParentId is a required field ParentId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateOrganizationalUnitRequest
func (CreateOrganizationalUnitInput) GoString ¶
func (s CreateOrganizationalUnitInput) GoString() string
GoString returns the string representation
func (*CreateOrganizationalUnitInput) SetName ¶
func (s *CreateOrganizationalUnitInput) SetName(v string) *CreateOrganizationalUnitInput
SetName sets the Name field's value.
func (*CreateOrganizationalUnitInput) SetParentId ¶
func (s *CreateOrganizationalUnitInput) SetParentId(v string) *CreateOrganizationalUnitInput
SetParentId sets the ParentId field's value.
func (CreateOrganizationalUnitInput) String ¶
func (s CreateOrganizationalUnitInput) String() string
String returns the string representation
func (*CreateOrganizationalUnitInput) Validate ¶
func (s *CreateOrganizationalUnitInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateOrganizationalUnitOutput ¶
type CreateOrganizationalUnitOutput struct { // A structure that contains details about the newly created OU. OrganizationalUnit *OrganizationalUnit `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateOrganizationalUnitResponse
func (CreateOrganizationalUnitOutput) GoString ¶
func (s CreateOrganizationalUnitOutput) GoString() string
GoString returns the string representation
func (*CreateOrganizationalUnitOutput) SetOrganizationalUnit ¶
func (s *CreateOrganizationalUnitOutput) SetOrganizationalUnit(v *OrganizationalUnit) *CreateOrganizationalUnitOutput
SetOrganizationalUnit sets the OrganizationalUnit field's value.
func (CreateOrganizationalUnitOutput) String ¶
func (s CreateOrganizationalUnitOutput) String() string
String returns the string representation
type CreatePolicyInput ¶
type CreatePolicyInput struct { // The policy content to add to the new policy. For example, if you create a // service control policy (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html) // (SCP), this string must be JSON text that specifies the permissions that // admins in attached accounts can delegate to their users, groups, and roles. // For more information about the SCP syntax, see Service Control Policy Syntax // (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_reference_scp-syntax.html) // in the AWS Organizations User Guide. // // Content is a required field Content *string `min:"1" type:"string" required:"true"` // An optional description to assign to the policy. // // Description is a required field Description *string `type:"string" required:"true"` // The friendly name to assign to the policy. // // The regex pattern (http://wikipedia.org/wiki/regex) that is used to validate // this parameter is a string of any of the characters in the ASCII character // range. // // Name is a required field Name *string `min:"1" type:"string" required:"true"` // The type of policy to create. // // In the current release, the only type of policy that you can create is a // service control policy (SCP). // // Type is a required field Type *string `type:"string" required:"true" enum:"PolicyType"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreatePolicyRequest
func (CreatePolicyInput) GoString ¶
func (s CreatePolicyInput) GoString() string
GoString returns the string representation
func (*CreatePolicyInput) SetContent ¶
func (s *CreatePolicyInput) SetContent(v string) *CreatePolicyInput
SetContent sets the Content field's value.
func (*CreatePolicyInput) SetDescription ¶
func (s *CreatePolicyInput) SetDescription(v string) *CreatePolicyInput
SetDescription sets the Description field's value.
func (*CreatePolicyInput) SetName ¶
func (s *CreatePolicyInput) SetName(v string) *CreatePolicyInput
SetName sets the Name field's value.
func (*CreatePolicyInput) SetType ¶
func (s *CreatePolicyInput) SetType(v string) *CreatePolicyInput
SetType sets the Type field's value.
func (CreatePolicyInput) String ¶
func (s CreatePolicyInput) String() string
String returns the string representation
func (*CreatePolicyInput) Validate ¶
func (s *CreatePolicyInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreatePolicyOutput ¶
type CreatePolicyOutput struct { // A structure that contains details about the newly created policy. Policy *Policy `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreatePolicyResponse
func (CreatePolicyOutput) GoString ¶
func (s CreatePolicyOutput) GoString() string
GoString returns the string representation
func (*CreatePolicyOutput) SetPolicy ¶
func (s *CreatePolicyOutput) SetPolicy(v *Policy) *CreatePolicyOutput
SetPolicy sets the Policy field's value.
func (CreatePolicyOutput) String ¶
func (s CreatePolicyOutput) String() string
String returns the string representation
type DeclineHandshakeInput ¶
type DeclineHandshakeInput struct { // The unique identifier (ID) of the handshake that you want to decline. You // can get the ID from the ListHandshakesForAccount operation. // // The regex pattern (http://wikipedia.org/wiki/regex) for handshake ID string // requires "h-" followed by from 8 to 32 lower-case letters or digits. // // HandshakeId is a required field HandshakeId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeclineHandshakeRequest
func (DeclineHandshakeInput) GoString ¶
func (s DeclineHandshakeInput) GoString() string
GoString returns the string representation
func (*DeclineHandshakeInput) SetHandshakeId ¶
func (s *DeclineHandshakeInput) SetHandshakeId(v string) *DeclineHandshakeInput
SetHandshakeId sets the HandshakeId field's value.
func (DeclineHandshakeInput) String ¶
func (s DeclineHandshakeInput) String() string
String returns the string representation
func (*DeclineHandshakeInput) Validate ¶
func (s *DeclineHandshakeInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeclineHandshakeOutput ¶
type DeclineHandshakeOutput struct { // A structure that contains details about the declined handshake. The state // is updated to show the value DECLINED. Handshake *Handshake `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeclineHandshakeResponse
func (DeclineHandshakeOutput) GoString ¶
func (s DeclineHandshakeOutput) GoString() string
GoString returns the string representation
func (*DeclineHandshakeOutput) SetHandshake ¶
func (s *DeclineHandshakeOutput) SetHandshake(v *Handshake) *DeclineHandshakeOutput
SetHandshake sets the Handshake field's value.
func (DeclineHandshakeOutput) String ¶
func (s DeclineHandshakeOutput) String() string
String returns the string representation
type DeleteOrganizationInput ¶
type DeleteOrganizationInput struct {
// contains filtered or unexported fields
}
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeleteOrganizationInput
func (DeleteOrganizationInput) GoString ¶
func (s DeleteOrganizationInput) GoString() string
GoString returns the string representation
func (DeleteOrganizationInput) String ¶
func (s DeleteOrganizationInput) String() string
String returns the string representation
type DeleteOrganizationOutput ¶
type DeleteOrganizationOutput struct {
// contains filtered or unexported fields
}
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeleteOrganizationOutput
func (DeleteOrganizationOutput) GoString ¶
func (s DeleteOrganizationOutput) GoString() string
GoString returns the string representation
func (DeleteOrganizationOutput) String ¶
func (s DeleteOrganizationOutput) String() string
String returns the string representation
type DeleteOrganizationalUnitInput ¶
type DeleteOrganizationalUnitInput struct { // The unique identifier (ID) of the organizational unit that you want to delete. // You can get the ID from the ListOrganizationalUnitsForParent operation. // // The regex pattern (http://wikipedia.org/wiki/regex) for an organizational // unit ID string requires "ou-" followed by from 4 to 32 lower-case letters // or digits (the ID of the root that contains the OU) followed by a second // "-" dash and from 8 to 32 additional lower-case letters or digits. // // OrganizationalUnitId is a required field OrganizationalUnitId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeleteOrganizationalUnitRequest
func (DeleteOrganizationalUnitInput) GoString ¶
func (s DeleteOrganizationalUnitInput) GoString() string
GoString returns the string representation
func (*DeleteOrganizationalUnitInput) SetOrganizationalUnitId ¶
func (s *DeleteOrganizationalUnitInput) SetOrganizationalUnitId(v string) *DeleteOrganizationalUnitInput
SetOrganizationalUnitId sets the OrganizationalUnitId field's value.
func (DeleteOrganizationalUnitInput) String ¶
func (s DeleteOrganizationalUnitInput) String() string
String returns the string representation
func (*DeleteOrganizationalUnitInput) Validate ¶
func (s *DeleteOrganizationalUnitInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteOrganizationalUnitOutput ¶
type DeleteOrganizationalUnitOutput struct {
// contains filtered or unexported fields
}
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeleteOrganizationalUnitOutput
func (DeleteOrganizationalUnitOutput) GoString ¶
func (s DeleteOrganizationalUnitOutput) GoString() string
GoString returns the string representation
func (DeleteOrganizationalUnitOutput) String ¶
func (s DeleteOrganizationalUnitOutput) String() string
String returns the string representation
type DeletePolicyInput ¶
type DeletePolicyInput struct { // The unique identifier (ID) of the policy that you want to delete. You can // get the ID from the ListPolicies or ListPoliciesForTarget operations. // // The regex pattern (http://wikipedia.org/wiki/regex) for a policy ID string // requires "p-" followed by from 8 to 128 lower-case letters or digits. // // PolicyId is a required field PolicyId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeletePolicyRequest
func (DeletePolicyInput) GoString ¶
func (s DeletePolicyInput) GoString() string
GoString returns the string representation
func (*DeletePolicyInput) SetPolicyId ¶
func (s *DeletePolicyInput) SetPolicyId(v string) *DeletePolicyInput
SetPolicyId sets the PolicyId field's value.
func (DeletePolicyInput) String ¶
func (s DeletePolicyInput) String() string
String returns the string representation
func (*DeletePolicyInput) Validate ¶
func (s *DeletePolicyInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeletePolicyOutput ¶
type DeletePolicyOutput struct {
// contains filtered or unexported fields
}
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeletePolicyOutput
func (DeletePolicyOutput) GoString ¶
func (s DeletePolicyOutput) GoString() string
GoString returns the string representation
func (DeletePolicyOutput) String ¶
func (s DeletePolicyOutput) String() string
String returns the string representation
type DescribeAccountInput ¶
type DescribeAccountInput struct { // The unique identifier (ID) of the AWS account that you want information about. // You can get the ID from the ListAccounts or ListAccountsForParent operations. // // The regex pattern (http://wikipedia.org/wiki/regex) for an account ID string // requires exactly 12 digits. // // AccountId is a required field AccountId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeAccountRequest
func (DescribeAccountInput) GoString ¶
func (s DescribeAccountInput) GoString() string
GoString returns the string representation
func (*DescribeAccountInput) SetAccountId ¶
func (s *DescribeAccountInput) SetAccountId(v string) *DescribeAccountInput
SetAccountId sets the AccountId field's value.
func (DescribeAccountInput) String ¶
func (s DescribeAccountInput) String() string
String returns the string representation
func (*DescribeAccountInput) Validate ¶
func (s *DescribeAccountInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeAccountOutput ¶
type DescribeAccountOutput struct { // A structure that contains information about the requested account. Account *Account `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeAccountResponse
func (DescribeAccountOutput) GoString ¶
func (s DescribeAccountOutput) GoString() string
GoString returns the string representation
func (*DescribeAccountOutput) SetAccount ¶
func (s *DescribeAccountOutput) SetAccount(v *Account) *DescribeAccountOutput
SetAccount sets the Account field's value.
func (DescribeAccountOutput) String ¶
func (s DescribeAccountOutput) String() string
String returns the string representation
type DescribeCreateAccountStatusInput ¶
type DescribeCreateAccountStatusInput struct { // Specifies the operationId that uniquely identifies the request. You can get // the ID from the response to an earlier CreateAccount request, or from the // ListCreateAccountStatus operation. // // The regex pattern (http://wikipedia.org/wiki/regex) for an create account // request ID string requires "car-" followed by from 8 to 32 lower-case letters // or digits. // // CreateAccountRequestId is a required field CreateAccountRequestId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeCreateAccountStatusRequest
func (DescribeCreateAccountStatusInput) GoString ¶
func (s DescribeCreateAccountStatusInput) GoString() string
GoString returns the string representation
func (*DescribeCreateAccountStatusInput) SetCreateAccountRequestId ¶
func (s *DescribeCreateAccountStatusInput) SetCreateAccountRequestId(v string) *DescribeCreateAccountStatusInput
SetCreateAccountRequestId sets the CreateAccountRequestId field's value.
func (DescribeCreateAccountStatusInput) String ¶
func (s DescribeCreateAccountStatusInput) String() string
String returns the string representation
func (*DescribeCreateAccountStatusInput) Validate ¶
func (s *DescribeCreateAccountStatusInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeCreateAccountStatusOutput ¶
type DescribeCreateAccountStatusOutput struct { // A structure that contains the current status of an account creation request. CreateAccountStatus *CreateAccountStatus `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeCreateAccountStatusResponse
func (DescribeCreateAccountStatusOutput) GoString ¶
func (s DescribeCreateAccountStatusOutput) GoString() string
GoString returns the string representation
func (*DescribeCreateAccountStatusOutput) SetCreateAccountStatus ¶
func (s *DescribeCreateAccountStatusOutput) SetCreateAccountStatus(v *CreateAccountStatus) *DescribeCreateAccountStatusOutput
SetCreateAccountStatus sets the CreateAccountStatus field's value.
func (DescribeCreateAccountStatusOutput) String ¶
func (s DescribeCreateAccountStatusOutput) String() string
String returns the string representation
type DescribeHandshakeInput ¶
type DescribeHandshakeInput struct { // The unique identifier (ID) of the handshake that you want information about. // You can get the ID from the original call to InviteAccountToOrganization, // or from a call to ListHandshakesForAccount or ListHandshakesForOrganization. // // The regex pattern (http://wikipedia.org/wiki/regex) for handshake ID string // requires "h-" followed by from 8 to 32 lower-case letters or digits. // // HandshakeId is a required field HandshakeId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeHandshakeRequest
func (DescribeHandshakeInput) GoString ¶
func (s DescribeHandshakeInput) GoString() string
GoString returns the string representation
func (*DescribeHandshakeInput) SetHandshakeId ¶
func (s *DescribeHandshakeInput) SetHandshakeId(v string) *DescribeHandshakeInput
SetHandshakeId sets the HandshakeId field's value.
func (DescribeHandshakeInput) String ¶
func (s DescribeHandshakeInput) String() string
String returns the string representation
func (*DescribeHandshakeInput) Validate ¶
func (s *DescribeHandshakeInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeHandshakeOutput ¶
type DescribeHandshakeOutput struct { // A structure that contains information about the specified handshake. Handshake *Handshake `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeHandshakeResponse
func (DescribeHandshakeOutput) GoString ¶
func (s DescribeHandshakeOutput) GoString() string
GoString returns the string representation
func (*DescribeHandshakeOutput) SetHandshake ¶
func (s *DescribeHandshakeOutput) SetHandshake(v *Handshake) *DescribeHandshakeOutput
SetHandshake sets the Handshake field's value.
func (DescribeHandshakeOutput) String ¶
func (s DescribeHandshakeOutput) String() string
String returns the string representation
type DescribeOrganizationInput ¶
type DescribeOrganizationInput struct {
// contains filtered or unexported fields
}
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeOrganizationInput
func (DescribeOrganizationInput) GoString ¶
func (s DescribeOrganizationInput) GoString() string
GoString returns the string representation
func (DescribeOrganizationInput) String ¶
func (s DescribeOrganizationInput) String() string
String returns the string representation
type DescribeOrganizationOutput ¶
type DescribeOrganizationOutput struct { // A structure that contains information about the organization. Organization *Organization `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeOrganizationResponse
func (DescribeOrganizationOutput) GoString ¶
func (s DescribeOrganizationOutput) GoString() string
GoString returns the string representation
func (*DescribeOrganizationOutput) SetOrganization ¶
func (s *DescribeOrganizationOutput) SetOrganization(v *Organization) *DescribeOrganizationOutput
SetOrganization sets the Organization field's value.
func (DescribeOrganizationOutput) String ¶
func (s DescribeOrganizationOutput) String() string
String returns the string representation
type DescribeOrganizationalUnitInput ¶
type DescribeOrganizationalUnitInput struct { // The unique identifier (ID) of the organizational unit that you want details // about. You can get the ID from the ListOrganizationalUnitsForParent operation. // // The regex pattern (http://wikipedia.org/wiki/regex) for an organizational // unit ID string requires "ou-" followed by from 4 to 32 lower-case letters // or digits (the ID of the root that contains the OU) followed by a second // "-" dash and from 8 to 32 additional lower-case letters or digits. // // OrganizationalUnitId is a required field OrganizationalUnitId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeOrganizationalUnitRequest
func (DescribeOrganizationalUnitInput) GoString ¶
func (s DescribeOrganizationalUnitInput) GoString() string
GoString returns the string representation
func (*DescribeOrganizationalUnitInput) SetOrganizationalUnitId ¶
func (s *DescribeOrganizationalUnitInput) SetOrganizationalUnitId(v string) *DescribeOrganizationalUnitInput
SetOrganizationalUnitId sets the OrganizationalUnitId field's value.
func (DescribeOrganizationalUnitInput) String ¶
func (s DescribeOrganizationalUnitInput) String() string
String returns the string representation
func (*DescribeOrganizationalUnitInput) Validate ¶
func (s *DescribeOrganizationalUnitInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeOrganizationalUnitOutput ¶
type DescribeOrganizationalUnitOutput struct { // A structure that contains details about the specified OU. OrganizationalUnit *OrganizationalUnit `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeOrganizationalUnitResponse
func (DescribeOrganizationalUnitOutput) GoString ¶
func (s DescribeOrganizationalUnitOutput) GoString() string
GoString returns the string representation
func (*DescribeOrganizationalUnitOutput) SetOrganizationalUnit ¶
func (s *DescribeOrganizationalUnitOutput) SetOrganizationalUnit(v *OrganizationalUnit) *DescribeOrganizationalUnitOutput
SetOrganizationalUnit sets the OrganizationalUnit field's value.
func (DescribeOrganizationalUnitOutput) String ¶
func (s DescribeOrganizationalUnitOutput) String() string
String returns the string representation
type DescribePolicyInput ¶
type DescribePolicyInput struct { // The unique identifier (ID) of the policy that you want details about. You // can get the ID from the ListPolicies or ListPoliciesForTarget operations. // // The regex pattern (http://wikipedia.org/wiki/regex) for a policy ID string // requires "p-" followed by from 8 to 128 lower-case letters or digits. // // PolicyId is a required field PolicyId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribePolicyRequest
func (DescribePolicyInput) GoString ¶
func (s DescribePolicyInput) GoString() string
GoString returns the string representation
func (*DescribePolicyInput) SetPolicyId ¶
func (s *DescribePolicyInput) SetPolicyId(v string) *DescribePolicyInput
SetPolicyId sets the PolicyId field's value.
func (DescribePolicyInput) String ¶
func (s DescribePolicyInput) String() string
String returns the string representation
func (*DescribePolicyInput) Validate ¶
func (s *DescribePolicyInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribePolicyOutput ¶
type DescribePolicyOutput struct { // A structure that contains details about the specified policy. Policy *Policy `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribePolicyResponse
func (DescribePolicyOutput) GoString ¶
func (s DescribePolicyOutput) GoString() string
GoString returns the string representation
func (*DescribePolicyOutput) SetPolicy ¶
func (s *DescribePolicyOutput) SetPolicy(v *Policy) *DescribePolicyOutput
SetPolicy sets the Policy field's value.
func (DescribePolicyOutput) String ¶
func (s DescribePolicyOutput) String() string
String returns the string representation
type DetachPolicyInput ¶
type DetachPolicyInput struct { // The unique identifier (ID) of the policy you want to detach. You can get // the ID from the ListPolicies or ListPoliciesForTarget operations. // // The regex pattern (http://wikipedia.org/wiki/regex) for a policy ID string // requires "p-" followed by from 8 to 128 lower-case letters or digits. // // PolicyId is a required field PolicyId *string `type:"string" required:"true"` // The unique identifier (ID) of the root, OU, or account from which you want // to detach the policy. You can get the ID from the ListRoots, ListOrganizationalUnitsForParent, // or ListAccounts operations. // // The regex pattern (http://wikipedia.org/wiki/regex) for a target ID string // requires one of the following: // // * Root: a string that begins with "r-" followed by from 4 to 32 lower-case // letters or digits. // // * Account: a string that consists of exactly 12 digits. // // * Organizational unit (OU): a string that begins with "ou-" followed by // from 4 to 32 lower-case letters or digits (the ID of the root that the // OU is in) followed by a second "-" dash and from 8 to 32 additional lower-case // letters or digits. // // TargetId is a required field TargetId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DetachPolicyRequest
func (DetachPolicyInput) GoString ¶
func (s DetachPolicyInput) GoString() string
GoString returns the string representation
func (*DetachPolicyInput) SetPolicyId ¶
func (s *DetachPolicyInput) SetPolicyId(v string) *DetachPolicyInput
SetPolicyId sets the PolicyId field's value.
func (*DetachPolicyInput) SetTargetId ¶
func (s *DetachPolicyInput) SetTargetId(v string) *DetachPolicyInput
SetTargetId sets the TargetId field's value.
func (DetachPolicyInput) String ¶
func (s DetachPolicyInput) String() string
String returns the string representation
func (*DetachPolicyInput) Validate ¶
func (s *DetachPolicyInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DetachPolicyOutput ¶
type DetachPolicyOutput struct {
// contains filtered or unexported fields
}
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DetachPolicyOutput
func (DetachPolicyOutput) GoString ¶
func (s DetachPolicyOutput) GoString() string
GoString returns the string representation
func (DetachPolicyOutput) String ¶
func (s DetachPolicyOutput) String() string
String returns the string representation
type DisablePolicyTypeInput ¶
type DisablePolicyTypeInput struct { // The policy type that you want to disable in this root. // // PolicyType is a required field PolicyType *string `type:"string" required:"true" enum:"PolicyType"` // The unique identifier (ID) of the root in which you want to disable a policy // type. You can get the ID from the ListPolicies operation. // // The regex pattern (http://wikipedia.org/wiki/regex) for a root ID string // requires "r-" followed by from 4 to 32 lower-case letters or digits. // // RootId is a required field RootId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DisablePolicyTypeRequest
func (DisablePolicyTypeInput) GoString ¶
func (s DisablePolicyTypeInput) GoString() string
GoString returns the string representation
func (*DisablePolicyTypeInput) SetPolicyType ¶
func (s *DisablePolicyTypeInput) SetPolicyType(v string) *DisablePolicyTypeInput
SetPolicyType sets the PolicyType field's value.
func (*DisablePolicyTypeInput) SetRootId ¶
func (s *DisablePolicyTypeInput) SetRootId(v string) *DisablePolicyTypeInput
SetRootId sets the RootId field's value.
func (DisablePolicyTypeInput) String ¶
func (s DisablePolicyTypeInput) String() string
String returns the string representation
func (*DisablePolicyTypeInput) Validate ¶
func (s *DisablePolicyTypeInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DisablePolicyTypeOutput ¶
type DisablePolicyTypeOutput struct { // A structure that shows the root with the updated list of enabled policy types. Root *Root `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DisablePolicyTypeResponse
func (DisablePolicyTypeOutput) GoString ¶
func (s DisablePolicyTypeOutput) GoString() string
GoString returns the string representation
func (*DisablePolicyTypeOutput) SetRoot ¶
func (s *DisablePolicyTypeOutput) SetRoot(v *Root) *DisablePolicyTypeOutput
SetRoot sets the Root field's value.
func (DisablePolicyTypeOutput) String ¶
func (s DisablePolicyTypeOutput) String() string
String returns the string representation
type EnableAllFeaturesInput ¶
type EnableAllFeaturesInput struct {
// contains filtered or unexported fields
}
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/EnableAllFeaturesRequest
func (EnableAllFeaturesInput) GoString ¶
func (s EnableAllFeaturesInput) GoString() string
GoString returns the string representation
func (EnableAllFeaturesInput) String ¶
func (s EnableAllFeaturesInput) String() string
String returns the string representation
type EnableAllFeaturesOutput ¶
type EnableAllFeaturesOutput struct { // A structure that contains details about the handshake created to support // this request to enable all features in the organization. Handshake *Handshake `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/EnableAllFeaturesResponse
func (EnableAllFeaturesOutput) GoString ¶
func (s EnableAllFeaturesOutput) GoString() string
GoString returns the string representation
func (*EnableAllFeaturesOutput) SetHandshake ¶
func (s *EnableAllFeaturesOutput) SetHandshake(v *Handshake) *EnableAllFeaturesOutput
SetHandshake sets the Handshake field's value.
func (EnableAllFeaturesOutput) String ¶
func (s EnableAllFeaturesOutput) String() string
String returns the string representation
type EnablePolicyTypeInput ¶
type EnablePolicyTypeInput struct { // The policy type that you want to enable. // // PolicyType is a required field PolicyType *string `type:"string" required:"true" enum:"PolicyType"` // The unique identifier (ID) of the root in which you want to enable a policy // type. You can get the ID from the ListRoots operation. // // The regex pattern (http://wikipedia.org/wiki/regex) for a root ID string // requires "r-" followed by from 4 to 32 lower-case letters or digits. // // RootId is a required field RootId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/EnablePolicyTypeRequest
func (EnablePolicyTypeInput) GoString ¶
func (s EnablePolicyTypeInput) GoString() string
GoString returns the string representation
func (*EnablePolicyTypeInput) SetPolicyType ¶
func (s *EnablePolicyTypeInput) SetPolicyType(v string) *EnablePolicyTypeInput
SetPolicyType sets the PolicyType field's value.
func (*EnablePolicyTypeInput) SetRootId ¶
func (s *EnablePolicyTypeInput) SetRootId(v string) *EnablePolicyTypeInput
SetRootId sets the RootId field's value.
func (EnablePolicyTypeInput) String ¶
func (s EnablePolicyTypeInput) String() string
String returns the string representation
func (*EnablePolicyTypeInput) Validate ¶
func (s *EnablePolicyTypeInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type EnablePolicyTypeOutput ¶
type EnablePolicyTypeOutput struct { // A structure that shows the root with the updated list of enabled policy types. Root *Root `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/EnablePolicyTypeResponse
func (EnablePolicyTypeOutput) GoString ¶
func (s EnablePolicyTypeOutput) GoString() string
GoString returns the string representation
func (*EnablePolicyTypeOutput) SetRoot ¶
func (s *EnablePolicyTypeOutput) SetRoot(v *Root) *EnablePolicyTypeOutput
SetRoot sets the Root field's value.
func (EnablePolicyTypeOutput) String ¶
func (s EnablePolicyTypeOutput) String() string
String returns the string representation
type Handshake ¶
type Handshake struct { // The type of handshake, indicating what action occurs when the recipient accepts // the handshake. Action *string `type:"string" enum:"ActionType"` // The Amazon Resource Name (ARN) of a handshake. // // For more information about ARNs in Organizations, see ARN Formats Supported // by Organizations (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_permissions.html#orgs-permissions-arns) // in the AWS Organizations User Guide. Arn *string `type:"string"` // The date and time that the handshake expires. If the recipient of the handshake // request fails to respond before the specified date and time, the handshake // becomes inactive and is no longer valid. ExpirationTimestamp *time.Time `type:"timestamp" timestampFormat:"unix"` // The unique identifier (ID) of a handshake. The originating account creates // the ID when it initiates the handshake. // // The regex pattern (http://wikipedia.org/wiki/regex) for handshake ID string // requires "h-" followed by from 8 to 32 lower-case letters or digits. Id *string `type:"string"` // Information about the two accounts that are participating in the handshake. Parties []*HandshakeParty `type:"list"` // The date and time that the handshake request was made. RequestedTimestamp *time.Time `type:"timestamp" timestampFormat:"unix"` // Additional information that is needed to process the handshake. Resources []*HandshakeResource `type:"list"` // The current state of the handshake. Use the state to trace the flow of the // handshake through the process from its creation to its acceptance. The meaning // of each of the valid values is as follows: // // * REQUESTED: This handshake was sent to multiple recipients (applicable // to only some handshake types) and not all recipients have responded yet. // The request stays in this state until all recipients respond. // // * OPEN: This handshake was sent to multiple recipients (applicable to // only some policy types) and all recipients have responded, allowing the // originator to complete the handshake action. // // * CANCELED: This handshake is no longer active because it was canceled // by the originating account. // // * ACCEPTED: This handshake is complete because it has been accepted by // the recipient. // // * DECLINED: This handshake is no longer active because it was declined // by the recipient account. // // * EXPIRED: This handshake is no longer active because the originator did // not receive a response of any kind from the recipient before the expiration // time (15 days). State *string `type:"string" enum:"HandshakeState"` // contains filtered or unexported fields }
Contains information that must be exchanged to securely establish a relationship between two accounts (an originator and a recipient). For example, when a master account (the originator) invites another account (the recipient) to join its organization, the two accounts exchange information as a series of handshake requests and responses.
Note: Handshakes that are CANCELED, ACCEPTED, or DECLINED show up in lists for only 30 days after entering that state After that they are deleted. Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/Handshake
func (*Handshake) SetExpirationTimestamp ¶
SetExpirationTimestamp sets the ExpirationTimestamp field's value.
func (*Handshake) SetParties ¶
func (s *Handshake) SetParties(v []*HandshakeParty) *Handshake
SetParties sets the Parties field's value.
func (*Handshake) SetRequestedTimestamp ¶
SetRequestedTimestamp sets the RequestedTimestamp field's value.
func (*Handshake) SetResources ¶
func (s *Handshake) SetResources(v []*HandshakeResource) *Handshake
SetResources sets the Resources field's value.
type HandshakeFilter ¶
type HandshakeFilter struct { // Specifies the type of handshake action. // // If you specify ActionType, you cannot also specify ParentHandshakeId. ActionType *string `type:"string" enum:"ActionType"` // Specifies the parent handshake. Only used for handshake types that are a // child of another type. // // If you specify ParentHandshakeId, you cannot also specify ActionType. // // The regex pattern (http://wikipedia.org/wiki/regex) for handshake ID string // requires "h-" followed by from 8 to 32 lower-case letters or digits. ParentHandshakeId *string `type:"string"` // contains filtered or unexported fields }
Specifies the criteria that are used to select the handshakes for the operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/HandshakeFilter
func (HandshakeFilter) GoString ¶
func (s HandshakeFilter) GoString() string
GoString returns the string representation
func (*HandshakeFilter) SetActionType ¶
func (s *HandshakeFilter) SetActionType(v string) *HandshakeFilter
SetActionType sets the ActionType field's value.
func (*HandshakeFilter) SetParentHandshakeId ¶
func (s *HandshakeFilter) SetParentHandshakeId(v string) *HandshakeFilter
SetParentHandshakeId sets the ParentHandshakeId field's value.
func (HandshakeFilter) String ¶
func (s HandshakeFilter) String() string
String returns the string representation
type HandshakeParty ¶
type HandshakeParty struct { // The unique identifier (ID) for the party. // // The regex pattern (http://wikipedia.org/wiki/regex) for handshake ID string // requires "h-" followed by from 8 to 32 lower-case letters or digits. Id *string `min:"1" type:"string"` // The type of party. Type *string `type:"string" enum:"HandshakePartyType"` // contains filtered or unexported fields }
Identifies a participant in a handshake. Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/HandshakeParty
func (HandshakeParty) GoString ¶
func (s HandshakeParty) GoString() string
GoString returns the string representation
func (*HandshakeParty) SetId ¶
func (s *HandshakeParty) SetId(v string) *HandshakeParty
SetId sets the Id field's value.
func (*HandshakeParty) SetType ¶
func (s *HandshakeParty) SetType(v string) *HandshakeParty
SetType sets the Type field's value.
func (HandshakeParty) String ¶
func (s HandshakeParty) String() string
String returns the string representation
func (*HandshakeParty) Validate ¶
func (s *HandshakeParty) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type HandshakeResource ¶
type HandshakeResource struct { // When needed, contains an additional array of HandshakeResource objects. Resources []*HandshakeResource `type:"list"` // The type of information being passed, specifying how the value is to be interpreted // by the other party: // // * ACCOUNT - Specifies an AWS account ID number. // // * ORGANIZATION - Specifies an organization ID number. // // * EMAIL - Specifies the email address that is associated with the account // that receives the handshake. // // * OWNER_EMAIL - Specifies the email address associated with the master // account. Included as information about an organization. // // * OWNER_NAME - Specifies the name associated with the master account. // Included as information about an organization. // // * NOTES - Additional text provided by the handshake initiator and intended // for the recipient to read. Type *string `type:"string" enum:"HandshakeResourceType"` // The information that is passed to the other party in the handshake. The format // of the value string must match the requirements of the specified type. Value *string `type:"string"` // contains filtered or unexported fields }
Contains additional data that is needed to process a handshake. Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/HandshakeResource
func (HandshakeResource) GoString ¶
func (s HandshakeResource) GoString() string
GoString returns the string representation
func (*HandshakeResource) SetResources ¶
func (s *HandshakeResource) SetResources(v []*HandshakeResource) *HandshakeResource
SetResources sets the Resources field's value.
func (*HandshakeResource) SetType ¶
func (s *HandshakeResource) SetType(v string) *HandshakeResource
SetType sets the Type field's value.
func (*HandshakeResource) SetValue ¶
func (s *HandshakeResource) SetValue(v string) *HandshakeResource
SetValue sets the Value field's value.
func (HandshakeResource) String ¶
func (s HandshakeResource) String() string
String returns the string representation
type InviteAccountToOrganizationInput ¶
type InviteAccountToOrganizationInput struct { // Additional information that you want to include in the generated email to // the recipient account owner. Notes *string `type:"string"` // The identifier (ID) of the AWS account that you want to invite to join your // organization. This is a JSON object that contains the following elements: // // { "Type": "ACCOUNT", "Id": "<account id number>" } // // If you use the AWS CLI, you can submit this as a single string, similar to // the following example: // // --target id=123456789012,type=ACCOUNT // // If you specify "Type": "ACCOUNT", then you must provide the AWS account ID // number as the Id. If you specify "Type": "EMAIL", then you must specify the // email address that is associated with the account. // // --target id=bill@example.com,type=EMAIL // // Target is a required field Target *HandshakeParty `type:"structure" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/InviteAccountToOrganizationRequest
func (InviteAccountToOrganizationInput) GoString ¶
func (s InviteAccountToOrganizationInput) GoString() string
GoString returns the string representation
func (*InviteAccountToOrganizationInput) SetNotes ¶
func (s *InviteAccountToOrganizationInput) SetNotes(v string) *InviteAccountToOrganizationInput
SetNotes sets the Notes field's value.
func (*InviteAccountToOrganizationInput) SetTarget ¶
func (s *InviteAccountToOrganizationInput) SetTarget(v *HandshakeParty) *InviteAccountToOrganizationInput
SetTarget sets the Target field's value.
func (InviteAccountToOrganizationInput) String ¶
func (s InviteAccountToOrganizationInput) String() string
String returns the string representation
func (*InviteAccountToOrganizationInput) Validate ¶
func (s *InviteAccountToOrganizationInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type InviteAccountToOrganizationOutput ¶
type InviteAccountToOrganizationOutput struct { // A structure that contains details about the handshake that is created to // support this invitation request. Handshake *Handshake `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/InviteAccountToOrganizationResponse
func (InviteAccountToOrganizationOutput) GoString ¶
func (s InviteAccountToOrganizationOutput) GoString() string
GoString returns the string representation
func (*InviteAccountToOrganizationOutput) SetHandshake ¶
func (s *InviteAccountToOrganizationOutput) SetHandshake(v *Handshake) *InviteAccountToOrganizationOutput
SetHandshake sets the Handshake field's value.
func (InviteAccountToOrganizationOutput) String ¶
func (s InviteAccountToOrganizationOutput) String() string
String returns the string representation
type LeaveOrganizationInput ¶
type LeaveOrganizationInput struct {
// contains filtered or unexported fields
}
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/LeaveOrganizationInput
func (LeaveOrganizationInput) GoString ¶
func (s LeaveOrganizationInput) GoString() string
GoString returns the string representation
func (LeaveOrganizationInput) String ¶
func (s LeaveOrganizationInput) String() string
String returns the string representation
type LeaveOrganizationOutput ¶
type LeaveOrganizationOutput struct {
// contains filtered or unexported fields
}
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/LeaveOrganizationOutput
func (LeaveOrganizationOutput) GoString ¶
func (s LeaveOrganizationOutput) GoString() string
GoString returns the string representation
func (LeaveOrganizationOutput) String ¶
func (s LeaveOrganizationOutput) String() string
String returns the string representation
type ListAccountsForParentInput ¶
type ListAccountsForParentInput struct { // (Optional) Use this to limit the number of results you want included in the // response. If you do not include this parameter, it defaults to a value that // is specific to the operation. If additional items exist beyond the maximum // you specify, the NextToken response element is present and has a value (is // not null). Include that value as the NextToken request parameter in the next // call to the operation to get the next part of the results. Note that Organizations // might return fewer results than the maximum even when there are more results // available. You should check NextToken after every operation to ensure that // you receive all of the results. MaxResults *int64 `min:"1" type:"integer"` // Use this parameter if you receive a NextToken response in a previous request // that indicates that there is more output available. Set it to the value of // the previous call's NextToken response to indicate where the output should // continue from. NextToken *string `type:"string"` // The unique identifier (ID) for the parent root or organization unit (OU) // whose accounts you want to list. // // ParentId is a required field ParentId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListAccountsForParentRequest
func (ListAccountsForParentInput) GoString ¶
func (s ListAccountsForParentInput) GoString() string
GoString returns the string representation
func (*ListAccountsForParentInput) SetMaxResults ¶
func (s *ListAccountsForParentInput) SetMaxResults(v int64) *ListAccountsForParentInput
SetMaxResults sets the MaxResults field's value.
func (*ListAccountsForParentInput) SetNextToken ¶
func (s *ListAccountsForParentInput) SetNextToken(v string) *ListAccountsForParentInput
SetNextToken sets the NextToken field's value.
func (*ListAccountsForParentInput) SetParentId ¶
func (s *ListAccountsForParentInput) SetParentId(v string) *ListAccountsForParentInput
SetParentId sets the ParentId field's value.
func (ListAccountsForParentInput) String ¶
func (s ListAccountsForParentInput) String() string
String returns the string representation
func (*ListAccountsForParentInput) Validate ¶
func (s *ListAccountsForParentInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListAccountsForParentOutput ¶
type ListAccountsForParentOutput struct { // A list of the accounts in the specified root or OU. Accounts []*Account `type:"list"` // If present, this value indicates that there is more output available than // is included in the current response. Use this value in the NextToken request // parameter in a subsequent call to the operation to get the next part of the // output. You should repeat this until the NextToken response element comes // back as null. NextToken *string `type:"string"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListAccountsForParentResponse
func (ListAccountsForParentOutput) GoString ¶
func (s ListAccountsForParentOutput) GoString() string
GoString returns the string representation
func (*ListAccountsForParentOutput) SetAccounts ¶
func (s *ListAccountsForParentOutput) SetAccounts(v []*Account) *ListAccountsForParentOutput
SetAccounts sets the Accounts field's value.
func (*ListAccountsForParentOutput) SetNextToken ¶
func (s *ListAccountsForParentOutput) SetNextToken(v string) *ListAccountsForParentOutput
SetNextToken sets the NextToken field's value.
func (ListAccountsForParentOutput) String ¶
func (s ListAccountsForParentOutput) String() string
String returns the string representation
type ListAccountsInput ¶
type ListAccountsInput struct { // (Optional) Use this to limit the number of results you want included in the // response. If you do not include this parameter, it defaults to a value that // is specific to the operation. If additional items exist beyond the maximum // you specify, the NextToken response element is present and has a value (is // not null). Include that value as the NextToken request parameter in the next // call to the operation to get the next part of the results. Note that Organizations // might return fewer results than the maximum even when there are more results // available. You should check NextToken after every operation to ensure that // you receive all of the results. MaxResults *int64 `min:"1" type:"integer"` // Use this parameter if you receive a NextToken response in a previous request // that indicates that there is more output available. Set it to the value of // the previous call's NextToken response to indicate where the output should // continue from. NextToken *string `type:"string"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListAccountsRequest
func (ListAccountsInput) GoString ¶
func (s ListAccountsInput) GoString() string
GoString returns the string representation
func (*ListAccountsInput) SetMaxResults ¶
func (s *ListAccountsInput) SetMaxResults(v int64) *ListAccountsInput
SetMaxResults sets the MaxResults field's value.
func (*ListAccountsInput) SetNextToken ¶
func (s *ListAccountsInput) SetNextToken(v string) *ListAccountsInput
SetNextToken sets the NextToken field's value.
func (ListAccountsInput) String ¶
func (s ListAccountsInput) String() string
String returns the string representation
func (*ListAccountsInput) Validate ¶
func (s *ListAccountsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListAccountsOutput ¶
type ListAccountsOutput struct { // A list of objects in the organization. Accounts []*Account `type:"list"` // If present, this value indicates that there is more output available than // is included in the current response. Use this value in the NextToken request // parameter in a subsequent call to the operation to get the next part of the // output. You should repeat this until the NextToken response element comes // back as null. NextToken *string `type:"string"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListAccountsResponse
func (ListAccountsOutput) GoString ¶
func (s ListAccountsOutput) GoString() string
GoString returns the string representation
func (*ListAccountsOutput) SetAccounts ¶
func (s *ListAccountsOutput) SetAccounts(v []*Account) *ListAccountsOutput
SetAccounts sets the Accounts field's value.
func (*ListAccountsOutput) SetNextToken ¶
func (s *ListAccountsOutput) SetNextToken(v string) *ListAccountsOutput
SetNextToken sets the NextToken field's value.
func (ListAccountsOutput) String ¶
func (s ListAccountsOutput) String() string
String returns the string representation
type ListChildrenInput ¶
type ListChildrenInput struct { // Filters the output to include only the specified child type. // // ChildType is a required field ChildType *string `type:"string" required:"true" enum:"ChildType"` // (Optional) Use this to limit the number of results you want included in the // response. If you do not include this parameter, it defaults to a value that // is specific to the operation. If additional items exist beyond the maximum // you specify, the NextToken response element is present and has a value (is // not null). Include that value as the NextToken request parameter in the next // call to the operation to get the next part of the results. Note that Organizations // might return fewer results than the maximum even when there are more results // available. You should check NextToken after every operation to ensure that // you receive all of the results. MaxResults *int64 `min:"1" type:"integer"` // Use this parameter if you receive a NextToken response in a previous request // that indicates that there is more output available. Set it to the value of // the previous call's NextToken response to indicate where the output should // continue from. NextToken *string `type:"string"` // The unique identifier (ID) for the parent root or OU whose children you want // to list. // // The regex pattern (http://wikipedia.org/wiki/regex) for a parent ID string // requires one of the following: // // * Root: a string that begins with "r-" followed by from 4 to 32 lower-case // letters or digits. // // * Organizational unit (OU): a string that begins with "ou-" followed by // from 4 to 32 lower-case letters or digits (the ID of the root that the // OU is in) followed by a second "-" dash and from 8 to 32 additional lower-case // letters or digits. // // ParentId is a required field ParentId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListChildrenRequest
func (ListChildrenInput) GoString ¶
func (s ListChildrenInput) GoString() string
GoString returns the string representation
func (*ListChildrenInput) SetChildType ¶
func (s *ListChildrenInput) SetChildType(v string) *ListChildrenInput
SetChildType sets the ChildType field's value.
func (*ListChildrenInput) SetMaxResults ¶
func (s *ListChildrenInput) SetMaxResults(v int64) *ListChildrenInput
SetMaxResults sets the MaxResults field's value.
func (*ListChildrenInput) SetNextToken ¶
func (s *ListChildrenInput) SetNextToken(v string) *ListChildrenInput
SetNextToken sets the NextToken field's value.
func (*ListChildrenInput) SetParentId ¶
func (s *ListChildrenInput) SetParentId(v string) *ListChildrenInput
SetParentId sets the ParentId field's value.
func (ListChildrenInput) String ¶
func (s ListChildrenInput) String() string
String returns the string representation
func (*ListChildrenInput) Validate ¶
func (s *ListChildrenInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListChildrenOutput ¶
type ListChildrenOutput struct { // The list of children of the specified parent container. Children []*Child `type:"list"` // If present, this value indicates that there is more output available than // is included in the current response. Use this value in the NextToken request // parameter in a subsequent call to the operation to get the next part of the // output. You should repeat this until the NextToken response element comes // back as null. NextToken *string `type:"string"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListChildrenResponse
func (ListChildrenOutput) GoString ¶
func (s ListChildrenOutput) GoString() string
GoString returns the string representation
func (*ListChildrenOutput) SetChildren ¶
func (s *ListChildrenOutput) SetChildren(v []*Child) *ListChildrenOutput
SetChildren sets the Children field's value.
func (*ListChildrenOutput) SetNextToken ¶
func (s *ListChildrenOutput) SetNextToken(v string) *ListChildrenOutput
SetNextToken sets the NextToken field's value.
func (ListChildrenOutput) String ¶
func (s ListChildrenOutput) String() string
String returns the string representation
type ListCreateAccountStatusInput ¶
type ListCreateAccountStatusInput struct { // (Optional) Use this to limit the number of results you want included in the // response. If you do not include this parameter, it defaults to a value that // is specific to the operation. If additional items exist beyond the maximum // you specify, the NextToken response element is present and has a value (is // not null). Include that value as the NextToken request parameter in the next // call to the operation to get the next part of the results. Note that Organizations // might return fewer results than the maximum even when there are more results // available. You should check NextToken after every operation to ensure that // you receive all of the results. MaxResults *int64 `min:"1" type:"integer"` // Use this parameter if you receive a NextToken response in a previous request // that indicates that there is more output available. Set it to the value of // the previous call's NextToken response to indicate where the output should // continue from. NextToken *string `type:"string"` // A list of one or more states that you want included in the response. If this // parameter is not present, then all requests are included in the response. States []*string `type:"list"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListCreateAccountStatusRequest
func (ListCreateAccountStatusInput) GoString ¶
func (s ListCreateAccountStatusInput) GoString() string
GoString returns the string representation
func (*ListCreateAccountStatusInput) SetMaxResults ¶
func (s *ListCreateAccountStatusInput) SetMaxResults(v int64) *ListCreateAccountStatusInput
SetMaxResults sets the MaxResults field's value.
func (*ListCreateAccountStatusInput) SetNextToken ¶
func (s *ListCreateAccountStatusInput) SetNextToken(v string) *ListCreateAccountStatusInput
SetNextToken sets the NextToken field's value.
func (*ListCreateAccountStatusInput) SetStates ¶
func (s *ListCreateAccountStatusInput) SetStates(v []*string) *ListCreateAccountStatusInput
SetStates sets the States field's value.
func (ListCreateAccountStatusInput) String ¶
func (s ListCreateAccountStatusInput) String() string
String returns the string representation
func (*ListCreateAccountStatusInput) Validate ¶
func (s *ListCreateAccountStatusInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListCreateAccountStatusOutput ¶
type ListCreateAccountStatusOutput struct { // A list of objects with details about the requests. Certain elements, such // as the accountId number, are present in the output only after the account // has been successfully created. CreateAccountStatuses []*CreateAccountStatus `type:"list"` // If present, this value indicates that there is more output available than // is included in the current response. Use this value in the NextToken request // parameter in a subsequent call to the operation to get the next part of the // output. You should repeat this until the NextToken response element comes // back as null. NextToken *string `type:"string"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListCreateAccountStatusResponse
func (ListCreateAccountStatusOutput) GoString ¶
func (s ListCreateAccountStatusOutput) GoString() string
GoString returns the string representation
func (*ListCreateAccountStatusOutput) SetCreateAccountStatuses ¶
func (s *ListCreateAccountStatusOutput) SetCreateAccountStatuses(v []*CreateAccountStatus) *ListCreateAccountStatusOutput
SetCreateAccountStatuses sets the CreateAccountStatuses field's value.
func (*ListCreateAccountStatusOutput) SetNextToken ¶
func (s *ListCreateAccountStatusOutput) SetNextToken(v string) *ListCreateAccountStatusOutput
SetNextToken sets the NextToken field's value.
func (ListCreateAccountStatusOutput) String ¶
func (s ListCreateAccountStatusOutput) String() string
String returns the string representation
type ListHandshakesForAccountInput ¶
type ListHandshakesForAccountInput struct { // Filters the handshakes that you want included in the response. The default // is all types. Use the ActionType element to limit the output to only a specified // type, such as INVITE, ENABLE-FULL-CONTROL, or APPROVE-FULL-CONTROL. Alternatively, // for the ENABLE-FULL-CONTROL handshake that generates a separate child handshake // for each member account, you can specify ParentHandshakeId to see only the // handshakes that were generated by that parent request. Filter *HandshakeFilter `type:"structure"` // (Optional) Use this to limit the number of results you want included in the // response. If you do not include this parameter, it defaults to a value that // is specific to the operation. If additional items exist beyond the maximum // you specify, the NextToken response element is present and has a value (is // not null). Include that value as the NextToken request parameter in the next // call to the operation to get the next part of the results. Note that Organizations // might return fewer results than the maximum even when there are more results // available. You should check NextToken after every operation to ensure that // you receive all of the results. MaxResults *int64 `min:"1" type:"integer"` // Use this parameter if you receive a NextToken response in a previous request // that indicates that there is more output available. Set it to the value of // the previous call's NextToken response to indicate where the output should // continue from. NextToken *string `type:"string"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListHandshakesForAccountRequest
func (ListHandshakesForAccountInput) GoString ¶
func (s ListHandshakesForAccountInput) GoString() string
GoString returns the string representation
func (*ListHandshakesForAccountInput) SetFilter ¶
func (s *ListHandshakesForAccountInput) SetFilter(v *HandshakeFilter) *ListHandshakesForAccountInput
SetFilter sets the Filter field's value.
func (*ListHandshakesForAccountInput) SetMaxResults ¶
func (s *ListHandshakesForAccountInput) SetMaxResults(v int64) *ListHandshakesForAccountInput
SetMaxResults sets the MaxResults field's value.
func (*ListHandshakesForAccountInput) SetNextToken ¶
func (s *ListHandshakesForAccountInput) SetNextToken(v string) *ListHandshakesForAccountInput
SetNextToken sets the NextToken field's value.
func (ListHandshakesForAccountInput) String ¶
func (s ListHandshakesForAccountInput) String() string
String returns the string representation
func (*ListHandshakesForAccountInput) Validate ¶
func (s *ListHandshakesForAccountInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListHandshakesForAccountOutput ¶
type ListHandshakesForAccountOutput struct { // A list of Handshake objects with details about each of the handshakes that // is associated with the specified account. Handshakes []*Handshake `type:"list"` // If present, this value indicates that there is more output available than // is included in the current response. Use this value in the NextToken request // parameter in a subsequent call to the operation to get the next part of the // output. You should repeat this until the NextToken response element comes // back as null. NextToken *string `type:"string"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListHandshakesForAccountResponse
func (ListHandshakesForAccountOutput) GoString ¶
func (s ListHandshakesForAccountOutput) GoString() string
GoString returns the string representation
func (*ListHandshakesForAccountOutput) SetHandshakes ¶
func (s *ListHandshakesForAccountOutput) SetHandshakes(v []*Handshake) *ListHandshakesForAccountOutput
SetHandshakes sets the Handshakes field's value.
func (*ListHandshakesForAccountOutput) SetNextToken ¶
func (s *ListHandshakesForAccountOutput) SetNextToken(v string) *ListHandshakesForAccountOutput
SetNextToken sets the NextToken field's value.
func (ListHandshakesForAccountOutput) String ¶
func (s ListHandshakesForAccountOutput) String() string
String returns the string representation
type ListHandshakesForOrganizationInput ¶
type ListHandshakesForOrganizationInput struct { // A filter of the handshakes that you want included in the response. The default // is all types. Use the ActionType element to limit the output to only a specified // type, such as INVITE, ENABLE-ALL-FEATURES, or APPROVE-ALL-FEATURES. Alternatively, // for the ENABLE-ALL-FEATURES handshake that generates a separate child handshake // for each member account, you can specify the ParentHandshakeId to see only // the handshakes that were generated by that parent request. Filter *HandshakeFilter `type:"structure"` // (Optional) Use this to limit the number of results you want included in the // response. If you do not include this parameter, it defaults to a value that // is specific to the operation. If additional items exist beyond the maximum // you specify, the NextToken response element is present and has a value (is // not null). Include that value as the NextToken request parameter in the next // call to the operation to get the next part of the results. Note that Organizations // might return fewer results than the maximum even when there are more results // available. You should check NextToken after every operation to ensure that // you receive all of the results. MaxResults *int64 `min:"1" type:"integer"` // Use this parameter if you receive a NextToken response in a previous request // that indicates that there is more output available. Set it to the value of // the previous call's NextToken response to indicate where the output should // continue from. NextToken *string `type:"string"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListHandshakesForOrganizationRequest
func (ListHandshakesForOrganizationInput) GoString ¶
func (s ListHandshakesForOrganizationInput) GoString() string
GoString returns the string representation
func (*ListHandshakesForOrganizationInput) SetFilter ¶
func (s *ListHandshakesForOrganizationInput) SetFilter(v *HandshakeFilter) *ListHandshakesForOrganizationInput
SetFilter sets the Filter field's value.
func (*ListHandshakesForOrganizationInput) SetMaxResults ¶
func (s *ListHandshakesForOrganizationInput) SetMaxResults(v int64) *ListHandshakesForOrganizationInput
SetMaxResults sets the MaxResults field's value.
func (*ListHandshakesForOrganizationInput) SetNextToken ¶
func (s *ListHandshakesForOrganizationInput) SetNextToken(v string) *ListHandshakesForOrganizationInput
SetNextToken sets the NextToken field's value.
func (ListHandshakesForOrganizationInput) String ¶
func (s ListHandshakesForOrganizationInput) String() string
String returns the string representation
func (*ListHandshakesForOrganizationInput) Validate ¶
func (s *ListHandshakesForOrganizationInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListHandshakesForOrganizationOutput ¶
type ListHandshakesForOrganizationOutput struct { // A list of Handshake objects with details about each of the handshakes that // are associated with an organization. Handshakes []*Handshake `type:"list"` // If present, this value indicates that there is more output available than // is included in the current response. Use this value in the NextToken request // parameter in a subsequent call to the operation to get the next part of the // output. You should repeat this until the NextToken response element comes // back as null. NextToken *string `type:"string"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListHandshakesForOrganizationResponse
func (ListHandshakesForOrganizationOutput) GoString ¶
func (s ListHandshakesForOrganizationOutput) GoString() string
GoString returns the string representation
func (*ListHandshakesForOrganizationOutput) SetHandshakes ¶
func (s *ListHandshakesForOrganizationOutput) SetHandshakes(v []*Handshake) *ListHandshakesForOrganizationOutput
SetHandshakes sets the Handshakes field's value.
func (*ListHandshakesForOrganizationOutput) SetNextToken ¶
func (s *ListHandshakesForOrganizationOutput) SetNextToken(v string) *ListHandshakesForOrganizationOutput
SetNextToken sets the NextToken field's value.
func (ListHandshakesForOrganizationOutput) String ¶
func (s ListHandshakesForOrganizationOutput) String() string
String returns the string representation
type ListOrganizationalUnitsForParentInput ¶
type ListOrganizationalUnitsForParentInput struct { // (Optional) Use this to limit the number of results you want included in the // response. If you do not include this parameter, it defaults to a value that // is specific to the operation. If additional items exist beyond the maximum // you specify, the NextToken response element is present and has a value (is // not null). Include that value as the NextToken request parameter in the next // call to the operation to get the next part of the results. Note that Organizations // might return fewer results than the maximum even when there are more results // available. You should check NextToken after every operation to ensure that // you receive all of the results. MaxResults *int64 `min:"1" type:"integer"` // Use this parameter if you receive a NextToken response in a previous request // that indicates that there is more output available. Set it to the value of // the previous call's NextToken response to indicate where the output should // continue from. NextToken *string `type:"string"` // The unique identifier (ID) of the root or OU whose child OUs you want to // list. // // The regex pattern (http://wikipedia.org/wiki/regex) for a parent ID string // requires one of the following: // // * Root: a string that begins with "r-" followed by from 4 to 32 lower-case // letters or digits. // // * Organizational unit (OU): a string that begins with "ou-" followed by // from 4 to 32 lower-case letters or digits (the ID of the root that the // OU is in) followed by a second "-" dash and from 8 to 32 additional lower-case // letters or digits. // // ParentId is a required field ParentId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListOrganizationalUnitsForParentRequest
func (ListOrganizationalUnitsForParentInput) GoString ¶
func (s ListOrganizationalUnitsForParentInput) GoString() string
GoString returns the string representation
func (*ListOrganizationalUnitsForParentInput) SetMaxResults ¶
func (s *ListOrganizationalUnitsForParentInput) SetMaxResults(v int64) *ListOrganizationalUnitsForParentInput
SetMaxResults sets the MaxResults field's value.
func (*ListOrganizationalUnitsForParentInput) SetNextToken ¶
func (s *ListOrganizationalUnitsForParentInput) SetNextToken(v string) *ListOrganizationalUnitsForParentInput
SetNextToken sets the NextToken field's value.
func (*ListOrganizationalUnitsForParentInput) SetParentId ¶
func (s *ListOrganizationalUnitsForParentInput) SetParentId(v string) *ListOrganizationalUnitsForParentInput
SetParentId sets the ParentId field's value.
func (ListOrganizationalUnitsForParentInput) String ¶
func (s ListOrganizationalUnitsForParentInput) String() string
String returns the string representation
func (*ListOrganizationalUnitsForParentInput) Validate ¶
func (s *ListOrganizationalUnitsForParentInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListOrganizationalUnitsForParentOutput ¶
type ListOrganizationalUnitsForParentOutput struct { // If present, this value indicates that there is more output available than // is included in the current response. Use this value in the NextToken request // parameter in a subsequent call to the operation to get the next part of the // output. You should repeat this until the NextToken response element comes // back as null. NextToken *string `type:"string"` // A list of the OUs in the specified root or parent OU. OrganizationalUnits []*OrganizationalUnit `type:"list"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListOrganizationalUnitsForParentResponse
func (ListOrganizationalUnitsForParentOutput) GoString ¶
func (s ListOrganizationalUnitsForParentOutput) GoString() string
GoString returns the string representation
func (*ListOrganizationalUnitsForParentOutput) SetNextToken ¶
func (s *ListOrganizationalUnitsForParentOutput) SetNextToken(v string) *ListOrganizationalUnitsForParentOutput
SetNextToken sets the NextToken field's value.
func (*ListOrganizationalUnitsForParentOutput) SetOrganizationalUnits ¶
func (s *ListOrganizationalUnitsForParentOutput) SetOrganizationalUnits(v []*OrganizationalUnit) *ListOrganizationalUnitsForParentOutput
SetOrganizationalUnits sets the OrganizationalUnits field's value.
func (ListOrganizationalUnitsForParentOutput) String ¶
func (s ListOrganizationalUnitsForParentOutput) String() string
String returns the string representation
type ListParentsInput ¶
type ListParentsInput struct { // The unique identifier (ID) of the OU or account whose parent containers you // want to list. Do not specify a root. // // The regex pattern (http://wikipedia.org/wiki/regex) for a child ID string // requires one of the following: // // * Account: a string that consists of exactly 12 digits. // // * Organizational unit (OU): a string that begins with "ou-" followed by // from 4 to 32 lower-case letters or digits (the ID of the root that contains // the OU) followed by a second "-" dash and from 8 to 32 additional lower-case // letters or digits. // // ChildId is a required field ChildId *string `type:"string" required:"true"` // (Optional) Use this to limit the number of results you want included in the // response. If you do not include this parameter, it defaults to a value that // is specific to the operation. If additional items exist beyond the maximum // you specify, the NextToken response element is present and has a value (is // not null). Include that value as the NextToken request parameter in the next // call to the operation to get the next part of the results. Note that Organizations // might return fewer results than the maximum even when there are more results // available. You should check NextToken after every operation to ensure that // you receive all of the results. MaxResults *int64 `min:"1" type:"integer"` // Use this parameter if you receive a NextToken response in a previous request // that indicates that there is more output available. Set it to the value of // the previous call's NextToken response to indicate where the output should // continue from. NextToken *string `type:"string"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListParentsRequest
func (ListParentsInput) GoString ¶
func (s ListParentsInput) GoString() string
GoString returns the string representation
func (*ListParentsInput) SetChildId ¶
func (s *ListParentsInput) SetChildId(v string) *ListParentsInput
SetChildId sets the ChildId field's value.
func (*ListParentsInput) SetMaxResults ¶
func (s *ListParentsInput) SetMaxResults(v int64) *ListParentsInput
SetMaxResults sets the MaxResults field's value.
func (*ListParentsInput) SetNextToken ¶
func (s *ListParentsInput) SetNextToken(v string) *ListParentsInput
SetNextToken sets the NextToken field's value.
func (ListParentsInput) String ¶
func (s ListParentsInput) String() string
String returns the string representation
func (*ListParentsInput) Validate ¶
func (s *ListParentsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListParentsOutput ¶
type ListParentsOutput struct { // If present, this value indicates that there is more output available than // is included in the current response. Use this value in the NextToken request // parameter in a subsequent call to the operation to get the next part of the // output. You should repeat this until the NextToken response element comes // back as null. NextToken *string `type:"string"` // A list of parents for the specified child account or OU. Parents []*Parent `type:"list"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListParentsResponse
func (ListParentsOutput) GoString ¶
func (s ListParentsOutput) GoString() string
GoString returns the string representation
func (*ListParentsOutput) SetNextToken ¶
func (s *ListParentsOutput) SetNextToken(v string) *ListParentsOutput
SetNextToken sets the NextToken field's value.
func (*ListParentsOutput) SetParents ¶
func (s *ListParentsOutput) SetParents(v []*Parent) *ListParentsOutput
SetParents sets the Parents field's value.
func (ListParentsOutput) String ¶
func (s ListParentsOutput) String() string
String returns the string representation
type ListPoliciesForTargetInput ¶
type ListPoliciesForTargetInput struct { // The type of policy that you want to include in the returned list. // // Filter is a required field Filter *string `type:"string" required:"true" enum:"PolicyType"` // (Optional) Use this to limit the number of results you want included in the // response. If you do not include this parameter, it defaults to a value that // is specific to the operation. If additional items exist beyond the maximum // you specify, the NextToken response element is present and has a value (is // not null). Include that value as the NextToken request parameter in the next // call to the operation to get the next part of the results. Note that Organizations // might return fewer results than the maximum even when there are more results // available. You should check NextToken after every operation to ensure that // you receive all of the results. MaxResults *int64 `min:"1" type:"integer"` // Use this parameter if you receive a NextToken response in a previous request // that indicates that there is more output available. Set it to the value of // the previous call's NextToken response to indicate where the output should // continue from. NextToken *string `type:"string"` // The unique identifier (ID) of the root, organizational unit, or account whose // policies you want to list. // // The regex pattern (http://wikipedia.org/wiki/regex) for a target ID string // requires one of the following: // // * Root: a string that begins with "r-" followed by from 4 to 32 lower-case // letters or digits. // // * Account: a string that consists of exactly 12 digits. // // * Organizational unit (OU): a string that begins with "ou-" followed by // from 4 to 32 lower-case letters or digits (the ID of the root that the // OU is in) followed by a second "-" dash and from 8 to 32 additional lower-case // letters or digits. // // TargetId is a required field TargetId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListPoliciesForTargetRequest
func (ListPoliciesForTargetInput) GoString ¶
func (s ListPoliciesForTargetInput) GoString() string
GoString returns the string representation
func (*ListPoliciesForTargetInput) SetFilter ¶
func (s *ListPoliciesForTargetInput) SetFilter(v string) *ListPoliciesForTargetInput
SetFilter sets the Filter field's value.
func (*ListPoliciesForTargetInput) SetMaxResults ¶
func (s *ListPoliciesForTargetInput) SetMaxResults(v int64) *ListPoliciesForTargetInput
SetMaxResults sets the MaxResults field's value.
func (*ListPoliciesForTargetInput) SetNextToken ¶
func (s *ListPoliciesForTargetInput) SetNextToken(v string) *ListPoliciesForTargetInput
SetNextToken sets the NextToken field's value.
func (*ListPoliciesForTargetInput) SetTargetId ¶
func (s *ListPoliciesForTargetInput) SetTargetId(v string) *ListPoliciesForTargetInput
SetTargetId sets the TargetId field's value.
func (ListPoliciesForTargetInput) String ¶
func (s ListPoliciesForTargetInput) String() string
String returns the string representation
func (*ListPoliciesForTargetInput) Validate ¶
func (s *ListPoliciesForTargetInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListPoliciesForTargetOutput ¶
type ListPoliciesForTargetOutput struct { // If present, this value indicates that there is more output available than // is included in the current response. Use this value in the NextToken request // parameter in a subsequent call to the operation to get the next part of the // output. You should repeat this until the NextToken response element comes // back as null. NextToken *string `type:"string"` // The list of policies that match the criteria in the request. Policies []*PolicySummary `type:"list"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListPoliciesForTargetResponse
func (ListPoliciesForTargetOutput) GoString ¶
func (s ListPoliciesForTargetOutput) GoString() string
GoString returns the string representation
func (*ListPoliciesForTargetOutput) SetNextToken ¶
func (s *ListPoliciesForTargetOutput) SetNextToken(v string) *ListPoliciesForTargetOutput
SetNextToken sets the NextToken field's value.
func (*ListPoliciesForTargetOutput) SetPolicies ¶
func (s *ListPoliciesForTargetOutput) SetPolicies(v []*PolicySummary) *ListPoliciesForTargetOutput
SetPolicies sets the Policies field's value.
func (ListPoliciesForTargetOutput) String ¶
func (s ListPoliciesForTargetOutput) String() string
String returns the string representation
type ListPoliciesInput ¶
type ListPoliciesInput struct { // Specifies the type of policy that you want to include in the response. // // Filter is a required field Filter *string `type:"string" required:"true" enum:"PolicyType"` // (Optional) Use this to limit the number of results you want included in the // response. If you do not include this parameter, it defaults to a value that // is specific to the operation. If additional items exist beyond the maximum // you specify, the NextToken response element is present and has a value (is // not null). Include that value as the NextToken request parameter in the next // call to the operation to get the next part of the results. Note that Organizations // might return fewer results than the maximum even when there are more results // available. You should check NextToken after every operation to ensure that // you receive all of the results. MaxResults *int64 `min:"1" type:"integer"` // Use this parameter if you receive a NextToken response in a previous request // that indicates that there is more output available. Set it to the value of // the previous call's NextToken response to indicate where the output should // continue from. NextToken *string `type:"string"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListPoliciesRequest
func (ListPoliciesInput) GoString ¶
func (s ListPoliciesInput) GoString() string
GoString returns the string representation
func (*ListPoliciesInput) SetFilter ¶
func (s *ListPoliciesInput) SetFilter(v string) *ListPoliciesInput
SetFilter sets the Filter field's value.
func (*ListPoliciesInput) SetMaxResults ¶
func (s *ListPoliciesInput) SetMaxResults(v int64) *ListPoliciesInput
SetMaxResults sets the MaxResults field's value.
func (*ListPoliciesInput) SetNextToken ¶
func (s *ListPoliciesInput) SetNextToken(v string) *ListPoliciesInput
SetNextToken sets the NextToken field's value.
func (ListPoliciesInput) String ¶
func (s ListPoliciesInput) String() string
String returns the string representation
func (*ListPoliciesInput) Validate ¶
func (s *ListPoliciesInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListPoliciesOutput ¶
type ListPoliciesOutput struct { // If present, this value indicates that there is more output available than // is included in the current response. Use this value in the NextToken request // parameter in a subsequent call to the operation to get the next part of the // output. You should repeat this until the NextToken response element comes // back as null. NextToken *string `type:"string"` // A list of policies that match the filter criteria in the request. The output // list does not include the policy contents. To see the content for a policy, // see DescribePolicy. Policies []*PolicySummary `type:"list"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListPoliciesResponse
func (ListPoliciesOutput) GoString ¶
func (s ListPoliciesOutput) GoString() string
GoString returns the string representation
func (*ListPoliciesOutput) SetNextToken ¶
func (s *ListPoliciesOutput) SetNextToken(v string) *ListPoliciesOutput
SetNextToken sets the NextToken field's value.
func (*ListPoliciesOutput) SetPolicies ¶
func (s *ListPoliciesOutput) SetPolicies(v []*PolicySummary) *ListPoliciesOutput
SetPolicies sets the Policies field's value.
func (ListPoliciesOutput) String ¶
func (s ListPoliciesOutput) String() string
String returns the string representation
type ListRootsInput ¶
type ListRootsInput struct { // (Optional) Use this to limit the number of results you want included in the // response. If you do not include this parameter, it defaults to a value that // is specific to the operation. If additional items exist beyond the maximum // you specify, the NextToken response element is present and has a value (is // not null). Include that value as the NextToken request parameter in the next // call to the operation to get the next part of the results. Note that Organizations // might return fewer results than the maximum even when there are more results // available. You should check NextToken after every operation to ensure that // you receive all of the results. MaxResults *int64 `min:"1" type:"integer"` // Use this parameter if you receive a NextToken response in a previous request // that indicates that there is more output available. Set it to the value of // the previous call's NextToken response to indicate where the output should // continue from. NextToken *string `type:"string"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListRootsRequest
func (ListRootsInput) GoString ¶
func (s ListRootsInput) GoString() string
GoString returns the string representation
func (*ListRootsInput) SetMaxResults ¶
func (s *ListRootsInput) SetMaxResults(v int64) *ListRootsInput
SetMaxResults sets the MaxResults field's value.
func (*ListRootsInput) SetNextToken ¶
func (s *ListRootsInput) SetNextToken(v string) *ListRootsInput
SetNextToken sets the NextToken field's value.
func (ListRootsInput) String ¶
func (s ListRootsInput) String() string
String returns the string representation
func (*ListRootsInput) Validate ¶
func (s *ListRootsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListRootsOutput ¶
type ListRootsOutput struct { // If present, this value indicates that there is more output available than // is included in the current response. Use this value in the NextToken request // parameter in a subsequent call to the operation to get the next part of the // output. You should repeat this until the NextToken response element comes // back as null. NextToken *string `type:"string"` // A list of roots that are defined in an organization. Roots []*Root `type:"list"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListRootsResponse
func (ListRootsOutput) GoString ¶
func (s ListRootsOutput) GoString() string
GoString returns the string representation
func (*ListRootsOutput) SetNextToken ¶
func (s *ListRootsOutput) SetNextToken(v string) *ListRootsOutput
SetNextToken sets the NextToken field's value.
func (*ListRootsOutput) SetRoots ¶
func (s *ListRootsOutput) SetRoots(v []*Root) *ListRootsOutput
SetRoots sets the Roots field's value.
func (ListRootsOutput) String ¶
func (s ListRootsOutput) String() string
String returns the string representation
type ListTargetsForPolicyInput ¶
type ListTargetsForPolicyInput struct { // (Optional) Use this to limit the number of results you want included in the // response. If you do not include this parameter, it defaults to a value that // is specific to the operation. If additional items exist beyond the maximum // you specify, the NextToken response element is present and has a value (is // not null). Include that value as the NextToken request parameter in the next // call to the operation to get the next part of the results. Note that Organizations // might return fewer results than the maximum even when there are more results // available. You should check NextToken after every operation to ensure that // you receive all of the results. MaxResults *int64 `min:"1" type:"integer"` // Use this parameter if you receive a NextToken response in a previous request // that indicates that there is more output available. Set it to the value of // the previous call's NextToken response to indicate where the output should // continue from. NextToken *string `type:"string"` // The unique identifier (ID) of the policy for which you want to know its attachments. // // The regex pattern (http://wikipedia.org/wiki/regex) for a policy ID string // requires "p-" followed by from 8 to 128 lower-case letters or digits. // // PolicyId is a required field PolicyId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListTargetsForPolicyRequest
func (ListTargetsForPolicyInput) GoString ¶
func (s ListTargetsForPolicyInput) GoString() string
GoString returns the string representation
func (*ListTargetsForPolicyInput) SetMaxResults ¶
func (s *ListTargetsForPolicyInput) SetMaxResults(v int64) *ListTargetsForPolicyInput
SetMaxResults sets the MaxResults field's value.
func (*ListTargetsForPolicyInput) SetNextToken ¶
func (s *ListTargetsForPolicyInput) SetNextToken(v string) *ListTargetsForPolicyInput
SetNextToken sets the NextToken field's value.
func (*ListTargetsForPolicyInput) SetPolicyId ¶
func (s *ListTargetsForPolicyInput) SetPolicyId(v string) *ListTargetsForPolicyInput
SetPolicyId sets the PolicyId field's value.
func (ListTargetsForPolicyInput) String ¶
func (s ListTargetsForPolicyInput) String() string
String returns the string representation
func (*ListTargetsForPolicyInput) Validate ¶
func (s *ListTargetsForPolicyInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListTargetsForPolicyOutput ¶
type ListTargetsForPolicyOutput struct { // If present, this value indicates that there is more output available than // is included in the current response. Use this value in the NextToken request // parameter in a subsequent call to the operation to get the next part of the // output. You should repeat this until the NextToken response element comes // back as null. NextToken *string `type:"string"` // A list of structures, each of which contains details about one of the entities // to which the specified policy is attached. Targets []*PolicyTargetSummary `type:"list"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListTargetsForPolicyResponse
func (ListTargetsForPolicyOutput) GoString ¶
func (s ListTargetsForPolicyOutput) GoString() string
GoString returns the string representation
func (*ListTargetsForPolicyOutput) SetNextToken ¶
func (s *ListTargetsForPolicyOutput) SetNextToken(v string) *ListTargetsForPolicyOutput
SetNextToken sets the NextToken field's value.
func (*ListTargetsForPolicyOutput) SetTargets ¶
func (s *ListTargetsForPolicyOutput) SetTargets(v []*PolicyTargetSummary) *ListTargetsForPolicyOutput
SetTargets sets the Targets field's value.
func (ListTargetsForPolicyOutput) String ¶
func (s ListTargetsForPolicyOutput) String() string
String returns the string representation
type MoveAccountInput ¶
type MoveAccountInput struct { // The unique identifier (ID) of the account that you want to move. // // The regex pattern (http://wikipedia.org/wiki/regex) for an account ID string // requires exactly 12 digits. // // AccountId is a required field AccountId *string `type:"string" required:"true"` // The unique identifier (ID) of the root or organizational unit that you want // to move the account to. // // The regex pattern (http://wikipedia.org/wiki/regex) for a parent ID string // requires one of the following: // // * Root: a string that begins with "r-" followed by from 4 to 32 lower-case // letters or digits. // // * Organizational unit (OU): a string that begins with "ou-" followed by // from 4 to 32 lower-case letters or digits (the ID of the root that the // OU is in) followed by a second "-" dash and from 8 to 32 additional lower-case // letters or digits. // // DestinationParentId is a required field DestinationParentId *string `type:"string" required:"true"` // The unique identifier (ID) of the root or organizational unit that you want // to move the account from. // // The regex pattern (http://wikipedia.org/wiki/regex) for a parent ID string // requires one of the following: // // * Root: a string that begins with "r-" followed by from 4 to 32 lower-case // letters or digits. // // * Organizational unit (OU): a string that begins with "ou-" followed by // from 4 to 32 lower-case letters or digits (the ID of the root that the // OU is in) followed by a second "-" dash and from 8 to 32 additional lower-case // letters or digits. // // SourceParentId is a required field SourceParentId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/MoveAccountRequest
func (MoveAccountInput) GoString ¶
func (s MoveAccountInput) GoString() string
GoString returns the string representation
func (*MoveAccountInput) SetAccountId ¶
func (s *MoveAccountInput) SetAccountId(v string) *MoveAccountInput
SetAccountId sets the AccountId field's value.
func (*MoveAccountInput) SetDestinationParentId ¶
func (s *MoveAccountInput) SetDestinationParentId(v string) *MoveAccountInput
SetDestinationParentId sets the DestinationParentId field's value.
func (*MoveAccountInput) SetSourceParentId ¶
func (s *MoveAccountInput) SetSourceParentId(v string) *MoveAccountInput
SetSourceParentId sets the SourceParentId field's value.
func (MoveAccountInput) String ¶
func (s MoveAccountInput) String() string
String returns the string representation
func (*MoveAccountInput) Validate ¶
func (s *MoveAccountInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type MoveAccountOutput ¶
type MoveAccountOutput struct {
// contains filtered or unexported fields
}
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/MoveAccountOutput
func (MoveAccountOutput) GoString ¶
func (s MoveAccountOutput) GoString() string
GoString returns the string representation
func (MoveAccountOutput) String ¶
func (s MoveAccountOutput) String() string
String returns the string representation
type Organization ¶
type Organization struct { // The Amazon Resource Name (ARN) of an organization. // // For more information about ARNs in Organizations, see ARN Formats Supported // by Organizations (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_permissions.html#orgs-permissions-arns) // in the AWS Organizations User Guide. Arn *string `type:"string"` // A list of policy types that are enabled for this organization. For example, // if your organization has all features enabled, then service control policies // (SCPs) are included in the list. AvailablePolicyTypes []*PolicyTypeSummary `type:"list"` // Specifies the functionality that currently is available to the organization. // If set to "ALL", then all features are enabled and policies can be applied // to accounts in the organization. If set to "CONSOLIDATED_BILLING", then only // consolidated billing functionality is available. For more information, see // Enabling All Features in Your Organization (http://docs.aws.amazon.com/IAM/latest/UserGuide/orgs_manage_org_support-all-features.html) // in the AWS Organizations User Guide. FeatureSet *string `type:"string" enum:"OrganizationFeatureSet"` // The unique identifier (ID) of an organization. // // The regex pattern (http://wikipedia.org/wiki/regex) for an organization ID // string requires "o-" followed by from 10 to 32 lower-case letters or digits. Id *string `type:"string"` // The Amazon Resource Name (ARN) of the account that is designated as the master // account for the organization. // // For more information about ARNs in Organizations, see ARN Formats Supported // by Organizations (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_permissions.html#orgs-permissions-arns) // in the AWS Organizations User Guide. MasterAccountArn *string `type:"string"` // The email address that is associated with the AWS account that is designated // as the master account for the organization. MasterAccountEmail *string `min:"6" type:"string"` // The unique identifier (ID) of the master account of an organization. // // The regex pattern (http://wikipedia.org/wiki/regex) for an account ID string // requires exactly 12 digits. MasterAccountId *string `type:"string"` // contains filtered or unexported fields }
Contains details about an organization. An organization is a collection of accounts that are centrally managed together using consolidated billing, organized hierarchically with organizational units (OUs), and controlled with policies . Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/Organization
func (Organization) GoString ¶
func (s Organization) GoString() string
GoString returns the string representation
func (*Organization) SetArn ¶
func (s *Organization) SetArn(v string) *Organization
SetArn sets the Arn field's value.
func (*Organization) SetAvailablePolicyTypes ¶
func (s *Organization) SetAvailablePolicyTypes(v []*PolicyTypeSummary) *Organization
SetAvailablePolicyTypes sets the AvailablePolicyTypes field's value.
func (*Organization) SetFeatureSet ¶
func (s *Organization) SetFeatureSet(v string) *Organization
SetFeatureSet sets the FeatureSet field's value.
func (*Organization) SetId ¶
func (s *Organization) SetId(v string) *Organization
SetId sets the Id field's value.
func (*Organization) SetMasterAccountArn ¶
func (s *Organization) SetMasterAccountArn(v string) *Organization
SetMasterAccountArn sets the MasterAccountArn field's value.
func (*Organization) SetMasterAccountEmail ¶
func (s *Organization) SetMasterAccountEmail(v string) *Organization
SetMasterAccountEmail sets the MasterAccountEmail field's value.
func (*Organization) SetMasterAccountId ¶
func (s *Organization) SetMasterAccountId(v string) *Organization
SetMasterAccountId sets the MasterAccountId field's value.
func (Organization) String ¶
func (s Organization) String() string
String returns the string representation
type OrganizationalUnit ¶
type OrganizationalUnit struct { // The Amazon Resource Name (ARN) of this OU. // // For more information about ARNs in Organizations, see ARN Formats Supported // by Organizations (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_permissions.html#orgs-permissions-arns) // in the AWS Organizations User Guide. Arn *string `type:"string"` // The unique identifier (ID) associated with this OU. // // The regex pattern (http://wikipedia.org/wiki/regex) for an organizational // unit ID string requires "ou-" followed by from 4 to 32 lower-case letters // or digits (the ID of the root that contains the OU) followed by a second // "-" dash and from 8 to 32 additional lower-case letters or digits. Id *string `type:"string"` // The friendly name of this OU. // // The regex pattern (http://wikipedia.org/wiki/regex) that is used to validate // this parameter is a string of any of the characters in the ASCII character // range. Name *string `min:"1" type:"string"` // contains filtered or unexported fields }
Contains details about an organizational unit (OU). An OU is a container of AWS accounts within a root of an organization. Policies that are attached to an OU apply to all accounts contained in that OU and in any child OUs. Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/OrganizationalUnit
func (OrganizationalUnit) GoString ¶
func (s OrganizationalUnit) GoString() string
GoString returns the string representation
func (*OrganizationalUnit) SetArn ¶
func (s *OrganizationalUnit) SetArn(v string) *OrganizationalUnit
SetArn sets the Arn field's value.
func (*OrganizationalUnit) SetId ¶
func (s *OrganizationalUnit) SetId(v string) *OrganizationalUnit
SetId sets the Id field's value.
func (*OrganizationalUnit) SetName ¶
func (s *OrganizationalUnit) SetName(v string) *OrganizationalUnit
SetName sets the Name field's value.
func (OrganizationalUnit) String ¶
func (s OrganizationalUnit) String() string
String returns the string representation
type Organizations ¶
Organizations provides the API operation methods for making requests to AWS Organizations. See this package's package overview docs for details on the service.
Organizations methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.
func New ¶
func New(p client.ConfigProvider, cfgs ...*aws.Config) *Organizations
New creates a new instance of the Organizations client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.
Example:
// Create a Organizations client from just a session. svc := organizations.New(mySession) // Create a Organizations client with additional configuration svc := organizations.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
func (*Organizations) AcceptHandshake ¶
func (c *Organizations) AcceptHandshake(input *AcceptHandshakeInput) (*AcceptHandshakeOutput, error)
AcceptHandshake API operation for AWS Organizations.
Sends a response to the originator of a handshake agreeing to the action proposed by the handshake request.
This operation can be called only by the following principals when they also have the relevant IAM permissions:
Invitation to join or Approve all features request handshakes: only a principal from the member account.
Enable all features final confirmation handshake: only a principal from the master account.
For more information about invitations, see Inviting an AWS Account to Join
Your Organization (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_accounts_invites.html) in the AWS Organizations User Guide. For more information about requests to enable all features in the organization, see Enabling All Features in Your Organization (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_org_support-all-features.html) in the AWS Organizations User Guide.
After you accept a handshake, it continues to appear in the results of relevant APIs for only 30 days. After that it is deleted.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation AcceptHandshake for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeHandshakeConstraintViolationException "HandshakeConstraintViolationException" The requested operation would violate the constraint identified in the reason code.
ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. Note: deleted and closed accounts still count toward your limit.
HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes you can send in one day.
ALREADY_IN_AN_ORGANIZATION: The handshake request is invalid because the invited account is already a member of an organization.
ORGANIZATION_ALREADY_HAS_ALL_FEATURES: The handshake request is invalid because the organization has already enabled all features.
INVITE_DISABLED_DURING_ENABLE_ALL_FEATURES: You cannot issue new invitations to join an organization while it is in the process of enabling all features. You can resume inviting accounts after you finalize the process when all accounts have agreed to the change.
PAYMENT_INSTRUMENT_REQUIRED: You cannot complete the operation with an account that does not have a payment instrument, such as a credit card, associated with it.
ORGANIZATION_FROM_DIFFERENT_SELLER_OF_RECORD: The request failed because the account is from a different marketplace than the accounts in the organization. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be from the same marketplace.
ORGANIZATION_MEMBERSHIP_CHANGE_RATE_LIMIT_EXCEEDED: You attempted to change the membership of an account too quickly after its previous change.
ErrCodeHandshakeNotFoundException "HandshakeNotFoundException" We can't find a handshake with the HandshakeId that you specified.
ErrCodeInvalidHandshakeTransitionException "InvalidHandshakeTransitionException" You can't perform the operation on the handshake in its current state. For example, you can't cancel a handshake that was already accepted, or accept a handshake that was already declined.
ErrCodeHandshakeAlreadyInStateException "HandshakeAlreadyInStateException" The specified handshake is already in the requested state. For example, you can't accept a handshake that was already accepted.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/AcceptHandshake
func (*Organizations) AcceptHandshakeRequest ¶
func (c *Organizations) AcceptHandshakeRequest(input *AcceptHandshakeInput) (req *request.Request, output *AcceptHandshakeOutput)
AcceptHandshakeRequest generates a "aws/request.Request" representing the client's request for the AcceptHandshake operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See AcceptHandshake for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AcceptHandshake method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the AcceptHandshakeRequest method. req, resp := client.AcceptHandshakeRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/AcceptHandshake
func (*Organizations) AcceptHandshakeWithContext ¶ added in v1.8.0
func (c *Organizations) AcceptHandshakeWithContext(ctx aws.Context, input *AcceptHandshakeInput, opts ...request.Option) (*AcceptHandshakeOutput, error)
AcceptHandshakeWithContext is the same as AcceptHandshake with the addition of the ability to pass a context and additional request options.
See AcceptHandshake for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) AttachPolicy ¶
func (c *Organizations) AttachPolicy(input *AttachPolicyInput) (*AttachPolicyOutput, error)
AttachPolicy API operation for AWS Organizations.
Attaches a policy to a root, an organizational unit, or an individual account. How the policy affects accounts depends on the type of policy:
- Service control policy (SCP) - An SCP specifies what permissions can be delegated to users in affected member accounts. The scope of influence for a policy depends on what you attach the policy to:
If you attach an SCP to a root, it affects all accounts in the organization.
If you attach an SCP to an OU, it affects all accounts in that OU and in
any child OUs.
If you attach the policy directly to an account, then it affects only that
account.
SCPs essentially are permission "filters". When you attach one SCP to a higher
level root or OU, and you also attach a different SCP to a child OU or to an account, the child policy can further restrict only the permissions that pass through the parent filter and are available to the child. An SCP that is attached to a child cannot grant a permission that is not already granted by the parent. For example, imagine that the parent SCP allows permissions A, B, C, D, and E. The child SCP allows C, D, E, F, and G. The result is that the accounts affected by the child SCP are allowed to use only C, D, and E. They cannot use A or B because they were filtered out by the child OU. They also cannot use F and G because they were filtered out by the parent OU. They cannot be granted back by the child SCP; child SCPs can only filter the permissions they receive from the parent SCP.
AWS Organizations attaches a default SCP named "FullAWSAccess to every root,
OU, and account. This default SCP allows all services and actions, enabling any new child OU or account to inherit the permissions of the parent root or OU. If you detach the default policy, you must replace it with a policy that specifies the permissions that you want to allow in that OU or account.
For more information about how Organizations policies permissions work, see
Using Service Control Policies (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html) in the AWS Organizations User Guide.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation AttachPolicy for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeConstraintViolationException "ConstraintViolationException" Performing this operation violates a minimum or maximum value limit. For example, attempting to removing the last SCP from an OU or root, inviting or creating too many accounts to the organization, or attaching too many policies to an account, OU, or root. This exception includes a reason that contains additional information about the violated limit:
ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. If you need more accounts, contact AWS Support to request an increase in your limit.
Or, The number of invitations that you tried to send would cause you to exceed the limit of accounts in your organization. Send fewer invitations, or contact AWS Support to request an increase in the number of accounts.
Note: deleted and closed accounts still count toward your limit.
HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes you can send in one day.
OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of organizational units you can have in an organization.
OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an organizational unit tree that is too many levels deep.
POLICY_NUMBER_LIMIT_EXCEEDED. You attempted to exceed the number of policies that you can have in an organization.
MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the number of policies of a certain type that can be attached to an entity at one time.
MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a policy from an entity that would cause the entity to have fewer than the minimum number of policies of a certain type required.
ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first agree to the End-User License Agreement (EULA).
ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first complete phone verification.
MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization with this account, you first must associate a payment instrument, such as a credit card, with the account.
MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation with this member account, you first must associate a payment instrument, such as a credit card, with the account.
ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of accounts that you can create in one day.
MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account in this organization, you first must migrate the organization's master account to the marketplace that corresponds to the master account's address. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be associated with the same marketplace.
ErrCodeDuplicatePolicyAttachmentException "DuplicatePolicyAttachmentException" The selected policy is already attached to the specified target.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodePolicyNotFoundException "PolicyNotFoundException" We can't find a policy with the PolicyId that you specified.
ErrCodePolicyTypeNotEnabledException "PolicyTypeNotEnabledException" The specified policy type is not currently enabled in this root. You cannot attach policies of the specified type to entities in a root until you enable that type in the root. For more information, see Enabling All Features in Your Organization (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_org_support-all-features.html) in the AWS Organizations User Guide.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTargetNotFoundException "TargetNotFoundException" We can't find a root, OU, or account with the TargetId that you specified.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/AttachPolicy
func (*Organizations) AttachPolicyRequest ¶
func (c *Organizations) AttachPolicyRequest(input *AttachPolicyInput) (req *request.Request, output *AttachPolicyOutput)
AttachPolicyRequest generates a "aws/request.Request" representing the client's request for the AttachPolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See AttachPolicy for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AttachPolicy method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the AttachPolicyRequest method. req, resp := client.AttachPolicyRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/AttachPolicy
func (*Organizations) AttachPolicyWithContext ¶ added in v1.8.0
func (c *Organizations) AttachPolicyWithContext(ctx aws.Context, input *AttachPolicyInput, opts ...request.Option) (*AttachPolicyOutput, error)
AttachPolicyWithContext is the same as AttachPolicy with the addition of the ability to pass a context and additional request options.
See AttachPolicy for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) CancelHandshake ¶
func (c *Organizations) CancelHandshake(input *CancelHandshakeInput) (*CancelHandshakeOutput, error)
CancelHandshake API operation for AWS Organizations.
Cancels a handshake. Canceling a handshake sets the handshake state to CANCELED.
This operation can be called only from the account that originated the handshake. The recipient of the handshake can't cancel it, but can use DeclineHandshake instead. After a handshake is canceled, the recipient can no longer respond to that handshake.
After you cancel a handshake, it continues to appear in the results of relevant APIs for only 30 days. After that it is deleted.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation CancelHandshake for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeHandshakeNotFoundException "HandshakeNotFoundException" We can't find a handshake with the HandshakeId that you specified.
ErrCodeInvalidHandshakeTransitionException "InvalidHandshakeTransitionException" You can't perform the operation on the handshake in its current state. For example, you can't cancel a handshake that was already accepted, or accept a handshake that was already declined.
ErrCodeHandshakeAlreadyInStateException "HandshakeAlreadyInStateException" The specified handshake is already in the requested state. For example, you can't accept a handshake that was already accepted.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CancelHandshake
func (*Organizations) CancelHandshakeRequest ¶
func (c *Organizations) CancelHandshakeRequest(input *CancelHandshakeInput) (req *request.Request, output *CancelHandshakeOutput)
CancelHandshakeRequest generates a "aws/request.Request" representing the client's request for the CancelHandshake operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See CancelHandshake for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CancelHandshake method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the CancelHandshakeRequest method. req, resp := client.CancelHandshakeRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CancelHandshake
func (*Organizations) CancelHandshakeWithContext ¶ added in v1.8.0
func (c *Organizations) CancelHandshakeWithContext(ctx aws.Context, input *CancelHandshakeInput, opts ...request.Option) (*CancelHandshakeOutput, error)
CancelHandshakeWithContext is the same as CancelHandshake with the addition of the ability to pass a context and additional request options.
See CancelHandshake for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) CreateAccount ¶
func (c *Organizations) CreateAccount(input *CreateAccountInput) (*CreateAccountOutput, error)
CreateAccount API operation for AWS Organizations.
Creates an AWS account that is automatically a member of the organization whose credentials made the request. This is an asynchronous request that AWS performs in the background. If you want to check the status of the request later, you need the OperationId response element from this operation to provide as a parameter to the DescribeCreateAccountStatus operation.
AWS Organizations preconfigures the new member account with a role (named OrganizationAccountAccessRole by default) that grants administrator permissions to the new account. Principals in the master account can assume the role. AWS Organizations clones the company name and address information for the new account from the organization's master account.
For more information about creating accounts, see Creating an AWS Account in Your Organization (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_accounts_create.html) in the AWS Organizations User Guide.
You cannot remove accounts that are created with this operation from an organization. That also means that you cannot delete an organization that contains an account that is created with this operation.
When you create a member account with this operation, you can choose whether to create the account with the IAM User and Role Access to Billing Information switch enabled. If you enable it, IAM users and roles that have appropriate permissions can view billing information for the account. If you disable this, then only the account root user can access billing information. For information about how to disable this for an account, see Granting Access to Your Billing Information and Tools (http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/grantaccess.html).
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation CreateAccount for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeConstraintViolationException "ConstraintViolationException" Performing this operation violates a minimum or maximum value limit. For example, attempting to removing the last SCP from an OU or root, inviting or creating too many accounts to the organization, or attaching too many policies to an account, OU, or root. This exception includes a reason that contains additional information about the violated limit:
ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. If you need more accounts, contact AWS Support to request an increase in your limit.
Or, The number of invitations that you tried to send would cause you to exceed the limit of accounts in your organization. Send fewer invitations, or contact AWS Support to request an increase in the number of accounts.
Note: deleted and closed accounts still count toward your limit.
HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes you can send in one day.
OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of organizational units you can have in an organization.
OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an organizational unit tree that is too many levels deep.
POLICY_NUMBER_LIMIT_EXCEEDED. You attempted to exceed the number of policies that you can have in an organization.
MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the number of policies of a certain type that can be attached to an entity at one time.
MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a policy from an entity that would cause the entity to have fewer than the minimum number of policies of a certain type required.
ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first agree to the End-User License Agreement (EULA).
ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first complete phone verification.
MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization with this account, you first must associate a payment instrument, such as a credit card, with the account.
MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation with this member account, you first must associate a payment instrument, such as a credit card, with the account.
ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of accounts that you can create in one day.
MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account in this organization, you first must migrate the organization's master account to the marketplace that corresponds to the master account's address. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be associated with the same marketplace.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeFinalizingOrganizationException "FinalizingOrganizationException" AWS Organizations could not finalize the creation of your organization. Try again later. If this persists, contact AWS customer support.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateAccount
func (*Organizations) CreateAccountRequest ¶
func (c *Organizations) CreateAccountRequest(input *CreateAccountInput) (req *request.Request, output *CreateAccountOutput)
CreateAccountRequest generates a "aws/request.Request" representing the client's request for the CreateAccount operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See CreateAccount for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateAccount method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the CreateAccountRequest method. req, resp := client.CreateAccountRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateAccount
func (*Organizations) CreateAccountWithContext ¶ added in v1.8.0
func (c *Organizations) CreateAccountWithContext(ctx aws.Context, input *CreateAccountInput, opts ...request.Option) (*CreateAccountOutput, error)
CreateAccountWithContext is the same as CreateAccount with the addition of the ability to pass a context and additional request options.
See CreateAccount for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) CreateOrganization ¶
func (c *Organizations) CreateOrganization(input *CreateOrganizationInput) (*CreateOrganizationOutput, error)
CreateOrganization API operation for AWS Organizations.
Creates an AWS organization. The account whose user is calling the CreateOrganization operation automatically becomes the master account (http://docs.aws.amazon.com/IAM/latest/UserGuide/orgs_getting-started_concepts.html#account) of the new organization.
This operation must be called using credentials from the account that is to become the new organization's master account. The principal must also have the relevant IAM permissions.
By default (or if you set the FeatureSet parameter to ALL), the new organization is created with all features enabled and service control policies automatically enabled in the root. If you instead choose to create the organization supporting only the consolidated billing features by setting the FeatureSet parameter to CONSOLIDATED_BILLING", then no policy types are enabled by default and you cannot use organization policies.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation CreateOrganization for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAlreadyInOrganizationException "AlreadyInOrganizationException" This account is already a member of an organization. An account can belong to only one organization at a time.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeConstraintViolationException "ConstraintViolationException" Performing this operation violates a minimum or maximum value limit. For example, attempting to removing the last SCP from an OU or root, inviting or creating too many accounts to the organization, or attaching too many policies to an account, OU, or root. This exception includes a reason that contains additional information about the violated limit:
ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. If you need more accounts, contact AWS Support to request an increase in your limit.
Or, The number of invitations that you tried to send would cause you to exceed the limit of accounts in your organization. Send fewer invitations, or contact AWS Support to request an increase in the number of accounts.
Note: deleted and closed accounts still count toward your limit.
HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes you can send in one day.
OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of organizational units you can have in an organization.
OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an organizational unit tree that is too many levels deep.
POLICY_NUMBER_LIMIT_EXCEEDED. You attempted to exceed the number of policies that you can have in an organization.
MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the number of policies of a certain type that can be attached to an entity at one time.
MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a policy from an entity that would cause the entity to have fewer than the minimum number of policies of a certain type required.
ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first agree to the End-User License Agreement (EULA).
ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first complete phone verification.
MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization with this account, you first must associate a payment instrument, such as a credit card, with the account.
MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation with this member account, you first must associate a payment instrument, such as a credit card, with the account.
ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of accounts that you can create in one day.
MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account in this organization, you first must migrate the organization's master account to the marketplace that corresponds to the master account's address. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be associated with the same marketplace.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateOrganization
func (*Organizations) CreateOrganizationRequest ¶
func (c *Organizations) CreateOrganizationRequest(input *CreateOrganizationInput) (req *request.Request, output *CreateOrganizationOutput)
CreateOrganizationRequest generates a "aws/request.Request" representing the client's request for the CreateOrganization operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See CreateOrganization for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateOrganization method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the CreateOrganizationRequest method. req, resp := client.CreateOrganizationRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateOrganization
func (*Organizations) CreateOrganizationWithContext ¶ added in v1.8.0
func (c *Organizations) CreateOrganizationWithContext(ctx aws.Context, input *CreateOrganizationInput, opts ...request.Option) (*CreateOrganizationOutput, error)
CreateOrganizationWithContext is the same as CreateOrganization with the addition of the ability to pass a context and additional request options.
See CreateOrganization for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) CreateOrganizationalUnit ¶
func (c *Organizations) CreateOrganizationalUnit(input *CreateOrganizationalUnitInput) (*CreateOrganizationalUnitOutput, error)
CreateOrganizationalUnit API operation for AWS Organizations.
Creates an organizational unit (OU) within a root or parent OU. An OU is a container for accounts that enables you to organize your accounts to apply policies according to your business requirements. The number of levels deep that you can nest OUs is dependent upon the policy types enabled for that root. For service control policies, the limit is five.
For more information about OUs, see Managing Organizational Units (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_ous.html) in the AWS Organizations User Guide.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation CreateOrganizationalUnit for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeConstraintViolationException "ConstraintViolationException" Performing this operation violates a minimum or maximum value limit. For example, attempting to removing the last SCP from an OU or root, inviting or creating too many accounts to the organization, or attaching too many policies to an account, OU, or root. This exception includes a reason that contains additional information about the violated limit:
ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. If you need more accounts, contact AWS Support to request an increase in your limit.
Or, The number of invitations that you tried to send would cause you to exceed the limit of accounts in your organization. Send fewer invitations, or contact AWS Support to request an increase in the number of accounts.
Note: deleted and closed accounts still count toward your limit.
HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes you can send in one day.
OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of organizational units you can have in an organization.
OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an organizational unit tree that is too many levels deep.
POLICY_NUMBER_LIMIT_EXCEEDED. You attempted to exceed the number of policies that you can have in an organization.
MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the number of policies of a certain type that can be attached to an entity at one time.
MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a policy from an entity that would cause the entity to have fewer than the minimum number of policies of a certain type required.
ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first agree to the End-User License Agreement (EULA).
ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first complete phone verification.
MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization with this account, you first must associate a payment instrument, such as a credit card, with the account.
MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation with this member account, you first must associate a payment instrument, such as a credit card, with the account.
ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of accounts that you can create in one day.
MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account in this organization, you first must migrate the organization's master account to the marketplace that corresponds to the master account's address. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be associated with the same marketplace.
ErrCodeDuplicateOrganizationalUnitException "DuplicateOrganizationalUnitException" An organizational unit (OU) with the same name already exists.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeParentNotFoundException "ParentNotFoundException" We can't find a root or organizational unit (OU) with the ParentId that you specified.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateOrganizationalUnit
func (*Organizations) CreateOrganizationalUnitRequest ¶
func (c *Organizations) CreateOrganizationalUnitRequest(input *CreateOrganizationalUnitInput) (req *request.Request, output *CreateOrganizationalUnitOutput)
CreateOrganizationalUnitRequest generates a "aws/request.Request" representing the client's request for the CreateOrganizationalUnit operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See CreateOrganizationalUnit for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateOrganizationalUnit method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the CreateOrganizationalUnitRequest method. req, resp := client.CreateOrganizationalUnitRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateOrganizationalUnit
func (*Organizations) CreateOrganizationalUnitWithContext ¶ added in v1.8.0
func (c *Organizations) CreateOrganizationalUnitWithContext(ctx aws.Context, input *CreateOrganizationalUnitInput, opts ...request.Option) (*CreateOrganizationalUnitOutput, error)
CreateOrganizationalUnitWithContext is the same as CreateOrganizationalUnit with the addition of the ability to pass a context and additional request options.
See CreateOrganizationalUnit for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) CreatePolicy ¶
func (c *Organizations) CreatePolicy(input *CreatePolicyInput) (*CreatePolicyOutput, error)
CreatePolicy API operation for AWS Organizations.
Creates a policy of a specified type that you can attach to a root, an organizational unit (OU), or an individual AWS account.
For more information about policies and their use, see Managing Organization Policies (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies.html).
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation CreatePolicy for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeConstraintViolationException "ConstraintViolationException" Performing this operation violates a minimum or maximum value limit. For example, attempting to removing the last SCP from an OU or root, inviting or creating too many accounts to the organization, or attaching too many policies to an account, OU, or root. This exception includes a reason that contains additional information about the violated limit:
ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. If you need more accounts, contact AWS Support to request an increase in your limit.
Or, The number of invitations that you tried to send would cause you to exceed the limit of accounts in your organization. Send fewer invitations, or contact AWS Support to request an increase in the number of accounts.
Note: deleted and closed accounts still count toward your limit.
HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes you can send in one day.
OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of organizational units you can have in an organization.
OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an organizational unit tree that is too many levels deep.
POLICY_NUMBER_LIMIT_EXCEEDED. You attempted to exceed the number of policies that you can have in an organization.
MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the number of policies of a certain type that can be attached to an entity at one time.
MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a policy from an entity that would cause the entity to have fewer than the minimum number of policies of a certain type required.
ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first agree to the End-User License Agreement (EULA).
ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first complete phone verification.
MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization with this account, you first must associate a payment instrument, such as a credit card, with the account.
MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation with this member account, you first must associate a payment instrument, such as a credit card, with the account.
ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of accounts that you can create in one day.
MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account in this organization, you first must migrate the organization's master account to the marketplace that corresponds to the master account's address. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be associated with the same marketplace.
ErrCodeDuplicatePolicyException "DuplicatePolicyException" A policy with the same name already exists.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeMalformedPolicyDocumentException "MalformedPolicyDocumentException" The provided policy document does not meet the requirements of the specified policy type. For example, the syntax might be incorrect. For details about service control policy syntax, see Service Control Policy Syntax (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_reference_scp-syntax.html) in the AWS Organizations User Guide.
ErrCodePolicyTypeNotAvailableForOrganizationException "PolicyTypeNotAvailableForOrganizationException" You can't use the specified policy type with the feature set currently enabled for this organization. For example, you can enable service control policies (SCPs) only after you enable all features in the organization. For more information, see Enabling and Disabling a Policy Type on a Root (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies.html#enable_policies_on_root) in the AWS Organizations User Guide.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreatePolicy
func (*Organizations) CreatePolicyRequest ¶
func (c *Organizations) CreatePolicyRequest(input *CreatePolicyInput) (req *request.Request, output *CreatePolicyOutput)
CreatePolicyRequest generates a "aws/request.Request" representing the client's request for the CreatePolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See CreatePolicy for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreatePolicy method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the CreatePolicyRequest method. req, resp := client.CreatePolicyRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreatePolicy
func (*Organizations) CreatePolicyWithContext ¶ added in v1.8.0
func (c *Organizations) CreatePolicyWithContext(ctx aws.Context, input *CreatePolicyInput, opts ...request.Option) (*CreatePolicyOutput, error)
CreatePolicyWithContext is the same as CreatePolicy with the addition of the ability to pass a context and additional request options.
See CreatePolicy for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) DeclineHandshake ¶
func (c *Organizations) DeclineHandshake(input *DeclineHandshakeInput) (*DeclineHandshakeOutput, error)
DeclineHandshake API operation for AWS Organizations.
Declines a handshake request. This sets the handshake state to DECLINED and effectively deactivates the request.
This operation can be called only from the account that received the handshake. The originator of the handshake can use CancelHandshake instead. The originator can't reactivate a declined request, but can re-initiate the process with a new handshake request.
After you decline a handshake, it continues to appear in the results of relevant APIs for only 30 days. After that it is deleted.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation DeclineHandshake for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeHandshakeNotFoundException "HandshakeNotFoundException" We can't find a handshake with the HandshakeId that you specified.
ErrCodeInvalidHandshakeTransitionException "InvalidHandshakeTransitionException" You can't perform the operation on the handshake in its current state. For example, you can't cancel a handshake that was already accepted, or accept a handshake that was already declined.
ErrCodeHandshakeAlreadyInStateException "HandshakeAlreadyInStateException" The specified handshake is already in the requested state. For example, you can't accept a handshake that was already accepted.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeclineHandshake
func (*Organizations) DeclineHandshakeRequest ¶
func (c *Organizations) DeclineHandshakeRequest(input *DeclineHandshakeInput) (req *request.Request, output *DeclineHandshakeOutput)
DeclineHandshakeRequest generates a "aws/request.Request" representing the client's request for the DeclineHandshake operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See DeclineHandshake for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeclineHandshake method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the DeclineHandshakeRequest method. req, resp := client.DeclineHandshakeRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeclineHandshake
func (*Organizations) DeclineHandshakeWithContext ¶ added in v1.8.0
func (c *Organizations) DeclineHandshakeWithContext(ctx aws.Context, input *DeclineHandshakeInput, opts ...request.Option) (*DeclineHandshakeOutput, error)
DeclineHandshakeWithContext is the same as DeclineHandshake with the addition of the ability to pass a context and additional request options.
See DeclineHandshake for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) DeleteOrganization ¶
func (c *Organizations) DeleteOrganization(input *DeleteOrganizationInput) (*DeleteOrganizationOutput, error)
DeleteOrganization API operation for AWS Organizations.
Deletes the organization. You can delete an organization only by using credentials from the master account. The organization must be empty of member accounts, OUs, and policies.
If you create any accounts using Organizations operations or the Organizations console, you can't remove those accounts from the organization, which means that you can't delete the organization.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation DeleteOrganization for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeOrganizationNotEmptyException "OrganizationNotEmptyException" The organization isn't empty. To delete an organization, you must first remove all accounts except the master account, delete all organizational units (OUs), and delete all policies.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeleteOrganization
func (*Organizations) DeleteOrganizationRequest ¶
func (c *Organizations) DeleteOrganizationRequest(input *DeleteOrganizationInput) (req *request.Request, output *DeleteOrganizationOutput)
DeleteOrganizationRequest generates a "aws/request.Request" representing the client's request for the DeleteOrganization operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See DeleteOrganization for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteOrganization method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the DeleteOrganizationRequest method. req, resp := client.DeleteOrganizationRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeleteOrganization
func (*Organizations) DeleteOrganizationWithContext ¶ added in v1.8.0
func (c *Organizations) DeleteOrganizationWithContext(ctx aws.Context, input *DeleteOrganizationInput, opts ...request.Option) (*DeleteOrganizationOutput, error)
DeleteOrganizationWithContext is the same as DeleteOrganization with the addition of the ability to pass a context and additional request options.
See DeleteOrganization for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) DeleteOrganizationalUnit ¶
func (c *Organizations) DeleteOrganizationalUnit(input *DeleteOrganizationalUnitInput) (*DeleteOrganizationalUnitOutput, error)
DeleteOrganizationalUnit API operation for AWS Organizations.
Deletes an organizational unit from a root or another OU. You must first remove all accounts and child OUs from the OU that you want to delete.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation DeleteOrganizationalUnit for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeOrganizationalUnitNotEmptyException "OrganizationalUnitNotEmptyException" The specified organizational unit (OU) is not empty. Move all accounts to another root or to other OUs, remove all child OUs, and then try the operation again.
ErrCodeOrganizationalUnitNotFoundException "OrganizationalUnitNotFoundException" We can't find an organizational unit (OU) with the OrganizationalUnitId that you specified.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeleteOrganizationalUnit
func (*Organizations) DeleteOrganizationalUnitRequest ¶
func (c *Organizations) DeleteOrganizationalUnitRequest(input *DeleteOrganizationalUnitInput) (req *request.Request, output *DeleteOrganizationalUnitOutput)
DeleteOrganizationalUnitRequest generates a "aws/request.Request" representing the client's request for the DeleteOrganizationalUnit operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See DeleteOrganizationalUnit for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteOrganizationalUnit method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the DeleteOrganizationalUnitRequest method. req, resp := client.DeleteOrganizationalUnitRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeleteOrganizationalUnit
func (*Organizations) DeleteOrganizationalUnitWithContext ¶ added in v1.8.0
func (c *Organizations) DeleteOrganizationalUnitWithContext(ctx aws.Context, input *DeleteOrganizationalUnitInput, opts ...request.Option) (*DeleteOrganizationalUnitOutput, error)
DeleteOrganizationalUnitWithContext is the same as DeleteOrganizationalUnit with the addition of the ability to pass a context and additional request options.
See DeleteOrganizationalUnit for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) DeletePolicy ¶
func (c *Organizations) DeletePolicy(input *DeletePolicyInput) (*DeletePolicyOutput, error)
DeletePolicy API operation for AWS Organizations.
Deletes the specified policy from your organization. Before you perform this operation, you must first detach the policy from all OUs, roots, and accounts.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation DeletePolicy for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodePolicyInUseException "PolicyInUseException" The policy is attached to one or more entities. You must detach it from all roots, organizational units (OUs), and accounts before performing this operation.
ErrCodePolicyNotFoundException "PolicyNotFoundException" We can't find a policy with the PolicyId that you specified.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeletePolicy
func (*Organizations) DeletePolicyRequest ¶
func (c *Organizations) DeletePolicyRequest(input *DeletePolicyInput) (req *request.Request, output *DeletePolicyOutput)
DeletePolicyRequest generates a "aws/request.Request" representing the client's request for the DeletePolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See DeletePolicy for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeletePolicy method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the DeletePolicyRequest method. req, resp := client.DeletePolicyRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeletePolicy
func (*Organizations) DeletePolicyWithContext ¶ added in v1.8.0
func (c *Organizations) DeletePolicyWithContext(ctx aws.Context, input *DeletePolicyInput, opts ...request.Option) (*DeletePolicyOutput, error)
DeletePolicyWithContext is the same as DeletePolicy with the addition of the ability to pass a context and additional request options.
See DeletePolicy for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) DescribeAccount ¶
func (c *Organizations) DescribeAccount(input *DescribeAccountInput) (*DescribeAccountOutput, error)
DescribeAccount API operation for AWS Organizations.
Retrieves Organizations-related information about the specified account.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation DescribeAccount for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAccountNotFoundException "AccountNotFoundException" We can't find an AWS account with the AccountId that you specified, or the account whose credentials you used to make this request is not a member of an organization.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeAccount
func (*Organizations) DescribeAccountRequest ¶
func (c *Organizations) DescribeAccountRequest(input *DescribeAccountInput) (req *request.Request, output *DescribeAccountOutput)
DescribeAccountRequest generates a "aws/request.Request" representing the client's request for the DescribeAccount operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See DescribeAccount for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeAccount method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the DescribeAccountRequest method. req, resp := client.DescribeAccountRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeAccount
func (*Organizations) DescribeAccountWithContext ¶ added in v1.8.0
func (c *Organizations) DescribeAccountWithContext(ctx aws.Context, input *DescribeAccountInput, opts ...request.Option) (*DescribeAccountOutput, error)
DescribeAccountWithContext is the same as DescribeAccount with the addition of the ability to pass a context and additional request options.
See DescribeAccount for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) DescribeCreateAccountStatus ¶
func (c *Organizations) DescribeCreateAccountStatus(input *DescribeCreateAccountStatusInput) (*DescribeCreateAccountStatusOutput, error)
DescribeCreateAccountStatus API operation for AWS Organizations.
Retrieves the current status of an asynchronous request to create an account.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation DescribeCreateAccountStatus for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeCreateAccountStatusNotFoundException "CreateAccountStatusNotFoundException" We can't find an create account request with the CreateAccountRequestId that you specified.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeCreateAccountStatus
func (*Organizations) DescribeCreateAccountStatusRequest ¶
func (c *Organizations) DescribeCreateAccountStatusRequest(input *DescribeCreateAccountStatusInput) (req *request.Request, output *DescribeCreateAccountStatusOutput)
DescribeCreateAccountStatusRequest generates a "aws/request.Request" representing the client's request for the DescribeCreateAccountStatus operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See DescribeCreateAccountStatus for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeCreateAccountStatus method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the DescribeCreateAccountStatusRequest method. req, resp := client.DescribeCreateAccountStatusRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeCreateAccountStatus
func (*Organizations) DescribeCreateAccountStatusWithContext ¶ added in v1.8.0
func (c *Organizations) DescribeCreateAccountStatusWithContext(ctx aws.Context, input *DescribeCreateAccountStatusInput, opts ...request.Option) (*DescribeCreateAccountStatusOutput, error)
DescribeCreateAccountStatusWithContext is the same as DescribeCreateAccountStatus with the addition of the ability to pass a context and additional request options.
See DescribeCreateAccountStatus for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) DescribeHandshake ¶
func (c *Organizations) DescribeHandshake(input *DescribeHandshakeInput) (*DescribeHandshakeOutput, error)
DescribeHandshake API operation for AWS Organizations.
Retrieves information about a previously requested handshake. The handshake ID comes from the response to the original InviteAccountToOrganization operation that generated the handshake.
You can access handshakes that are ACCEPTED, DECLINED, or CANCELED for only 30 days after they change to that state. They are then deleted and no longer accessible.
This operation can be called from any account in the organization.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation DescribeHandshake for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeHandshakeNotFoundException "HandshakeNotFoundException" We can't find a handshake with the HandshakeId that you specified.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeHandshake
func (*Organizations) DescribeHandshakeRequest ¶
func (c *Organizations) DescribeHandshakeRequest(input *DescribeHandshakeInput) (req *request.Request, output *DescribeHandshakeOutput)
DescribeHandshakeRequest generates a "aws/request.Request" representing the client's request for the DescribeHandshake operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See DescribeHandshake for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeHandshake method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the DescribeHandshakeRequest method. req, resp := client.DescribeHandshakeRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeHandshake
func (*Organizations) DescribeHandshakeWithContext ¶ added in v1.8.0
func (c *Organizations) DescribeHandshakeWithContext(ctx aws.Context, input *DescribeHandshakeInput, opts ...request.Option) (*DescribeHandshakeOutput, error)
DescribeHandshakeWithContext is the same as DescribeHandshake with the addition of the ability to pass a context and additional request options.
See DescribeHandshake for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) DescribeOrganization ¶
func (c *Organizations) DescribeOrganization(input *DescribeOrganizationInput) (*DescribeOrganizationOutput, error)
DescribeOrganization API operation for AWS Organizations.
Retrieves information about the organization that the user's account belongs to.
This operation can be called from any account in the organization.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation DescribeOrganization for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeOrganization
func (*Organizations) DescribeOrganizationRequest ¶
func (c *Organizations) DescribeOrganizationRequest(input *DescribeOrganizationInput) (req *request.Request, output *DescribeOrganizationOutput)
DescribeOrganizationRequest generates a "aws/request.Request" representing the client's request for the DescribeOrganization operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See DescribeOrganization for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeOrganization method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the DescribeOrganizationRequest method. req, resp := client.DescribeOrganizationRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeOrganization
func (*Organizations) DescribeOrganizationWithContext ¶ added in v1.8.0
func (c *Organizations) DescribeOrganizationWithContext(ctx aws.Context, input *DescribeOrganizationInput, opts ...request.Option) (*DescribeOrganizationOutput, error)
DescribeOrganizationWithContext is the same as DescribeOrganization with the addition of the ability to pass a context and additional request options.
See DescribeOrganization for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) DescribeOrganizationalUnit ¶
func (c *Organizations) DescribeOrganizationalUnit(input *DescribeOrganizationalUnitInput) (*DescribeOrganizationalUnitOutput, error)
DescribeOrganizationalUnit API operation for AWS Organizations.
Retrieves information about an organizational unit (OU).
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation DescribeOrganizationalUnit for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeOrganizationalUnitNotFoundException "OrganizationalUnitNotFoundException" We can't find an organizational unit (OU) with the OrganizationalUnitId that you specified.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeOrganizationalUnit
func (*Organizations) DescribeOrganizationalUnitRequest ¶
func (c *Organizations) DescribeOrganizationalUnitRequest(input *DescribeOrganizationalUnitInput) (req *request.Request, output *DescribeOrganizationalUnitOutput)
DescribeOrganizationalUnitRequest generates a "aws/request.Request" representing the client's request for the DescribeOrganizationalUnit operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See DescribeOrganizationalUnit for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeOrganizationalUnit method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the DescribeOrganizationalUnitRequest method. req, resp := client.DescribeOrganizationalUnitRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeOrganizationalUnit
func (*Organizations) DescribeOrganizationalUnitWithContext ¶ added in v1.8.0
func (c *Organizations) DescribeOrganizationalUnitWithContext(ctx aws.Context, input *DescribeOrganizationalUnitInput, opts ...request.Option) (*DescribeOrganizationalUnitOutput, error)
DescribeOrganizationalUnitWithContext is the same as DescribeOrganizationalUnit with the addition of the ability to pass a context and additional request options.
See DescribeOrganizationalUnit for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) DescribePolicy ¶
func (c *Organizations) DescribePolicy(input *DescribePolicyInput) (*DescribePolicyOutput, error)
DescribePolicy API operation for AWS Organizations.
Retrieves information about a policy.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation DescribePolicy for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodePolicyNotFoundException "PolicyNotFoundException" We can't find a policy with the PolicyId that you specified.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribePolicy
func (*Organizations) DescribePolicyRequest ¶
func (c *Organizations) DescribePolicyRequest(input *DescribePolicyInput) (req *request.Request, output *DescribePolicyOutput)
DescribePolicyRequest generates a "aws/request.Request" representing the client's request for the DescribePolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See DescribePolicy for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribePolicy method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the DescribePolicyRequest method. req, resp := client.DescribePolicyRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribePolicy
func (*Organizations) DescribePolicyWithContext ¶ added in v1.8.0
func (c *Organizations) DescribePolicyWithContext(ctx aws.Context, input *DescribePolicyInput, opts ...request.Option) (*DescribePolicyOutput, error)
DescribePolicyWithContext is the same as DescribePolicy with the addition of the ability to pass a context and additional request options.
See DescribePolicy for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) DetachPolicy ¶
func (c *Organizations) DetachPolicy(input *DetachPolicyInput) (*DetachPolicyOutput, error)
DetachPolicy API operation for AWS Organizations.
Detaches a policy from a target root, organizational unit, or account. If the policy being detached is a service control policy (SCP), the changes to permissions for IAM users and roles in affected accounts are immediate.
Note: Every root, OU, and account must have at least one SCP attached. If you want to replace the default FullAWSAccess policy with one that limits the permissions that can be delegated, then you must attach the replacement policy before you can remove the default one. This is the authorization strategy of whitelisting (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_about-scps.html#orgs_policies_whitelist). If you instead attach a second SCP and leave the FullAWSAccess SCP still attached, and specify "Effect": "Deny" in the second SCP to override the "Effect": "Allow" in the FullAWSAccess policy (or any other attached SCP), then you are using the authorization strategy of blacklisting (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_about-scps.html#orgs_policies_blacklist).
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation DetachPolicy for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeConstraintViolationException "ConstraintViolationException" Performing this operation violates a minimum or maximum value limit. For example, attempting to removing the last SCP from an OU or root, inviting or creating too many accounts to the organization, or attaching too many policies to an account, OU, or root. This exception includes a reason that contains additional information about the violated limit:
ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. If you need more accounts, contact AWS Support to request an increase in your limit.
Or, The number of invitations that you tried to send would cause you to exceed the limit of accounts in your organization. Send fewer invitations, or contact AWS Support to request an increase in the number of accounts.
Note: deleted and closed accounts still count toward your limit.
HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes you can send in one day.
OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of organizational units you can have in an organization.
OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an organizational unit tree that is too many levels deep.
POLICY_NUMBER_LIMIT_EXCEEDED. You attempted to exceed the number of policies that you can have in an organization.
MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the number of policies of a certain type that can be attached to an entity at one time.
MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a policy from an entity that would cause the entity to have fewer than the minimum number of policies of a certain type required.
ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first agree to the End-User License Agreement (EULA).
ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first complete phone verification.
MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization with this account, you first must associate a payment instrument, such as a credit card, with the account.
MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation with this member account, you first must associate a payment instrument, such as a credit card, with the account.
ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of accounts that you can create in one day.
MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account in this organization, you first must migrate the organization's master account to the marketplace that corresponds to the master account's address. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be associated with the same marketplace.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodePolicyNotAttachedException "PolicyNotAttachedException" The policy isn't attached to the specified target in the specified root.
ErrCodePolicyNotFoundException "PolicyNotFoundException" We can't find a policy with the PolicyId that you specified.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTargetNotFoundException "TargetNotFoundException" We can't find a root, OU, or account with the TargetId that you specified.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DetachPolicy
func (*Organizations) DetachPolicyRequest ¶
func (c *Organizations) DetachPolicyRequest(input *DetachPolicyInput) (req *request.Request, output *DetachPolicyOutput)
DetachPolicyRequest generates a "aws/request.Request" representing the client's request for the DetachPolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See DetachPolicy for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DetachPolicy method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the DetachPolicyRequest method. req, resp := client.DetachPolicyRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DetachPolicy
func (*Organizations) DetachPolicyWithContext ¶ added in v1.8.0
func (c *Organizations) DetachPolicyWithContext(ctx aws.Context, input *DetachPolicyInput, opts ...request.Option) (*DetachPolicyOutput, error)
DetachPolicyWithContext is the same as DetachPolicy with the addition of the ability to pass a context and additional request options.
See DetachPolicy for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) DisablePolicyType ¶
func (c *Organizations) DisablePolicyType(input *DisablePolicyTypeInput) (*DisablePolicyTypeOutput, error)
DisablePolicyType API operation for AWS Organizations.
Disables an organizational control policy type in a root. A poicy of a certain type can be attached to entities in a root only if that type is enabled in the root. After you perform this operation, you no longer can attach policies of the specified type to that root or to any OU or account in that root. You can undo this by using the EnablePolicyType operation.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation DisablePolicyType for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeConstraintViolationException "ConstraintViolationException" Performing this operation violates a minimum or maximum value limit. For example, attempting to removing the last SCP from an OU or root, inviting or creating too many accounts to the organization, or attaching too many policies to an account, OU, or root. This exception includes a reason that contains additional information about the violated limit:
ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. If you need more accounts, contact AWS Support to request an increase in your limit.
Or, The number of invitations that you tried to send would cause you to exceed the limit of accounts in your organization. Send fewer invitations, or contact AWS Support to request an increase in the number of accounts.
Note: deleted and closed accounts still count toward your limit.
HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes you can send in one day.
OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of organizational units you can have in an organization.
OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an organizational unit tree that is too many levels deep.
POLICY_NUMBER_LIMIT_EXCEEDED. You attempted to exceed the number of policies that you can have in an organization.
MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the number of policies of a certain type that can be attached to an entity at one time.
MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a policy from an entity that would cause the entity to have fewer than the minimum number of policies of a certain type required.
ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first agree to the End-User License Agreement (EULA).
ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first complete phone verification.
MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization with this account, you first must associate a payment instrument, such as a credit card, with the account.
MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation with this member account, you first must associate a payment instrument, such as a credit card, with the account.
ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of accounts that you can create in one day.
MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account in this organization, you first must migrate the organization's master account to the marketplace that corresponds to the master account's address. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be associated with the same marketplace.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodePolicyTypeNotEnabledException "PolicyTypeNotEnabledException" The specified policy type is not currently enabled in this root. You cannot attach policies of the specified type to entities in a root until you enable that type in the root. For more information, see Enabling All Features in Your Organization (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_org_support-all-features.html) in the AWS Organizations User Guide.
ErrCodeRootNotFoundException "RootNotFoundException" We can't find a root with the RootId that you specified.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DisablePolicyType
func (*Organizations) DisablePolicyTypeRequest ¶
func (c *Organizations) DisablePolicyTypeRequest(input *DisablePolicyTypeInput) (req *request.Request, output *DisablePolicyTypeOutput)
DisablePolicyTypeRequest generates a "aws/request.Request" representing the client's request for the DisablePolicyType operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See DisablePolicyType for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DisablePolicyType method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the DisablePolicyTypeRequest method. req, resp := client.DisablePolicyTypeRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DisablePolicyType
func (*Organizations) DisablePolicyTypeWithContext ¶ added in v1.8.0
func (c *Organizations) DisablePolicyTypeWithContext(ctx aws.Context, input *DisablePolicyTypeInput, opts ...request.Option) (*DisablePolicyTypeOutput, error)
DisablePolicyTypeWithContext is the same as DisablePolicyType with the addition of the ability to pass a context and additional request options.
See DisablePolicyType for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) EnableAllFeatures ¶
func (c *Organizations) EnableAllFeatures(input *EnableAllFeaturesInput) (*EnableAllFeaturesOutput, error)
EnableAllFeatures API operation for AWS Organizations.
Enables all features in an organization. This enables the use of organization policies that can restrict the services and actions that can be called in each account. Until you enable all features, you have access only to consolidated billing, and you can't use any of the advanced account administration features that AWS Organizations supports. For more information, see Enabling All Features in Your Organization (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_org_support-all-features.html) in the AWS Organizations User Guide.
This operation is required only for organizations that were created explicitly with only the consolidated billing features enabled, or that were migrated from a Consolidated Billing account family to Organizations. Calling this operation sends a handshake to every invited account in the organization. The feature set change can be finalized and the additional features enabled only after all administrators in the invited accounts approve the change by accepting the handshake.
After all invited member accounts accept the handshake, you finalize the feature set change by accepting the handshake that contains "Action": "ENABLE_ALL_FEATURES". This completes the change.
After you enable all features in your organization, the master account in the organization can apply policies on all member accounts. These policies can restrict what users and even administrators in those accounts can do. The master account can apply policies that prevent accounts from leaving the organization. Ensure that your account administrators are aware of this.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation EnableAllFeatures for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeHandshakeConstraintViolationException "HandshakeConstraintViolationException" The requested operation would violate the constraint identified in the reason code.
ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. Note: deleted and closed accounts still count toward your limit.
HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes you can send in one day.
ALREADY_IN_AN_ORGANIZATION: The handshake request is invalid because the invited account is already a member of an organization.
ORGANIZATION_ALREADY_HAS_ALL_FEATURES: The handshake request is invalid because the organization has already enabled all features.
INVITE_DISABLED_DURING_ENABLE_ALL_FEATURES: You cannot issue new invitations to join an organization while it is in the process of enabling all features. You can resume inviting accounts after you finalize the process when all accounts have agreed to the change.
PAYMENT_INSTRUMENT_REQUIRED: You cannot complete the operation with an account that does not have a payment instrument, such as a credit card, associated with it.
ORGANIZATION_FROM_DIFFERENT_SELLER_OF_RECORD: The request failed because the account is from a different marketplace than the accounts in the organization. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be from the same marketplace.
ORGANIZATION_MEMBERSHIP_CHANGE_RATE_LIMIT_EXCEEDED: You attempted to change the membership of an account too quickly after its previous change.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/EnableAllFeatures
func (*Organizations) EnableAllFeaturesRequest ¶
func (c *Organizations) EnableAllFeaturesRequest(input *EnableAllFeaturesInput) (req *request.Request, output *EnableAllFeaturesOutput)
EnableAllFeaturesRequest generates a "aws/request.Request" representing the client's request for the EnableAllFeatures operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See EnableAllFeatures for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the EnableAllFeatures method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the EnableAllFeaturesRequest method. req, resp := client.EnableAllFeaturesRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/EnableAllFeatures
func (*Organizations) EnableAllFeaturesWithContext ¶ added in v1.8.0
func (c *Organizations) EnableAllFeaturesWithContext(ctx aws.Context, input *EnableAllFeaturesInput, opts ...request.Option) (*EnableAllFeaturesOutput, error)
EnableAllFeaturesWithContext is the same as EnableAllFeatures with the addition of the ability to pass a context and additional request options.
See EnableAllFeatures for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) EnablePolicyType ¶
func (c *Organizations) EnablePolicyType(input *EnablePolicyTypeInput) (*EnablePolicyTypeOutput, error)
EnablePolicyType API operation for AWS Organizations.
Enables a policy type in a root. After you enable a policy type in a root, you can attach policies of that type to the root, any OU, or account in that root. You can undo this by using the DisablePolicyType operation.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation EnablePolicyType for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeConstraintViolationException "ConstraintViolationException" Performing this operation violates a minimum or maximum value limit. For example, attempting to removing the last SCP from an OU or root, inviting or creating too many accounts to the organization, or attaching too many policies to an account, OU, or root. This exception includes a reason that contains additional information about the violated limit:
ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. If you need more accounts, contact AWS Support to request an increase in your limit.
Or, The number of invitations that you tried to send would cause you to exceed the limit of accounts in your organization. Send fewer invitations, or contact AWS Support to request an increase in the number of accounts.
Note: deleted and closed accounts still count toward your limit.
HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes you can send in one day.
OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of organizational units you can have in an organization.
OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an organizational unit tree that is too many levels deep.
POLICY_NUMBER_LIMIT_EXCEEDED. You attempted to exceed the number of policies that you can have in an organization.
MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the number of policies of a certain type that can be attached to an entity at one time.
MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a policy from an entity that would cause the entity to have fewer than the minimum number of policies of a certain type required.
ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first agree to the End-User License Agreement (EULA).
ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first complete phone verification.
MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization with this account, you first must associate a payment instrument, such as a credit card, with the account.
MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation with this member account, you first must associate a payment instrument, such as a credit card, with the account.
ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of accounts that you can create in one day.
MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account in this organization, you first must migrate the organization's master account to the marketplace that corresponds to the master account's address. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be associated with the same marketplace.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodePolicyTypeAlreadyEnabledException "PolicyTypeAlreadyEnabledException" The specified policy type is already enabled in the specified root.
ErrCodeRootNotFoundException "RootNotFoundException" We can't find a root with the RootId that you specified.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
ErrCodePolicyTypeNotAvailableForOrganizationException "PolicyTypeNotAvailableForOrganizationException" You can't use the specified policy type with the feature set currently enabled for this organization. For example, you can enable service control policies (SCPs) only after you enable all features in the organization. For more information, see Enabling and Disabling a Policy Type on a Root (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies.html#enable_policies_on_root) in the AWS Organizations User Guide.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/EnablePolicyType
func (*Organizations) EnablePolicyTypeRequest ¶
func (c *Organizations) EnablePolicyTypeRequest(input *EnablePolicyTypeInput) (req *request.Request, output *EnablePolicyTypeOutput)
EnablePolicyTypeRequest generates a "aws/request.Request" representing the client's request for the EnablePolicyType operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See EnablePolicyType for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the EnablePolicyType method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the EnablePolicyTypeRequest method. req, resp := client.EnablePolicyTypeRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/EnablePolicyType
func (*Organizations) EnablePolicyTypeWithContext ¶ added in v1.8.0
func (c *Organizations) EnablePolicyTypeWithContext(ctx aws.Context, input *EnablePolicyTypeInput, opts ...request.Option) (*EnablePolicyTypeOutput, error)
EnablePolicyTypeWithContext is the same as EnablePolicyType with the addition of the ability to pass a context and additional request options.
See EnablePolicyType for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) InviteAccountToOrganization ¶
func (c *Organizations) InviteAccountToOrganization(input *InviteAccountToOrganizationInput) (*InviteAccountToOrganizationOutput, error)
InviteAccountToOrganization API operation for AWS Organizations.
Sends an invitation to another account to join your organization as a member account. Organizations sends email on your behalf to the email address that is associated with the other account's owner. The invitation is implemented as a Handshake whose details are in the response.
You can invite AWS accounts only from the same reseller as the master account. For example, if your organization's master account was created by Amazon Internet Services Pvt. Ltd (AISPL), an AWS reseller in India, then you can only invite other AISPL accounts to your organization. You can't combine accounts from AISPL and AWS. For more information, see Consolidated Billing in India (http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/useconsolidatedbilliing-India.html).
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation InviteAccountToOrganization for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeHandshakeConstraintViolationException "HandshakeConstraintViolationException" The requested operation would violate the constraint identified in the reason code.
ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. Note: deleted and closed accounts still count toward your limit.
HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes you can send in one day.
ALREADY_IN_AN_ORGANIZATION: The handshake request is invalid because the invited account is already a member of an organization.
ORGANIZATION_ALREADY_HAS_ALL_FEATURES: The handshake request is invalid because the organization has already enabled all features.
INVITE_DISABLED_DURING_ENABLE_ALL_FEATURES: You cannot issue new invitations to join an organization while it is in the process of enabling all features. You can resume inviting accounts after you finalize the process when all accounts have agreed to the change.
PAYMENT_INSTRUMENT_REQUIRED: You cannot complete the operation with an account that does not have a payment instrument, such as a credit card, associated with it.
ORGANIZATION_FROM_DIFFERENT_SELLER_OF_RECORD: The request failed because the account is from a different marketplace than the accounts in the organization. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be from the same marketplace.
ORGANIZATION_MEMBERSHIP_CHANGE_RATE_LIMIT_EXCEEDED: You attempted to change the membership of an account too quickly after its previous change.
ErrCodeDuplicateHandshakeException "DuplicateHandshakeException" A handshake with the same action and target already exists. For example, if you invited an account to join your organization, the invited account might already have a pending invitation from this organization. If you intend to resend an invitation to an account, ensure that existing handshakes that might be considered duplicates are canceled or declined.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeFinalizingOrganizationException "FinalizingOrganizationException" AWS Organizations could not finalize the creation of your organization. Try again later. If this persists, contact AWS customer support.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/InviteAccountToOrganization
func (*Organizations) InviteAccountToOrganizationRequest ¶
func (c *Organizations) InviteAccountToOrganizationRequest(input *InviteAccountToOrganizationInput) (req *request.Request, output *InviteAccountToOrganizationOutput)
InviteAccountToOrganizationRequest generates a "aws/request.Request" representing the client's request for the InviteAccountToOrganization operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See InviteAccountToOrganization for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the InviteAccountToOrganization method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the InviteAccountToOrganizationRequest method. req, resp := client.InviteAccountToOrganizationRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/InviteAccountToOrganization
func (*Organizations) InviteAccountToOrganizationWithContext ¶ added in v1.8.0
func (c *Organizations) InviteAccountToOrganizationWithContext(ctx aws.Context, input *InviteAccountToOrganizationInput, opts ...request.Option) (*InviteAccountToOrganizationOutput, error)
InviteAccountToOrganizationWithContext is the same as InviteAccountToOrganization with the addition of the ability to pass a context and additional request options.
See InviteAccountToOrganization for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) LeaveOrganization ¶
func (c *Organizations) LeaveOrganization(input *LeaveOrganizationInput) (*LeaveOrganizationOutput, error)
LeaveOrganization API operation for AWS Organizations.
Removes a member account from its parent organization. This version of the operation is performed by the account that wants to leave. To remove a member account as a user in the master account, use RemoveAccountFromOrganization instead.
This operation can be called only from a member account in the organization.
The master account in an organization with all features enabled can set service control policies (SCPs) that can restrict what administrators of member accounts can do, including preventing them from successfully calling LeaveOrganization and leaving the organization.
If you created the account using the AWS Organizations console, the Organizations API, or the Organizations CLI commands, then you cannot remove the account.
You can leave an organization only after you enable IAM user access to billing in your account. For more information, see Activating Access to the Billing and Cost Management Console (http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/grantaccess.html#ControllingAccessWebsite-Activate) in the AWS Billing and Cost Management User Guide.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation LeaveOrganization for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAccountNotFoundException "AccountNotFoundException" We can't find an AWS account with the AccountId that you specified, or the account whose credentials you used to make this request is not a member of an organization.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeConstraintViolationException "ConstraintViolationException" Performing this operation violates a minimum or maximum value limit. For example, attempting to removing the last SCP from an OU or root, inviting or creating too many accounts to the organization, or attaching too many policies to an account, OU, or root. This exception includes a reason that contains additional information about the violated limit:
ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. If you need more accounts, contact AWS Support to request an increase in your limit.
Or, The number of invitations that you tried to send would cause you to exceed the limit of accounts in your organization. Send fewer invitations, or contact AWS Support to request an increase in the number of accounts.
Note: deleted and closed accounts still count toward your limit.
HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes you can send in one day.
OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of organizational units you can have in an organization.
OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an organizational unit tree that is too many levels deep.
POLICY_NUMBER_LIMIT_EXCEEDED. You attempted to exceed the number of policies that you can have in an organization.
MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the number of policies of a certain type that can be attached to an entity at one time.
MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a policy from an entity that would cause the entity to have fewer than the minimum number of policies of a certain type required.
ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first agree to the End-User License Agreement (EULA).
ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first complete phone verification.
MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization with this account, you first must associate a payment instrument, such as a credit card, with the account.
MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation with this member account, you first must associate a payment instrument, such as a credit card, with the account.
ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of accounts that you can create in one day.
MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account in this organization, you first must migrate the organization's master account to the marketplace that corresponds to the master account's address. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be associated with the same marketplace.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeMasterCannotLeaveOrganizationException "MasterCannotLeaveOrganizationException" You can't remove a master account from an organization. If you want the master account to become a member account in another organization, you must first delete the current organization of the master account.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/LeaveOrganization
func (*Organizations) LeaveOrganizationRequest ¶
func (c *Organizations) LeaveOrganizationRequest(input *LeaveOrganizationInput) (req *request.Request, output *LeaveOrganizationOutput)
LeaveOrganizationRequest generates a "aws/request.Request" representing the client's request for the LeaveOrganization operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See LeaveOrganization for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the LeaveOrganization method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the LeaveOrganizationRequest method. req, resp := client.LeaveOrganizationRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/LeaveOrganization
func (*Organizations) LeaveOrganizationWithContext ¶ added in v1.8.0
func (c *Organizations) LeaveOrganizationWithContext(ctx aws.Context, input *LeaveOrganizationInput, opts ...request.Option) (*LeaveOrganizationOutput, error)
LeaveOrganizationWithContext is the same as LeaveOrganization with the addition of the ability to pass a context and additional request options.
See LeaveOrganization for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListAccounts ¶
func (c *Organizations) ListAccounts(input *ListAccountsInput) (*ListAccountsOutput, error)
ListAccounts API operation for AWS Organizations.
Lists all the accounts in the organization. To request only the accounts in a root or OU, use the ListAccountsForParent operation instead.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation ListAccounts for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListAccounts
func (*Organizations) ListAccountsForParent ¶
func (c *Organizations) ListAccountsForParent(input *ListAccountsForParentInput) (*ListAccountsForParentOutput, error)
ListAccountsForParent API operation for AWS Organizations.
Lists the accounts in an organization that are contained by the specified target root or organizational unit (OU). If you specify the root, you get a list of all the accounts that are not in any OU. If you specify an OU, you get a list of all the accounts in only that OU, and not in any child OUs. To get a list of all accounts in the organization, use the ListAccounts operation.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation ListAccountsForParent for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeParentNotFoundException "ParentNotFoundException" We can't find a root or organizational unit (OU) with the ParentId that you specified.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListAccountsForParent
func (*Organizations) ListAccountsForParentPages ¶ added in v1.8.22
func (c *Organizations) ListAccountsForParentPages(input *ListAccountsForParentInput, fn func(*ListAccountsForParentOutput, bool) bool) error
ListAccountsForParentPages iterates over the pages of a ListAccountsForParent operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListAccountsForParent method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a ListAccountsForParent operation. pageNum := 0 err := client.ListAccountsForParentPages(params, func(page *ListAccountsForParentOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (*Organizations) ListAccountsForParentPagesWithContext ¶ added in v1.8.22
func (c *Organizations) ListAccountsForParentPagesWithContext(ctx aws.Context, input *ListAccountsForParentInput, fn func(*ListAccountsForParentOutput, bool) bool, opts ...request.Option) error
ListAccountsForParentPagesWithContext same as ListAccountsForParentPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListAccountsForParentRequest ¶
func (c *Organizations) ListAccountsForParentRequest(input *ListAccountsForParentInput) (req *request.Request, output *ListAccountsForParentOutput)
ListAccountsForParentRequest generates a "aws/request.Request" representing the client's request for the ListAccountsForParent operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See ListAccountsForParent for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListAccountsForParent method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the ListAccountsForParentRequest method. req, resp := client.ListAccountsForParentRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListAccountsForParent
func (*Organizations) ListAccountsForParentWithContext ¶ added in v1.8.0
func (c *Organizations) ListAccountsForParentWithContext(ctx aws.Context, input *ListAccountsForParentInput, opts ...request.Option) (*ListAccountsForParentOutput, error)
ListAccountsForParentWithContext is the same as ListAccountsForParent with the addition of the ability to pass a context and additional request options.
See ListAccountsForParent for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListAccountsPages ¶ added in v1.8.22
func (c *Organizations) ListAccountsPages(input *ListAccountsInput, fn func(*ListAccountsOutput, bool) bool) error
ListAccountsPages iterates over the pages of a ListAccounts operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListAccounts method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a ListAccounts operation. pageNum := 0 err := client.ListAccountsPages(params, func(page *ListAccountsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (*Organizations) ListAccountsPagesWithContext ¶ added in v1.8.22
func (c *Organizations) ListAccountsPagesWithContext(ctx aws.Context, input *ListAccountsInput, fn func(*ListAccountsOutput, bool) bool, opts ...request.Option) error
ListAccountsPagesWithContext same as ListAccountsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListAccountsRequest ¶
func (c *Organizations) ListAccountsRequest(input *ListAccountsInput) (req *request.Request, output *ListAccountsOutput)
ListAccountsRequest generates a "aws/request.Request" representing the client's request for the ListAccounts operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See ListAccounts for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListAccounts method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the ListAccountsRequest method. req, resp := client.ListAccountsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListAccounts
func (*Organizations) ListAccountsWithContext ¶ added in v1.8.0
func (c *Organizations) ListAccountsWithContext(ctx aws.Context, input *ListAccountsInput, opts ...request.Option) (*ListAccountsOutput, error)
ListAccountsWithContext is the same as ListAccounts with the addition of the ability to pass a context and additional request options.
See ListAccounts for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListChildren ¶
func (c *Organizations) ListChildren(input *ListChildrenInput) (*ListChildrenOutput, error)
ListChildren API operation for AWS Organizations.
Lists all of the OUs or accounts that are contained in the specified parent OU or root. This operation, along with ListParents enables you to traverse the tree structure that makes up this root.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation ListChildren for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeParentNotFoundException "ParentNotFoundException" We can't find a root or organizational unit (OU) with the ParentId that you specified.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListChildren
func (*Organizations) ListChildrenPages ¶ added in v1.8.22
func (c *Organizations) ListChildrenPages(input *ListChildrenInput, fn func(*ListChildrenOutput, bool) bool) error
ListChildrenPages iterates over the pages of a ListChildren operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListChildren method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a ListChildren operation. pageNum := 0 err := client.ListChildrenPages(params, func(page *ListChildrenOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (*Organizations) ListChildrenPagesWithContext ¶ added in v1.8.22
func (c *Organizations) ListChildrenPagesWithContext(ctx aws.Context, input *ListChildrenInput, fn func(*ListChildrenOutput, bool) bool, opts ...request.Option) error
ListChildrenPagesWithContext same as ListChildrenPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListChildrenRequest ¶
func (c *Organizations) ListChildrenRequest(input *ListChildrenInput) (req *request.Request, output *ListChildrenOutput)
ListChildrenRequest generates a "aws/request.Request" representing the client's request for the ListChildren operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See ListChildren for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListChildren method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the ListChildrenRequest method. req, resp := client.ListChildrenRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListChildren
func (*Organizations) ListChildrenWithContext ¶ added in v1.8.0
func (c *Organizations) ListChildrenWithContext(ctx aws.Context, input *ListChildrenInput, opts ...request.Option) (*ListChildrenOutput, error)
ListChildrenWithContext is the same as ListChildren with the addition of the ability to pass a context and additional request options.
See ListChildren for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListCreateAccountStatus ¶
func (c *Organizations) ListCreateAccountStatus(input *ListCreateAccountStatusInput) (*ListCreateAccountStatusOutput, error)
ListCreateAccountStatus API operation for AWS Organizations.
Lists the account creation requests that match the specified status that is currently being tracked for the organization.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation ListCreateAccountStatus for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListCreateAccountStatus
func (*Organizations) ListCreateAccountStatusPages ¶ added in v1.8.22
func (c *Organizations) ListCreateAccountStatusPages(input *ListCreateAccountStatusInput, fn func(*ListCreateAccountStatusOutput, bool) bool) error
ListCreateAccountStatusPages iterates over the pages of a ListCreateAccountStatus operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListCreateAccountStatus method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a ListCreateAccountStatus operation. pageNum := 0 err := client.ListCreateAccountStatusPages(params, func(page *ListCreateAccountStatusOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (*Organizations) ListCreateAccountStatusPagesWithContext ¶ added in v1.8.22
func (c *Organizations) ListCreateAccountStatusPagesWithContext(ctx aws.Context, input *ListCreateAccountStatusInput, fn func(*ListCreateAccountStatusOutput, bool) bool, opts ...request.Option) error
ListCreateAccountStatusPagesWithContext same as ListCreateAccountStatusPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListCreateAccountStatusRequest ¶
func (c *Organizations) ListCreateAccountStatusRequest(input *ListCreateAccountStatusInput) (req *request.Request, output *ListCreateAccountStatusOutput)
ListCreateAccountStatusRequest generates a "aws/request.Request" representing the client's request for the ListCreateAccountStatus operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See ListCreateAccountStatus for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListCreateAccountStatus method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the ListCreateAccountStatusRequest method. req, resp := client.ListCreateAccountStatusRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListCreateAccountStatus
func (*Organizations) ListCreateAccountStatusWithContext ¶ added in v1.8.0
func (c *Organizations) ListCreateAccountStatusWithContext(ctx aws.Context, input *ListCreateAccountStatusInput, opts ...request.Option) (*ListCreateAccountStatusOutput, error)
ListCreateAccountStatusWithContext is the same as ListCreateAccountStatus with the addition of the ability to pass a context and additional request options.
See ListCreateAccountStatus for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListHandshakesForAccount ¶
func (c *Organizations) ListHandshakesForAccount(input *ListHandshakesForAccountInput) (*ListHandshakesForAccountOutput, error)
ListHandshakesForAccount API operation for AWS Organizations.
Lists the current handshakes that are associated with the account of the requesting user.
Handshakes that are ACCEPTED, DECLINED, or CANCELED appear in the results of this API for only 30 days after changing to that state. After that they are deleted and no longer accessible.
This operation can be called from any account in the organization.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation ListHandshakesForAccount for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListHandshakesForAccount
func (*Organizations) ListHandshakesForAccountPages ¶ added in v1.8.22
func (c *Organizations) ListHandshakesForAccountPages(input *ListHandshakesForAccountInput, fn func(*ListHandshakesForAccountOutput, bool) bool) error
ListHandshakesForAccountPages iterates over the pages of a ListHandshakesForAccount operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListHandshakesForAccount method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a ListHandshakesForAccount operation. pageNum := 0 err := client.ListHandshakesForAccountPages(params, func(page *ListHandshakesForAccountOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (*Organizations) ListHandshakesForAccountPagesWithContext ¶ added in v1.8.22
func (c *Organizations) ListHandshakesForAccountPagesWithContext(ctx aws.Context, input *ListHandshakesForAccountInput, fn func(*ListHandshakesForAccountOutput, bool) bool, opts ...request.Option) error
ListHandshakesForAccountPagesWithContext same as ListHandshakesForAccountPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListHandshakesForAccountRequest ¶
func (c *Organizations) ListHandshakesForAccountRequest(input *ListHandshakesForAccountInput) (req *request.Request, output *ListHandshakesForAccountOutput)
ListHandshakesForAccountRequest generates a "aws/request.Request" representing the client's request for the ListHandshakesForAccount operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See ListHandshakesForAccount for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListHandshakesForAccount method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the ListHandshakesForAccountRequest method. req, resp := client.ListHandshakesForAccountRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListHandshakesForAccount
func (*Organizations) ListHandshakesForAccountWithContext ¶ added in v1.8.0
func (c *Organizations) ListHandshakesForAccountWithContext(ctx aws.Context, input *ListHandshakesForAccountInput, opts ...request.Option) (*ListHandshakesForAccountOutput, error)
ListHandshakesForAccountWithContext is the same as ListHandshakesForAccount with the addition of the ability to pass a context and additional request options.
See ListHandshakesForAccount for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListHandshakesForOrganization ¶
func (c *Organizations) ListHandshakesForOrganization(input *ListHandshakesForOrganizationInput) (*ListHandshakesForOrganizationOutput, error)
ListHandshakesForOrganization API operation for AWS Organizations.
Lists the handshakes that are associated with the organization that the requesting user is part of. The ListHandshakesForOrganization operation returns a list of handshake structures. Each structure contains details and status about a handshake.
Handshakes that are ACCEPTED, DECLINED, or CANCELED appear in the results of this API for only 30 days after changing to that state. After that they are deleted and no longer accessible.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation ListHandshakesForOrganization for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListHandshakesForOrganization
func (*Organizations) ListHandshakesForOrganizationPages ¶ added in v1.8.22
func (c *Organizations) ListHandshakesForOrganizationPages(input *ListHandshakesForOrganizationInput, fn func(*ListHandshakesForOrganizationOutput, bool) bool) error
ListHandshakesForOrganizationPages iterates over the pages of a ListHandshakesForOrganization operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListHandshakesForOrganization method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a ListHandshakesForOrganization operation. pageNum := 0 err := client.ListHandshakesForOrganizationPages(params, func(page *ListHandshakesForOrganizationOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (*Organizations) ListHandshakesForOrganizationPagesWithContext ¶ added in v1.8.22
func (c *Organizations) ListHandshakesForOrganizationPagesWithContext(ctx aws.Context, input *ListHandshakesForOrganizationInput, fn func(*ListHandshakesForOrganizationOutput, bool) bool, opts ...request.Option) error
ListHandshakesForOrganizationPagesWithContext same as ListHandshakesForOrganizationPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListHandshakesForOrganizationRequest ¶
func (c *Organizations) ListHandshakesForOrganizationRequest(input *ListHandshakesForOrganizationInput) (req *request.Request, output *ListHandshakesForOrganizationOutput)
ListHandshakesForOrganizationRequest generates a "aws/request.Request" representing the client's request for the ListHandshakesForOrganization operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See ListHandshakesForOrganization for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListHandshakesForOrganization method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the ListHandshakesForOrganizationRequest method. req, resp := client.ListHandshakesForOrganizationRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListHandshakesForOrganization
func (*Organizations) ListHandshakesForOrganizationWithContext ¶ added in v1.8.0
func (c *Organizations) ListHandshakesForOrganizationWithContext(ctx aws.Context, input *ListHandshakesForOrganizationInput, opts ...request.Option) (*ListHandshakesForOrganizationOutput, error)
ListHandshakesForOrganizationWithContext is the same as ListHandshakesForOrganization with the addition of the ability to pass a context and additional request options.
See ListHandshakesForOrganization for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListOrganizationalUnitsForParent ¶
func (c *Organizations) ListOrganizationalUnitsForParent(input *ListOrganizationalUnitsForParentInput) (*ListOrganizationalUnitsForParentOutput, error)
ListOrganizationalUnitsForParent API operation for AWS Organizations.
Lists the organizational units (OUs) in a parent organizational unit or root.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation ListOrganizationalUnitsForParent for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeParentNotFoundException "ParentNotFoundException" We can't find a root or organizational unit (OU) with the ParentId that you specified.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListOrganizationalUnitsForParent
func (*Organizations) ListOrganizationalUnitsForParentPages ¶ added in v1.8.22
func (c *Organizations) ListOrganizationalUnitsForParentPages(input *ListOrganizationalUnitsForParentInput, fn func(*ListOrganizationalUnitsForParentOutput, bool) bool) error
ListOrganizationalUnitsForParentPages iterates over the pages of a ListOrganizationalUnitsForParent operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListOrganizationalUnitsForParent method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a ListOrganizationalUnitsForParent operation. pageNum := 0 err := client.ListOrganizationalUnitsForParentPages(params, func(page *ListOrganizationalUnitsForParentOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (*Organizations) ListOrganizationalUnitsForParentPagesWithContext ¶ added in v1.8.22
func (c *Organizations) ListOrganizationalUnitsForParentPagesWithContext(ctx aws.Context, input *ListOrganizationalUnitsForParentInput, fn func(*ListOrganizationalUnitsForParentOutput, bool) bool, opts ...request.Option) error
ListOrganizationalUnitsForParentPagesWithContext same as ListOrganizationalUnitsForParentPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListOrganizationalUnitsForParentRequest ¶
func (c *Organizations) ListOrganizationalUnitsForParentRequest(input *ListOrganizationalUnitsForParentInput) (req *request.Request, output *ListOrganizationalUnitsForParentOutput)
ListOrganizationalUnitsForParentRequest generates a "aws/request.Request" representing the client's request for the ListOrganizationalUnitsForParent operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See ListOrganizationalUnitsForParent for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListOrganizationalUnitsForParent method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the ListOrganizationalUnitsForParentRequest method. req, resp := client.ListOrganizationalUnitsForParentRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListOrganizationalUnitsForParent
func (*Organizations) ListOrganizationalUnitsForParentWithContext ¶ added in v1.8.0
func (c *Organizations) ListOrganizationalUnitsForParentWithContext(ctx aws.Context, input *ListOrganizationalUnitsForParentInput, opts ...request.Option) (*ListOrganizationalUnitsForParentOutput, error)
ListOrganizationalUnitsForParentWithContext is the same as ListOrganizationalUnitsForParent with the addition of the ability to pass a context and additional request options.
See ListOrganizationalUnitsForParent for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListParents ¶
func (c *Organizations) ListParents(input *ListParentsInput) (*ListParentsOutput, error)
ListParents API operation for AWS Organizations.
Lists the root or organizational units (OUs) that serve as the immediate parent of the specified child OU or account. This operation, along with ListChildren enables you to traverse the tree structure that makes up this root.
This operation can be called only from the organization's master account.
In the current release, a child can have only a single parent.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation ListParents for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeChildNotFoundException "ChildNotFoundException" We can't find an organizational unit (OU) or AWS account with the ChildId that you specified.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListParents
func (*Organizations) ListParentsPages ¶ added in v1.8.22
func (c *Organizations) ListParentsPages(input *ListParentsInput, fn func(*ListParentsOutput, bool) bool) error
ListParentsPages iterates over the pages of a ListParents operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListParents method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a ListParents operation. pageNum := 0 err := client.ListParentsPages(params, func(page *ListParentsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (*Organizations) ListParentsPagesWithContext ¶ added in v1.8.22
func (c *Organizations) ListParentsPagesWithContext(ctx aws.Context, input *ListParentsInput, fn func(*ListParentsOutput, bool) bool, opts ...request.Option) error
ListParentsPagesWithContext same as ListParentsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListParentsRequest ¶
func (c *Organizations) ListParentsRequest(input *ListParentsInput) (req *request.Request, output *ListParentsOutput)
ListParentsRequest generates a "aws/request.Request" representing the client's request for the ListParents operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See ListParents for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListParents method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the ListParentsRequest method. req, resp := client.ListParentsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListParents
func (*Organizations) ListParentsWithContext ¶ added in v1.8.0
func (c *Organizations) ListParentsWithContext(ctx aws.Context, input *ListParentsInput, opts ...request.Option) (*ListParentsOutput, error)
ListParentsWithContext is the same as ListParents with the addition of the ability to pass a context and additional request options.
See ListParents for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListPolicies ¶
func (c *Organizations) ListPolicies(input *ListPoliciesInput) (*ListPoliciesOutput, error)
ListPolicies API operation for AWS Organizations.
Retrieves the list of all policies in an organization of a specified type.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation ListPolicies for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListPolicies
func (*Organizations) ListPoliciesForTarget ¶
func (c *Organizations) ListPoliciesForTarget(input *ListPoliciesForTargetInput) (*ListPoliciesForTargetOutput, error)
ListPoliciesForTarget API operation for AWS Organizations.
Lists the policies that are directly attached to the specified target root, organizational unit (OU), or account. You must specify the policy type that you want included in the returned list.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation ListPoliciesForTarget for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTargetNotFoundException "TargetNotFoundException" We can't find a root, OU, or account with the TargetId that you specified.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListPoliciesForTarget
func (*Organizations) ListPoliciesForTargetPages ¶ added in v1.8.22
func (c *Organizations) ListPoliciesForTargetPages(input *ListPoliciesForTargetInput, fn func(*ListPoliciesForTargetOutput, bool) bool) error
ListPoliciesForTargetPages iterates over the pages of a ListPoliciesForTarget operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListPoliciesForTarget method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a ListPoliciesForTarget operation. pageNum := 0 err := client.ListPoliciesForTargetPages(params, func(page *ListPoliciesForTargetOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (*Organizations) ListPoliciesForTargetPagesWithContext ¶ added in v1.8.22
func (c *Organizations) ListPoliciesForTargetPagesWithContext(ctx aws.Context, input *ListPoliciesForTargetInput, fn func(*ListPoliciesForTargetOutput, bool) bool, opts ...request.Option) error
ListPoliciesForTargetPagesWithContext same as ListPoliciesForTargetPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListPoliciesForTargetRequest ¶
func (c *Organizations) ListPoliciesForTargetRequest(input *ListPoliciesForTargetInput) (req *request.Request, output *ListPoliciesForTargetOutput)
ListPoliciesForTargetRequest generates a "aws/request.Request" representing the client's request for the ListPoliciesForTarget operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See ListPoliciesForTarget for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListPoliciesForTarget method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the ListPoliciesForTargetRequest method. req, resp := client.ListPoliciesForTargetRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListPoliciesForTarget
func (*Organizations) ListPoliciesForTargetWithContext ¶ added in v1.8.0
func (c *Organizations) ListPoliciesForTargetWithContext(ctx aws.Context, input *ListPoliciesForTargetInput, opts ...request.Option) (*ListPoliciesForTargetOutput, error)
ListPoliciesForTargetWithContext is the same as ListPoliciesForTarget with the addition of the ability to pass a context and additional request options.
See ListPoliciesForTarget for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListPoliciesPages ¶ added in v1.8.22
func (c *Organizations) ListPoliciesPages(input *ListPoliciesInput, fn func(*ListPoliciesOutput, bool) bool) error
ListPoliciesPages iterates over the pages of a ListPolicies operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListPolicies method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a ListPolicies operation. pageNum := 0 err := client.ListPoliciesPages(params, func(page *ListPoliciesOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (*Organizations) ListPoliciesPagesWithContext ¶ added in v1.8.22
func (c *Organizations) ListPoliciesPagesWithContext(ctx aws.Context, input *ListPoliciesInput, fn func(*ListPoliciesOutput, bool) bool, opts ...request.Option) error
ListPoliciesPagesWithContext same as ListPoliciesPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListPoliciesRequest ¶
func (c *Organizations) ListPoliciesRequest(input *ListPoliciesInput) (req *request.Request, output *ListPoliciesOutput)
ListPoliciesRequest generates a "aws/request.Request" representing the client's request for the ListPolicies operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See ListPolicies for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListPolicies method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the ListPoliciesRequest method. req, resp := client.ListPoliciesRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListPolicies
func (*Organizations) ListPoliciesWithContext ¶ added in v1.8.0
func (c *Organizations) ListPoliciesWithContext(ctx aws.Context, input *ListPoliciesInput, opts ...request.Option) (*ListPoliciesOutput, error)
ListPoliciesWithContext is the same as ListPolicies with the addition of the ability to pass a context and additional request options.
See ListPolicies for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListRoots ¶
func (c *Organizations) ListRoots(input *ListRootsInput) (*ListRootsOutput, error)
ListRoots API operation for AWS Organizations.
Lists the roots that are defined in the current organization.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation ListRoots for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListRoots
func (*Organizations) ListRootsPages ¶ added in v1.8.22
func (c *Organizations) ListRootsPages(input *ListRootsInput, fn func(*ListRootsOutput, bool) bool) error
ListRootsPages iterates over the pages of a ListRoots operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListRoots method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a ListRoots operation. pageNum := 0 err := client.ListRootsPages(params, func(page *ListRootsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (*Organizations) ListRootsPagesWithContext ¶ added in v1.8.22
func (c *Organizations) ListRootsPagesWithContext(ctx aws.Context, input *ListRootsInput, fn func(*ListRootsOutput, bool) bool, opts ...request.Option) error
ListRootsPagesWithContext same as ListRootsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListRootsRequest ¶
func (c *Organizations) ListRootsRequest(input *ListRootsInput) (req *request.Request, output *ListRootsOutput)
ListRootsRequest generates a "aws/request.Request" representing the client's request for the ListRoots operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See ListRoots for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListRoots method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the ListRootsRequest method. req, resp := client.ListRootsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListRoots
func (*Organizations) ListRootsWithContext ¶ added in v1.8.0
func (c *Organizations) ListRootsWithContext(ctx aws.Context, input *ListRootsInput, opts ...request.Option) (*ListRootsOutput, error)
ListRootsWithContext is the same as ListRoots with the addition of the ability to pass a context and additional request options.
See ListRoots for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListTargetsForPolicy ¶
func (c *Organizations) ListTargetsForPolicy(input *ListTargetsForPolicyInput) (*ListTargetsForPolicyOutput, error)
ListTargetsForPolicy API operation for AWS Organizations.
Lists all the roots, OUs, and accounts to which the specified policy is attached.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation ListTargetsForPolicy for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodePolicyNotFoundException "PolicyNotFoundException" We can't find a policy with the PolicyId that you specified.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListTargetsForPolicy
func (*Organizations) ListTargetsForPolicyPages ¶ added in v1.8.22
func (c *Organizations) ListTargetsForPolicyPages(input *ListTargetsForPolicyInput, fn func(*ListTargetsForPolicyOutput, bool) bool) error
ListTargetsForPolicyPages iterates over the pages of a ListTargetsForPolicy operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListTargetsForPolicy method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a ListTargetsForPolicy operation. pageNum := 0 err := client.ListTargetsForPolicyPages(params, func(page *ListTargetsForPolicyOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (*Organizations) ListTargetsForPolicyPagesWithContext ¶ added in v1.8.22
func (c *Organizations) ListTargetsForPolicyPagesWithContext(ctx aws.Context, input *ListTargetsForPolicyInput, fn func(*ListTargetsForPolicyOutput, bool) bool, opts ...request.Option) error
ListTargetsForPolicyPagesWithContext same as ListTargetsForPolicyPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) ListTargetsForPolicyRequest ¶
func (c *Organizations) ListTargetsForPolicyRequest(input *ListTargetsForPolicyInput) (req *request.Request, output *ListTargetsForPolicyOutput)
ListTargetsForPolicyRequest generates a "aws/request.Request" representing the client's request for the ListTargetsForPolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See ListTargetsForPolicy for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListTargetsForPolicy method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the ListTargetsForPolicyRequest method. req, resp := client.ListTargetsForPolicyRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListTargetsForPolicy
func (*Organizations) ListTargetsForPolicyWithContext ¶ added in v1.8.0
func (c *Organizations) ListTargetsForPolicyWithContext(ctx aws.Context, input *ListTargetsForPolicyInput, opts ...request.Option) (*ListTargetsForPolicyOutput, error)
ListTargetsForPolicyWithContext is the same as ListTargetsForPolicy with the addition of the ability to pass a context and additional request options.
See ListTargetsForPolicy for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) MoveAccount ¶
func (c *Organizations) MoveAccount(input *MoveAccountInput) (*MoveAccountOutput, error)
MoveAccount API operation for AWS Organizations.
Moves an account from its current source parent root or OU to the specified destination parent root or OU.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation MoveAccount for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeSourceParentNotFoundException "SourceParentNotFoundException" We can't find a source root or OU with the ParentId that you specified.
ErrCodeDestinationParentNotFoundException "DestinationParentNotFoundException" We can't find the destination container (a root or OU) with the ParentId that you specified.
ErrCodeDuplicateAccountException "DuplicateAccountException" That account is already present in the specified destination.
ErrCodeAccountNotFoundException "AccountNotFoundException" We can't find an AWS account with the AccountId that you specified, or the account whose credentials you used to make this request is not a member of an organization.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/MoveAccount
func (*Organizations) MoveAccountRequest ¶
func (c *Organizations) MoveAccountRequest(input *MoveAccountInput) (req *request.Request, output *MoveAccountOutput)
MoveAccountRequest generates a "aws/request.Request" representing the client's request for the MoveAccount operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See MoveAccount for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the MoveAccount method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the MoveAccountRequest method. req, resp := client.MoveAccountRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/MoveAccount
func (*Organizations) MoveAccountWithContext ¶ added in v1.8.0
func (c *Organizations) MoveAccountWithContext(ctx aws.Context, input *MoveAccountInput, opts ...request.Option) (*MoveAccountOutput, error)
MoveAccountWithContext is the same as MoveAccount with the addition of the ability to pass a context and additional request options.
See MoveAccount for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) RemoveAccountFromOrganization ¶
func (c *Organizations) RemoveAccountFromOrganization(input *RemoveAccountFromOrganizationInput) (*RemoveAccountFromOrganizationOutput, error)
RemoveAccountFromOrganization API operation for AWS Organizations.
Removes the specified account from the organization.
The removed account becomes a stand-alone account that is not a member of any organization. It is no longer subject to any policies and is responsible for its own bill payments. The organization's master account is no longer charged for any expenses accrued by the member account after it is removed from the organization.
This operation can be called only from the organization's master account. Member accounts can remove themselves with LeaveOrganization instead.
You can remove only accounts that were created outside your organization and invited to join. If you created the account using the AWS Organizations console, the Organizations API, or the Organizations CLI commands, then you cannot remove the account.
You can remove a member account only after you enable IAM user access to billing in the member account. For more information, see Activating Access to the Billing and Cost Management Console (http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/grantaccess.html#ControllingAccessWebsite-Activate) in the AWS Billing and Cost Management User Guide.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation RemoveAccountFromOrganization for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAccountNotFoundException "AccountNotFoundException" We can't find an AWS account with the AccountId that you specified, or the account whose credentials you used to make this request is not a member of an organization.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeConstraintViolationException "ConstraintViolationException" Performing this operation violates a minimum or maximum value limit. For example, attempting to removing the last SCP from an OU or root, inviting or creating too many accounts to the organization, or attaching too many policies to an account, OU, or root. This exception includes a reason that contains additional information about the violated limit:
ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. If you need more accounts, contact AWS Support to request an increase in your limit.
Or, The number of invitations that you tried to send would cause you to exceed the limit of accounts in your organization. Send fewer invitations, or contact AWS Support to request an increase in the number of accounts.
Note: deleted and closed accounts still count toward your limit.
HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes you can send in one day.
OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of organizational units you can have in an organization.
OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an organizational unit tree that is too many levels deep.
POLICY_NUMBER_LIMIT_EXCEEDED. You attempted to exceed the number of policies that you can have in an organization.
MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the number of policies of a certain type that can be attached to an entity at one time.
MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a policy from an entity that would cause the entity to have fewer than the minimum number of policies of a certain type required.
ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first agree to the End-User License Agreement (EULA).
ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first complete phone verification.
MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization with this account, you first must associate a payment instrument, such as a credit card, with the account.
MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation with this member account, you first must associate a payment instrument, such as a credit card, with the account.
ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of accounts that you can create in one day.
MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account in this organization, you first must migrate the organization's master account to the marketplace that corresponds to the master account's address. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be associated with the same marketplace.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeMasterCannotLeaveOrganizationException "MasterCannotLeaveOrganizationException" You can't remove a master account from an organization. If you want the master account to become a member account in another organization, you must first delete the current organization of the master account.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/RemoveAccountFromOrganization
func (*Organizations) RemoveAccountFromOrganizationRequest ¶
func (c *Organizations) RemoveAccountFromOrganizationRequest(input *RemoveAccountFromOrganizationInput) (req *request.Request, output *RemoveAccountFromOrganizationOutput)
RemoveAccountFromOrganizationRequest generates a "aws/request.Request" representing the client's request for the RemoveAccountFromOrganization operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See RemoveAccountFromOrganization for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the RemoveAccountFromOrganization method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the RemoveAccountFromOrganizationRequest method. req, resp := client.RemoveAccountFromOrganizationRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/RemoveAccountFromOrganization
func (*Organizations) RemoveAccountFromOrganizationWithContext ¶ added in v1.8.0
func (c *Organizations) RemoveAccountFromOrganizationWithContext(ctx aws.Context, input *RemoveAccountFromOrganizationInput, opts ...request.Option) (*RemoveAccountFromOrganizationOutput, error)
RemoveAccountFromOrganizationWithContext is the same as RemoveAccountFromOrganization with the addition of the ability to pass a context and additional request options.
See RemoveAccountFromOrganization for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) UpdateOrganizationalUnit ¶
func (c *Organizations) UpdateOrganizationalUnit(input *UpdateOrganizationalUnitInput) (*UpdateOrganizationalUnitOutput, error)
UpdateOrganizationalUnit API operation for AWS Organizations.
Renames the specified organizational unit (OU). The ID and ARN do not change. The child OUs and accounts remain in place, and any attached policies of the OU remain attached.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation UpdateOrganizationalUnit for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeDuplicateOrganizationalUnitException "DuplicateOrganizationalUnitException" An organizational unit (OU) with the same name already exists.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeOrganizationalUnitNotFoundException "OrganizationalUnitNotFoundException" We can't find an organizational unit (OU) with the OrganizationalUnitId that you specified.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/UpdateOrganizationalUnit
func (*Organizations) UpdateOrganizationalUnitRequest ¶
func (c *Organizations) UpdateOrganizationalUnitRequest(input *UpdateOrganizationalUnitInput) (req *request.Request, output *UpdateOrganizationalUnitOutput)
UpdateOrganizationalUnitRequest generates a "aws/request.Request" representing the client's request for the UpdateOrganizationalUnit operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See UpdateOrganizationalUnit for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UpdateOrganizationalUnit method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the UpdateOrganizationalUnitRequest method. req, resp := client.UpdateOrganizationalUnitRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/UpdateOrganizationalUnit
func (*Organizations) UpdateOrganizationalUnitWithContext ¶ added in v1.8.0
func (c *Organizations) UpdateOrganizationalUnitWithContext(ctx aws.Context, input *UpdateOrganizationalUnitInput, opts ...request.Option) (*UpdateOrganizationalUnitOutput, error)
UpdateOrganizationalUnitWithContext is the same as UpdateOrganizationalUnit with the addition of the ability to pass a context and additional request options.
See UpdateOrganizationalUnit for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*Organizations) UpdatePolicy ¶
func (c *Organizations) UpdatePolicy(input *UpdatePolicyInput) (*UpdatePolicyOutput, error)
UpdatePolicy API operation for AWS Organizations.
Updates an existing policy with a new name, description, or content. If any parameter is not supplied, that value remains unchanged. Note that you cannot change a policy's type.
This operation can be called only from the organization's master account.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Organizations's API operation UpdatePolicy for usage and error information.
Returned Error Codes:
ErrCodeAccessDeniedException "AccessDeniedException" You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management (http://docs.aws.amazon.com/IAM/latest/UserGuide/access.html) in the IAM User Guide.
ErrCodeAWSOrganizationsNotInUseException "AWSOrganizationsNotInUseException" Your account is not a member of an organization. To make this request, you must use the credentials of an account that belongs to an organization.
ErrCodeConcurrentModificationException "ConcurrentModificationException" The target of the operation is currently being modified by a different request. Try again later.
ErrCodeConstraintViolationException "ConstraintViolationException" Performing this operation violates a minimum or maximum value limit. For example, attempting to removing the last SCP from an OU or root, inviting or creating too many accounts to the organization, or attaching too many policies to an account, OU, or root. This exception includes a reason that contains additional information about the violated limit:
ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. If you need more accounts, contact AWS Support to request an increase in your limit.
Or, The number of invitations that you tried to send would cause you to exceed the limit of accounts in your organization. Send fewer invitations, or contact AWS Support to request an increase in the number of accounts.
Note: deleted and closed accounts still count toward your limit.
HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes you can send in one day.
OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of organizational units you can have in an organization.
OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an organizational unit tree that is too many levels deep.
POLICY_NUMBER_LIMIT_EXCEEDED. You attempted to exceed the number of policies that you can have in an organization.
MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the number of policies of a certain type that can be attached to an entity at one time.
MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a policy from an entity that would cause the entity to have fewer than the minimum number of policies of a certain type required.
ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first agree to the End-User License Agreement (EULA).
ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove an account from the organization that does not yet have enough information to exist as a stand-alone account. This account requires you to first complete phone verification.
MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization with this account, you first must associate a payment instrument, such as a credit card, with the account.
MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation with this member account, you first must associate a payment instrument, such as a credit card, with the account.
ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of accounts that you can create in one day.
MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account in this organization, you first must migrate the organization's master account to the marketplace that corresponds to the master account's address. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be associated with the same marketplace.
ErrCodeDuplicatePolicyException "DuplicatePolicyException" A policy with the same name already exists.
ErrCodeInvalidInputException "InvalidInputException" The requested operation failed because you provided invalid values for one or more of the request parameters. This exception includes a reason that contains additional information about the violated limit:
INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account, organization, or email) as a party.
INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid ARN for the organization.
INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID.
INVALID_ENUM: You specified a value that is not valid for that parameter.
INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid characters.
INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least one invalid value.
MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than allowed.
MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value than allowed.
MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than allowed.
MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value than allowed.
IMMUTABLE_POLICY: You specified a policy that is managed by AWS and cannot be modified.
INVALID_PATTERN: You provided a value that doesn't match the required pattern.
INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match the required pattern.
INPUT_REQUIRED: You must include a value for all required parameters.
INVALID_PAGINATION_TOKEN: Get the value for the NextToken parameter from the response to a previous call of the operation.
MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the operation.
MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between entities in the same root.
ErrCodeMalformedPolicyDocumentException "MalformedPolicyDocumentException" The provided policy document does not meet the requirements of the specified policy type. For example, the syntax might be incorrect. For details about service control policy syntax, see Service Control Policy Syntax (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_reference_scp-syntax.html) in the AWS Organizations User Guide.
ErrCodePolicyNotFoundException "PolicyNotFoundException" We can't find a policy with the PolicyId that you specified.
ErrCodeServiceException "ServiceException" AWS Organizations can't complete your request because of an internal service error. Try again later.
ErrCodeTooManyRequestsException "TooManyRequestsException" You've sent too many requests in too short a period of time. The limit helps protect against denial-of-service attacks. Try again later.
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/UpdatePolicy
func (*Organizations) UpdatePolicyRequest ¶
func (c *Organizations) UpdatePolicyRequest(input *UpdatePolicyInput) (req *request.Request, output *UpdatePolicyOutput)
UpdatePolicyRequest generates a "aws/request.Request" representing the client's request for the UpdatePolicy operation. The "output" return value can be used to capture response data after the request's "Send" method is called.
See UpdatePolicy for usage and error information.
Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UpdatePolicy method directly instead.
Note: You must call the "Send" method on the returned request object in order to execute the request.
// Example sending a request using the UpdatePolicyRequest method. req, resp := client.UpdatePolicyRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/UpdatePolicy
func (*Organizations) UpdatePolicyWithContext ¶ added in v1.8.0
func (c *Organizations) UpdatePolicyWithContext(ctx aws.Context, input *UpdatePolicyInput, opts ...request.Option) (*UpdatePolicyOutput, error)
UpdatePolicyWithContext is the same as UpdatePolicy with the addition of the ability to pass a context and additional request options.
See UpdatePolicy for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
type Parent ¶
type Parent struct { // The unique identifier (ID) of the parent entity. // // The regex pattern (http://wikipedia.org/wiki/regex) for a parent ID string // requires one of the following: // // * Root: a string that begins with "r-" followed by from 4 to 32 lower-case // letters or digits. // // * Organizational unit (OU): a string that begins with "ou-" followed by // from 4 to 32 lower-case letters or digits (the ID of the root that the // OU is in) followed by a second "-" dash and from 8 to 32 additional lower-case // letters or digits. Id *string `type:"string"` // The type of the parent entity. Type *string `type:"string" enum:"ParentType"` // contains filtered or unexported fields }
Contains information about either a root or an organizational unit (OU) that can contain OUs or accounts in an organization. Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/Parent
type Policy ¶
type Policy struct { // The text content of the policy. Content *string `min:"1" type:"string"` // A structure that contains additional details about the policy. PolicySummary *PolicySummary `type:"structure"` // contains filtered or unexported fields }
Contains rules to be applied to the affected accounts. Policies can be attached directly to accounts, or to roots and OUs to affect all accounts in those hierarchies. Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/Policy
func (*Policy) SetContent ¶
SetContent sets the Content field's value.
func (*Policy) SetPolicySummary ¶
func (s *Policy) SetPolicySummary(v *PolicySummary) *Policy
SetPolicySummary sets the PolicySummary field's value.
type PolicySummary ¶
type PolicySummary struct { // The Amazon Resource Name (ARN) of the policy. // // For more information about ARNs in Organizations, see ARN Formats Supported // by Organizations (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_permissions.html#orgs-permissions-arns) // in the AWS Organizations User Guide. Arn *string `type:"string"` // A boolean value that indicates whether the specified policy is an AWS managed // policy. If true, then you can attach the policy to roots, OUs, or accounts, // but you cannot edit it. AwsManaged *bool `type:"boolean"` // The description of the policy. Description *string `type:"string"` // The unique identifier (ID) of the policy. // // The regex pattern (http://wikipedia.org/wiki/regex) for a policy ID string // requires "p-" followed by from 8 to 128 lower-case letters or digits. Id *string `type:"string"` // The friendly name of the policy. // // The regex pattern (http://wikipedia.org/wiki/regex) that is used to validate // this parameter is a string of any of the characters in the ASCII character // range. Name *string `min:"1" type:"string"` // The type of policy. Type *string `type:"string" enum:"PolicyType"` // contains filtered or unexported fields }
Contains information about a policy, but does not include the content. To see the content of a policy, see DescribePolicy. Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/PolicySummary
func (PolicySummary) GoString ¶
func (s PolicySummary) GoString() string
GoString returns the string representation
func (*PolicySummary) SetArn ¶
func (s *PolicySummary) SetArn(v string) *PolicySummary
SetArn sets the Arn field's value.
func (*PolicySummary) SetAwsManaged ¶
func (s *PolicySummary) SetAwsManaged(v bool) *PolicySummary
SetAwsManaged sets the AwsManaged field's value.
func (*PolicySummary) SetDescription ¶
func (s *PolicySummary) SetDescription(v string) *PolicySummary
SetDescription sets the Description field's value.
func (*PolicySummary) SetId ¶
func (s *PolicySummary) SetId(v string) *PolicySummary
SetId sets the Id field's value.
func (*PolicySummary) SetName ¶
func (s *PolicySummary) SetName(v string) *PolicySummary
SetName sets the Name field's value.
func (*PolicySummary) SetType ¶
func (s *PolicySummary) SetType(v string) *PolicySummary
SetType sets the Type field's value.
func (PolicySummary) String ¶
func (s PolicySummary) String() string
String returns the string representation
type PolicyTargetSummary ¶
type PolicyTargetSummary struct { // The Amazon Resource Name (ARN) of the policy target. // // For more information about ARNs in Organizations, see ARN Formats Supported // by Organizations (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_permissions.html#orgs-permissions-arns) // in the AWS Organizations User Guide. Arn *string `type:"string"` // The friendly name of the policy target. // // The regex pattern (http://wikipedia.org/wiki/regex) that is used to validate // this parameter is a string of any of the characters in the ASCII character // range. Name *string `min:"1" type:"string"` // The unique identifier (ID) of the policy target. // // The regex pattern (http://wikipedia.org/wiki/regex) for a target ID string // requires one of the following: // // * Root: a string that begins with "r-" followed by from 4 to 32 lower-case // letters or digits. // // * Account: a string that consists of exactly 12 digits. // // * Organizational unit (OU): a string that begins with "ou-" followed by // from 4 to 32 lower-case letters or digits (the ID of the root that the // OU is in) followed by a second "-" dash and from 8 to 32 additional lower-case // letters or digits. TargetId *string `type:"string"` // The type of the policy target. Type *string `type:"string" enum:"TargetType"` // contains filtered or unexported fields }
Contains information about a root, OU, or account that a policy is attached to. Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/PolicyTargetSummary
func (PolicyTargetSummary) GoString ¶
func (s PolicyTargetSummary) GoString() string
GoString returns the string representation
func (*PolicyTargetSummary) SetArn ¶
func (s *PolicyTargetSummary) SetArn(v string) *PolicyTargetSummary
SetArn sets the Arn field's value.
func (*PolicyTargetSummary) SetName ¶
func (s *PolicyTargetSummary) SetName(v string) *PolicyTargetSummary
SetName sets the Name field's value.
func (*PolicyTargetSummary) SetTargetId ¶
func (s *PolicyTargetSummary) SetTargetId(v string) *PolicyTargetSummary
SetTargetId sets the TargetId field's value.
func (*PolicyTargetSummary) SetType ¶
func (s *PolicyTargetSummary) SetType(v string) *PolicyTargetSummary
SetType sets the Type field's value.
func (PolicyTargetSummary) String ¶
func (s PolicyTargetSummary) String() string
String returns the string representation
type PolicyTypeSummary ¶
type PolicyTypeSummary struct { // The status of the policy type as it relates to the associated root. To attach // a policy of the specified type to a root or to an OU or account in that root, // it must be available in the organization and enabled for that root. Status *string `type:"string" enum:"PolicyTypeStatus"` // The name of the policy type. Type *string `type:"string" enum:"PolicyType"` // contains filtered or unexported fields }
Contains information about a policy type and its status in the associated root. Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/PolicyTypeSummary
func (PolicyTypeSummary) GoString ¶
func (s PolicyTypeSummary) GoString() string
GoString returns the string representation
func (*PolicyTypeSummary) SetStatus ¶
func (s *PolicyTypeSummary) SetStatus(v string) *PolicyTypeSummary
SetStatus sets the Status field's value.
func (*PolicyTypeSummary) SetType ¶
func (s *PolicyTypeSummary) SetType(v string) *PolicyTypeSummary
SetType sets the Type field's value.
func (PolicyTypeSummary) String ¶
func (s PolicyTypeSummary) String() string
String returns the string representation
type RemoveAccountFromOrganizationInput ¶
type RemoveAccountFromOrganizationInput struct { // The unique identifier (ID) of the member account that you want to remove // from the organization. // // The regex pattern (http://wikipedia.org/wiki/regex) for an account ID string // requires exactly 12 digits. // // AccountId is a required field AccountId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/RemoveAccountFromOrganizationRequest
func (RemoveAccountFromOrganizationInput) GoString ¶
func (s RemoveAccountFromOrganizationInput) GoString() string
GoString returns the string representation
func (*RemoveAccountFromOrganizationInput) SetAccountId ¶
func (s *RemoveAccountFromOrganizationInput) SetAccountId(v string) *RemoveAccountFromOrganizationInput
SetAccountId sets the AccountId field's value.
func (RemoveAccountFromOrganizationInput) String ¶
func (s RemoveAccountFromOrganizationInput) String() string
String returns the string representation
func (*RemoveAccountFromOrganizationInput) Validate ¶
func (s *RemoveAccountFromOrganizationInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type RemoveAccountFromOrganizationOutput ¶
type RemoveAccountFromOrganizationOutput struct {
// contains filtered or unexported fields
}
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/RemoveAccountFromOrganizationOutput
func (RemoveAccountFromOrganizationOutput) GoString ¶
func (s RemoveAccountFromOrganizationOutput) GoString() string
GoString returns the string representation
func (RemoveAccountFromOrganizationOutput) String ¶
func (s RemoveAccountFromOrganizationOutput) String() string
String returns the string representation
type Root ¶
type Root struct { // The Amazon Resource Name (ARN) of the root. // // For more information about ARNs in Organizations, see ARN Formats Supported // by Organizations (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_permissions.html#orgs-permissions-arns) // in the AWS Organizations User Guide. Arn *string `type:"string"` // The unique identifier (ID) for the root. // // The regex pattern (http://wikipedia.org/wiki/regex) for a root ID string // requires "r-" followed by from 4 to 32 lower-case letters or digits. Id *string `type:"string"` // The friendly name of the root. // // The regex pattern (http://wikipedia.org/wiki/regex) that is used to validate // this parameter is a string of any of the characters in the ASCII character // range. Name *string `min:"1" type:"string"` // The types of policies that are currently enabled for the root and therefore // can be attached to the root or to its OUs or accounts. PolicyTypes []*PolicyTypeSummary `type:"list"` // contains filtered or unexported fields }
Contains details about a root. A root is a top-level parent node in the hierarchy of an organization that can contain organizational units (OUs) and accounts. Every root contains every AWS account in the organization. Each root enables the accounts to be organized in a different way and to have different policy types enabled for use in that root. Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/Root
func (*Root) SetPolicyTypes ¶
func (s *Root) SetPolicyTypes(v []*PolicyTypeSummary) *Root
SetPolicyTypes sets the PolicyTypes field's value.
type UpdateOrganizationalUnitInput ¶
type UpdateOrganizationalUnitInput struct { // The new name that you want to assign to the OU. // // The regex pattern (http://wikipedia.org/wiki/regex) that is used to validate // this parameter is a string of any of the characters in the ASCII character // range. Name *string `min:"1" type:"string"` // The unique identifier (ID) of the OU that you want to rename. You can get // the ID from the ListOrganizationalUnitsForParent operation. // // The regex pattern (http://wikipedia.org/wiki/regex) for an organizational // unit ID string requires "ou-" followed by from 4 to 32 lower-case letters // or digits (the ID of the root that contains the OU) followed by a second // "-" dash and from 8 to 32 additional lower-case letters or digits. // // OrganizationalUnitId is a required field OrganizationalUnitId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/UpdateOrganizationalUnitRequest
func (UpdateOrganizationalUnitInput) GoString ¶
func (s UpdateOrganizationalUnitInput) GoString() string
GoString returns the string representation
func (*UpdateOrganizationalUnitInput) SetName ¶
func (s *UpdateOrganizationalUnitInput) SetName(v string) *UpdateOrganizationalUnitInput
SetName sets the Name field's value.
func (*UpdateOrganizationalUnitInput) SetOrganizationalUnitId ¶
func (s *UpdateOrganizationalUnitInput) SetOrganizationalUnitId(v string) *UpdateOrganizationalUnitInput
SetOrganizationalUnitId sets the OrganizationalUnitId field's value.
func (UpdateOrganizationalUnitInput) String ¶
func (s UpdateOrganizationalUnitInput) String() string
String returns the string representation
func (*UpdateOrganizationalUnitInput) Validate ¶
func (s *UpdateOrganizationalUnitInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type UpdateOrganizationalUnitOutput ¶
type UpdateOrganizationalUnitOutput struct { // A structure that contains the details about the specified OU, including its // new name. OrganizationalUnit *OrganizationalUnit `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/UpdateOrganizationalUnitResponse
func (UpdateOrganizationalUnitOutput) GoString ¶
func (s UpdateOrganizationalUnitOutput) GoString() string
GoString returns the string representation
func (*UpdateOrganizationalUnitOutput) SetOrganizationalUnit ¶
func (s *UpdateOrganizationalUnitOutput) SetOrganizationalUnit(v *OrganizationalUnit) *UpdateOrganizationalUnitOutput
SetOrganizationalUnit sets the OrganizationalUnit field's value.
func (UpdateOrganizationalUnitOutput) String ¶
func (s UpdateOrganizationalUnitOutput) String() string
String returns the string representation
type UpdatePolicyInput ¶
type UpdatePolicyInput struct { // If provided, the new content for the policy. The text must be correctly formatted // JSON that complies with the syntax for the policy's type. For more information, // see Service Control Policy Syntax (http://docs.aws.amazon.com/organizations/latest/userguide/orgs_reference_scp-syntax.html) // in the AWS Organizations User Guide. Content *string `min:"1" type:"string"` // If provided, the new description for the policy. Description *string `type:"string"` // If provided, the new name for the policy. // // The regex pattern (http://wikipedia.org/wiki/regex) that is used to validate // this parameter is a string of any of the characters in the ASCII character // range. Name *string `min:"1" type:"string"` // The unique identifier (ID) of the policy that you want to update. // // The regex pattern (http://wikipedia.org/wiki/regex) for a policy ID string // requires "p-" followed by from 8 to 128 lower-case letters or digits. // // PolicyId is a required field PolicyId *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/UpdatePolicyRequest
func (UpdatePolicyInput) GoString ¶
func (s UpdatePolicyInput) GoString() string
GoString returns the string representation
func (*UpdatePolicyInput) SetContent ¶
func (s *UpdatePolicyInput) SetContent(v string) *UpdatePolicyInput
SetContent sets the Content field's value.
func (*UpdatePolicyInput) SetDescription ¶
func (s *UpdatePolicyInput) SetDescription(v string) *UpdatePolicyInput
SetDescription sets the Description field's value.
func (*UpdatePolicyInput) SetName ¶
func (s *UpdatePolicyInput) SetName(v string) *UpdatePolicyInput
SetName sets the Name field's value.
func (*UpdatePolicyInput) SetPolicyId ¶
func (s *UpdatePolicyInput) SetPolicyId(v string) *UpdatePolicyInput
SetPolicyId sets the PolicyId field's value.
func (UpdatePolicyInput) String ¶
func (s UpdatePolicyInput) String() string
String returns the string representation
func (*UpdatePolicyInput) Validate ¶
func (s *UpdatePolicyInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type UpdatePolicyOutput ¶
type UpdatePolicyOutput struct { // A structure that contains details about the updated policy, showing the requested // changes. Policy *Policy `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/UpdatePolicyResponse
func (UpdatePolicyOutput) GoString ¶
func (s UpdatePolicyOutput) GoString() string
GoString returns the string representation
func (*UpdatePolicyOutput) SetPolicy ¶
func (s *UpdatePolicyOutput) SetPolicy(v *Policy) *UpdatePolicyOutput
SetPolicy sets the Policy field's value.
func (UpdatePolicyOutput) String ¶
func (s UpdatePolicyOutput) String() string
String returns the string representation
Directories ¶
Path | Synopsis |
---|---|
Package organizationsiface provides an interface to enable mocking the AWS Organizations service client for testing your code.
|
Package organizationsiface provides an interface to enable mocking the AWS Organizations service client for testing your code. |