// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package organizations_test import ( "context" "fmt" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/aws/awserr" "github.com/aws/aws-sdk-go-v2/aws/external" "github.com/aws/aws-sdk-go-v2/service/organizations" ) var _ aws.Config // To accept a handshake from another account // // Bill is the owner of an organization, and he invites Juan's account (222222222222) // to join his organization. The following example shows Juan's account accepting the // handshake and thus agreeing to the invitation. func ExampleClient_AcceptHandshakeRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.AcceptHandshakeInput{ HandshakeId: aws.String("h-examplehandshakeid111"), } req := svc.AcceptHandshakeRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeHandshakeConstraintViolationException: fmt.Println(organizations.ErrCodeHandshakeConstraintViolationException, aerr.Error()) case organizations.ErrCodeHandshakeNotFoundException: fmt.Println(organizations.ErrCodeHandshakeNotFoundException, aerr.Error()) case organizations.ErrCodeInvalidHandshakeTransitionException: fmt.Println(organizations.ErrCodeInvalidHandshakeTransitionException, aerr.Error()) case organizations.ErrCodeHandshakeAlreadyInStateException: fmt.Println(organizations.ErrCodeHandshakeAlreadyInStateException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeAccessDeniedForDependencyException: fmt.Println(organizations.ErrCodeAccessDeniedForDependencyException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To attach a policy to an OU // // The following example shows how to attach a service control policy (SCP) to an OU: func ExampleClient_AttachPolicyRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.AttachPolicyInput{ PolicyId: aws.String("p-examplepolicyid111"), TargetId: aws.String("ou-examplerootid111-exampleouid111"), } req := svc.AttachPolicyRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeConstraintViolationException: fmt.Println(organizations.ErrCodeConstraintViolationException, aerr.Error()) case organizations.ErrCodeDuplicatePolicyAttachmentException: fmt.Println(organizations.ErrCodeDuplicatePolicyAttachmentException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodePolicyNotFoundException: fmt.Println(organizations.ErrCodePolicyNotFoundException, aerr.Error()) case organizations.ErrCodePolicyTypeNotEnabledException: fmt.Println(organizations.ErrCodePolicyTypeNotEnabledException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTargetNotFoundException: fmt.Println(organizations.ErrCodeTargetNotFoundException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) case organizations.ErrCodePolicyChangesInProgressException: fmt.Println(organizations.ErrCodePolicyChangesInProgressException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To attach a policy to an account // // The following example shows how to attach a service control policy (SCP) to an account: func ExampleClient_AttachPolicyRequest_shared01() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.AttachPolicyInput{ PolicyId: aws.String("p-examplepolicyid111"), TargetId: aws.String("333333333333"), } req := svc.AttachPolicyRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeConstraintViolationException: fmt.Println(organizations.ErrCodeConstraintViolationException, aerr.Error()) case organizations.ErrCodeDuplicatePolicyAttachmentException: fmt.Println(organizations.ErrCodeDuplicatePolicyAttachmentException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodePolicyNotFoundException: fmt.Println(organizations.ErrCodePolicyNotFoundException, aerr.Error()) case organizations.ErrCodePolicyTypeNotEnabledException: fmt.Println(organizations.ErrCodePolicyTypeNotEnabledException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTargetNotFoundException: fmt.Println(organizations.ErrCodeTargetNotFoundException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) case organizations.ErrCodePolicyChangesInProgressException: fmt.Println(organizations.ErrCodePolicyChangesInProgressException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To cancel a handshake sent to a member account // // Bill previously sent an invitation to Susan's account to join his organization. He // changes his mind and decides to cancel the invitation before Susan accepts it. The // following example shows Bill's cancellation: func ExampleClient_CancelHandshakeRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.CancelHandshakeInput{ HandshakeId: aws.String("h-examplehandshakeid111"), } req := svc.CancelHandshakeRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeHandshakeNotFoundException: fmt.Println(organizations.ErrCodeHandshakeNotFoundException, aerr.Error()) case organizations.ErrCodeInvalidHandshakeTransitionException: fmt.Println(organizations.ErrCodeInvalidHandshakeTransitionException, aerr.Error()) case organizations.ErrCodeHandshakeAlreadyInStateException: fmt.Println(organizations.ErrCodeHandshakeAlreadyInStateException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To create a new account that is automatically part of the organization // // The owner of an organization creates a member account in the organization. The following // example shows that when the organization owner creates the member account, the account // is preconfigured with the name "Production Account" and an owner email address of // susan@example.com. An IAM role is automatically created using the default name because // the roleName parameter is not used. AWS Organizations sends Susan a "Welcome to AWS" // email: func ExampleClient_CreateAccountRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.CreateAccountInput{ AccountName: aws.String("Production Account"), Email: aws.String("susan@example.com"), } req := svc.CreateAccountRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeConstraintViolationException: fmt.Println(organizations.ErrCodeConstraintViolationException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeFinalizingOrganizationException: fmt.Println(organizations.ErrCodeFinalizingOrganizationException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To create a new organization with all features enabled // // Bill wants to create an organization using credentials from account 111111111111. // The following example shows that the account becomes the master account in the new // organization. Because he does not specify a feature set, the new organization defaults // to all features enabled and service control policies enabled on the root: func ExampleClient_CreateOrganizationRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.CreateOrganizationInput{} req := svc.CreateOrganizationRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAlreadyInOrganizationException: fmt.Println(organizations.ErrCodeAlreadyInOrganizationException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeConstraintViolationException: fmt.Println(organizations.ErrCodeConstraintViolationException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeAccessDeniedForDependencyException: fmt.Println(organizations.ErrCodeAccessDeniedForDependencyException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To create a new organization with consolidated billing features only // // In the following example, Bill creates an organization using credentials from account // 111111111111, and configures the organization to support only the consolidated billing // feature set: func ExampleClient_CreateOrganizationRequest_shared01() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.CreateOrganizationInput{ FeatureSet: organizations.OrganizationFeatureSetConsolidatedBilling, } req := svc.CreateOrganizationRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAlreadyInOrganizationException: fmt.Println(organizations.ErrCodeAlreadyInOrganizationException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeConstraintViolationException: fmt.Println(organizations.ErrCodeConstraintViolationException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeAccessDeniedForDependencyException: fmt.Println(organizations.ErrCodeAccessDeniedForDependencyException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To create a new organization unit // // The following example shows how to create an OU that is named AccountingOU. The new // OU is directly under the root.: func ExampleClient_CreateOrganizationalUnitRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.CreateOrganizationalUnitInput{ Name: aws.String("AccountingOU"), ParentId: aws.String("r-examplerootid111"), } req := svc.CreateOrganizationalUnitRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeConstraintViolationException: fmt.Println(organizations.ErrCodeConstraintViolationException, aerr.Error()) case organizations.ErrCodeDuplicateOrganizationalUnitException: fmt.Println(organizations.ErrCodeDuplicateOrganizationalUnitException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeParentNotFoundException: fmt.Println(organizations.ErrCodeParentNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To create a service control policy // // The following example shows how to create a service control policy (SCP) that is // named AllowAllS3Actions. The JSON string in the content parameter specifies the content // in the policy. The parameter string is escaped with backslashes to ensure that the // embedded double quotes in the JSON policy are treated as literals in the parameter, // which itself is surrounded by double quotes: func ExampleClient_CreatePolicyRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.CreatePolicyInput{ Content: aws.String("{\\\"Version\\\":\\\"2012-10-17\\\",\\\"Statement\\\":{\\\"Effect\\\":\\\"Allow\\\",\\\"Action\\\":\\\"s3:*\\\"}}"), Description: aws.String("Enables admins of attached accounts to delegate all S3 permissions"), Name: aws.String("AllowAllS3Actions"), Type: organizations.PolicyTypeServiceControlPolicy, } req := svc.CreatePolicyRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeConstraintViolationException: fmt.Println(organizations.ErrCodeConstraintViolationException, aerr.Error()) case organizations.ErrCodeDuplicatePolicyException: fmt.Println(organizations.ErrCodeDuplicatePolicyException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeMalformedPolicyDocumentException: fmt.Println(organizations.ErrCodeMalformedPolicyDocumentException, aerr.Error()) case organizations.ErrCodePolicyTypeNotAvailableForOrganizationException: fmt.Println(organizations.ErrCodePolicyTypeNotAvailableForOrganizationException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To decline a handshake sent from the master account // // The following example shows Susan declining an invitation to join Bill's organization. // The DeclineHandshake operation returns a handshake object, showing that the state // is now DECLINED: func ExampleClient_DeclineHandshakeRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.DeclineHandshakeInput{ HandshakeId: aws.String("h-examplehandshakeid111"), } req := svc.DeclineHandshakeRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeHandshakeNotFoundException: fmt.Println(organizations.ErrCodeHandshakeNotFoundException, aerr.Error()) case organizations.ErrCodeInvalidHandshakeTransitionException: fmt.Println(organizations.ErrCodeInvalidHandshakeTransitionException, aerr.Error()) case organizations.ErrCodeHandshakeAlreadyInStateException: fmt.Println(organizations.ErrCodeHandshakeAlreadyInStateException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To delete an organization unit // // The following example shows how to delete an OU. The example assumes that you previously // removed all accounts and other OUs from the OU: func ExampleClient_DeleteOrganizationalUnitRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.DeleteOrganizationalUnitInput{ OrganizationalUnitId: aws.String("ou-examplerootid111-exampleouid111"), } req := svc.DeleteOrganizationalUnitRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeOrganizationalUnitNotEmptyException: fmt.Println(organizations.ErrCodeOrganizationalUnitNotEmptyException, aerr.Error()) case organizations.ErrCodeOrganizationalUnitNotFoundException: fmt.Println(organizations.ErrCodeOrganizationalUnitNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To delete a policy // // The following example shows how to delete a policy from an organization. The example // assumes that you previously detached the policy from all entities: func ExampleClient_DeletePolicyRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.DeletePolicyInput{ PolicyId: aws.String("p-examplepolicyid111"), } req := svc.DeletePolicyRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodePolicyInUseException: fmt.Println(organizations.ErrCodePolicyInUseException, aerr.Error()) case organizations.ErrCodePolicyNotFoundException: fmt.Println(organizations.ErrCodePolicyNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To get the details about an account // // The following example shows a user in the master account (111111111111) asking for // details about account 555555555555: func ExampleClient_DescribeAccountRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.DescribeAccountInput{ AccountId: aws.String("555555555555"), } req := svc.DescribeAccountRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAccountNotFoundException: fmt.Println(organizations.ErrCodeAccountNotFoundException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To get information about a request to create an account // // The following example shows how to request the status about a previous request to // create an account in an organization. This operation can be called only by a principal // from the organization's master account. In the example, the specified "createAccountRequestId" // comes from the response of the original call to "CreateAccount": func ExampleClient_DescribeCreateAccountStatusRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.DescribeCreateAccountStatusInput{ CreateAccountRequestId: aws.String("car-exampleaccountcreationrequestid"), } req := svc.DescribeCreateAccountStatusRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeCreateAccountStatusNotFoundException: fmt.Println(organizations.ErrCodeCreateAccountStatusNotFoundException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To get information about a handshake // // The following example shows you how to request details about a handshake. The handshake // ID comes either from the original call to "InviteAccountToOrganization", or from // a call to "ListHandshakesForAccount" or "ListHandshakesForOrganization": func ExampleClient_DescribeHandshakeRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.DescribeHandshakeInput{ HandshakeId: aws.String("h-examplehandshakeid111"), } req := svc.DescribeHandshakeRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeHandshakeNotFoundException: fmt.Println(organizations.ErrCodeHandshakeNotFoundException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To get information about an organization // // The following example shows how to request information about the current user's organization:/n/n func ExampleClient_DescribeOrganizationRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.DescribeOrganizationInput{} req := svc.DescribeOrganizationRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To get information about an organizational unit // // The following example shows how to request details about an OU:/n/n func ExampleClient_DescribeOrganizationalUnitRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.DescribeOrganizationalUnitInput{ OrganizationalUnitId: aws.String("ou-examplerootid111-exampleouid111"), } req := svc.DescribeOrganizationalUnitRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeOrganizationalUnitNotFoundException: fmt.Println(organizations.ErrCodeOrganizationalUnitNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To get information about a policy // // The following example shows how to request information about a policy:/n/n func ExampleClient_DescribePolicyRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.DescribePolicyInput{ PolicyId: aws.String("p-examplepolicyid111"), } req := svc.DescribePolicyRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodePolicyNotFoundException: fmt.Println(organizations.ErrCodePolicyNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To detach a policy from a root, OU, or account // // The following example shows how to detach a policy from an OU:/n/n func ExampleClient_DetachPolicyRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.DetachPolicyInput{ PolicyId: aws.String("p-examplepolicyid111"), TargetId: aws.String("ou-examplerootid111-exampleouid111"), } req := svc.DetachPolicyRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeConstraintViolationException: fmt.Println(organizations.ErrCodeConstraintViolationException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodePolicyNotAttachedException: fmt.Println(organizations.ErrCodePolicyNotAttachedException, aerr.Error()) case organizations.ErrCodePolicyNotFoundException: fmt.Println(organizations.ErrCodePolicyNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTargetNotFoundException: fmt.Println(organizations.ErrCodeTargetNotFoundException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) case organizations.ErrCodePolicyChangesInProgressException: fmt.Println(organizations.ErrCodePolicyChangesInProgressException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To disable a policy type in a root // // The following example shows how to disable the service control policy (SCP) policy // type in a root. The response shows that the PolicyTypes response element no longer // includes SERVICE_CONTROL_POLICY:/n/n func ExampleClient_DisablePolicyTypeRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.DisablePolicyTypeInput{ PolicyType: organizations.PolicyTypeServiceControlPolicy, RootId: aws.String("r-examplerootid111"), } req := svc.DisablePolicyTypeRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeConstraintViolationException: fmt.Println(organizations.ErrCodeConstraintViolationException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodePolicyTypeNotEnabledException: fmt.Println(organizations.ErrCodePolicyTypeNotEnabledException, aerr.Error()) case organizations.ErrCodeRootNotFoundException: fmt.Println(organizations.ErrCodeRootNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) case organizations.ErrCodePolicyChangesInProgressException: fmt.Println(organizations.ErrCodePolicyChangesInProgressException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To enable all features in an organization // // This example shows the administrator asking all the invited accounts in the organization // to approve enabling all features in the organization. AWS Organizations sends an // email to the address that is registered with every invited member account asking // the owner to approve the change by accepting the handshake that is sent. After all // invited member accounts accept the handshake, the organization administrator can // finalize the change to enable all features, and those with appropriate permissions // can create policies and apply them to roots, OUs, and accounts:/n/n func ExampleClient_EnableAllFeaturesRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.EnableAllFeaturesInput{} req := svc.EnableAllFeaturesRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeHandshakeConstraintViolationException: fmt.Println(organizations.ErrCodeHandshakeConstraintViolationException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To enable a policy type in a root // // The following example shows how to enable the service control policy (SCP) policy // type in a root. The output shows a root object with a PolicyTypes response element // showing that SCPs are now enabled:/n/n func ExampleClient_EnablePolicyTypeRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.EnablePolicyTypeInput{ PolicyType: organizations.PolicyTypeServiceControlPolicy, RootId: aws.String("r-examplerootid111"), } req := svc.EnablePolicyTypeRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeConstraintViolationException: fmt.Println(organizations.ErrCodeConstraintViolationException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodePolicyTypeAlreadyEnabledException: fmt.Println(organizations.ErrCodePolicyTypeAlreadyEnabledException, aerr.Error()) case organizations.ErrCodeRootNotFoundException: fmt.Println(organizations.ErrCodeRootNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodePolicyTypeNotAvailableForOrganizationException: fmt.Println(organizations.ErrCodePolicyTypeNotAvailableForOrganizationException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) case organizations.ErrCodePolicyChangesInProgressException: fmt.Println(organizations.ErrCodePolicyChangesInProgressException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To invite an account to join an organization // // The following example shows the admin of the master account owned by bill@example.com // inviting the account owned by juan@example.com to join an organization. func ExampleClient_InviteAccountToOrganizationRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.InviteAccountToOrganizationInput{ Notes: aws.String("This is a request for Juan's account to join Bill's organization"), Target: &organizations.HandshakeParty{ Id: aws.String("juan@example.com"), Type: organizations.HandshakePartyTypeEmail, }, } req := svc.InviteAccountToOrganizationRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeAccountOwnerNotVerifiedException: fmt.Println(organizations.ErrCodeAccountOwnerNotVerifiedException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeHandshakeConstraintViolationException: fmt.Println(organizations.ErrCodeHandshakeConstraintViolationException, aerr.Error()) case organizations.ErrCodeDuplicateHandshakeException: fmt.Println(organizations.ErrCodeDuplicateHandshakeException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeFinalizingOrganizationException: fmt.Println(organizations.ErrCodeFinalizingOrganizationException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To leave an organization as a member account // // TThe following example shows how to remove your member account from an organization: func ExampleClient_LeaveOrganizationRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.LeaveOrganizationInput{} req := svc.LeaveOrganizationRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAccountNotFoundException: fmt.Println(organizations.ErrCodeAccountNotFoundException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeConstraintViolationException: fmt.Println(organizations.ErrCodeConstraintViolationException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeMasterCannotLeaveOrganizationException: fmt.Println(organizations.ErrCodeMasterCannotLeaveOrganizationException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To retrieve a list of all of the accounts in an organization // // The following example shows you how to request a list of the accounts in an organization: func ExampleClient_ListAccountsRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.ListAccountsInput{} req := svc.ListAccountsRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To retrieve a list of all of the accounts in a root or OU // // The following example shows how to request a list of the accounts in an OU:/n/n func ExampleClient_ListAccountsForParentRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.ListAccountsForParentInput{ ParentId: aws.String("ou-examplerootid111-exampleouid111"), } req := svc.ListAccountsForParentRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeParentNotFoundException: fmt.Println(organizations.ErrCodeParentNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To retrieve a list of all of the child accounts and OUs in a parent root or OU // // The following example shows how to request a list of the child OUs in a parent root // or OU:/n/n func ExampleClient_ListChildrenRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.ListChildrenInput{ ChildType: organizations.ChildTypeOrganizationalUnit, ParentId: aws.String("ou-examplerootid111-exampleouid111"), } req := svc.ListChildrenRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeParentNotFoundException: fmt.Println(organizations.ErrCodeParentNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To get a list of completed account creation requests made in the organization // // The following example shows a user requesting a list of only the completed account // creation requests made for the current organization: func ExampleClient_ListCreateAccountStatusRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.ListCreateAccountStatusInput{ States: []organizations.CreateAccountState{ organizations.CreateAccountStateSucceeded, }, } req := svc.ListCreateAccountStatusRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To get a list of all account creation requests made in the organization // // The following example shows a user requesting a list of only the in-progress account // creation requests made for the current organization: func ExampleClient_ListCreateAccountStatusRequest_shared01() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.ListCreateAccountStatusInput{ States: []organizations.CreateAccountState{ organizations.CreateAccountStateInProgress, }, } req := svc.ListCreateAccountStatusRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To retrieve a list of the handshakes sent to an account // // The following example shows you how to get a list of handshakes that are associated // with the account of the credentials used to call the operation: func ExampleClient_ListHandshakesForAccountRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.ListHandshakesForAccountInput{} req := svc.ListHandshakesForAccountRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To retrieve a list of the handshakes associated with an organization // // The following example shows you how to get a list of handshakes associated with the // current organization: func ExampleClient_ListHandshakesForOrganizationRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.ListHandshakesForOrganizationInput{} req := svc.ListHandshakesForOrganizationRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To retrieve a list of all of the child OUs in a parent root or OU // // The following example shows how to get a list of OUs in a specified root:/n/n func ExampleClient_ListOrganizationalUnitsForParentRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.ListOrganizationalUnitsForParentInput{ ParentId: aws.String("r-examplerootid111"), } req := svc.ListOrganizationalUnitsForParentRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeParentNotFoundException: fmt.Println(organizations.ErrCodeParentNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To retrieve a list of all of the parents of a child OU or account // // The following example shows how to list the root or OUs that contain account 444444444444:/n/n func ExampleClient_ListParentsRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.ListParentsInput{ ChildId: aws.String("444444444444"), } req := svc.ListParentsRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeChildNotFoundException: fmt.Println(organizations.ErrCodeChildNotFoundException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To retrieve a list policies in the organization // // The following example shows how to get a list of service control policies (SCPs):/n/n func ExampleClient_ListPoliciesRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.ListPoliciesInput{ Filter: organizations.PolicyTypeServiceControlPolicy, } req := svc.ListPoliciesRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To retrieve a list policies attached to a root, OU, or account // // The following example shows how to get a list of all service control policies (SCPs) // of the type specified by the Filter parameter, that are directly attached to an account. // The returned list does not include policies that apply to the account because of // inheritance from its location in an OU hierarchy:/n/n func ExampleClient_ListPoliciesForTargetRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.ListPoliciesForTargetInput{ Filter: organizations.PolicyTypeServiceControlPolicy, TargetId: aws.String("444444444444"), } req := svc.ListPoliciesForTargetRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTargetNotFoundException: fmt.Println(organizations.ErrCodeTargetNotFoundException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To retrieve a list of roots in the organization // // The following example shows how to get the list of the roots in the current organization:/n/n func ExampleClient_ListRootsRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.ListRootsInput{} req := svc.ListRootsRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To retrieve a list of roots, OUs, and accounts to which a policy is attached // // The following example shows how to get the list of roots, OUs, and accounts to which // the specified policy is attached:/n/n func ExampleClient_ListTargetsForPolicyRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.ListTargetsForPolicyInput{ PolicyId: aws.String("p-FullAWSAccess"), } req := svc.ListTargetsForPolicyRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodePolicyNotFoundException: fmt.Println(organizations.ErrCodePolicyNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To move an OU or account to another OU or the root // // The following example shows how to move a member account from the root to an OU:/n/n func ExampleClient_MoveAccountRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.MoveAccountInput{ AccountId: aws.String("333333333333"), DestinationParentId: aws.String("ou-examplerootid111-exampleouid111"), SourceParentId: aws.String("r-examplerootid111"), } req := svc.MoveAccountRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeSourceParentNotFoundException: fmt.Println(organizations.ErrCodeSourceParentNotFoundException, aerr.Error()) case organizations.ErrCodeDestinationParentNotFoundException: fmt.Println(organizations.ErrCodeDestinationParentNotFoundException, aerr.Error()) case organizations.ErrCodeDuplicateAccountException: fmt.Println(organizations.ErrCodeDuplicateAccountException, aerr.Error()) case organizations.ErrCodeAccountNotFoundException: fmt.Println(organizations.ErrCodeAccountNotFoundException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To remove an account from an organization as the master account // // The following example shows you how to remove an account from an organization: func ExampleClient_RemoveAccountFromOrganizationRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.RemoveAccountFromOrganizationInput{ AccountId: aws.String("333333333333"), } req := svc.RemoveAccountFromOrganizationRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAccountNotFoundException: fmt.Println(organizations.ErrCodeAccountNotFoundException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeConstraintViolationException: fmt.Println(organizations.ErrCodeConstraintViolationException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeMasterCannotLeaveOrganizationException: fmt.Println(organizations.ErrCodeMasterCannotLeaveOrganizationException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To rename an organizational unit // // The following example shows how to rename an OU. The output confirms the new name:/n/n func ExampleClient_UpdateOrganizationalUnitRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.UpdateOrganizationalUnitInput{ Name: aws.String("AccountingOU"), OrganizationalUnitId: aws.String("ou-examplerootid111-exampleouid111"), } req := svc.UpdateOrganizationalUnitRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeDuplicateOrganizationalUnitException: fmt.Println(organizations.ErrCodeDuplicateOrganizationalUnitException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeOrganizationalUnitNotFoundException: fmt.Println(organizations.ErrCodeOrganizationalUnitNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To update the details of a policy // // The following example shows how to rename a policy and give it a new description // and new content. The output confirms the new name and description text:/n/n func ExampleClient_UpdatePolicyRequest_shared00() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.UpdatePolicyInput{ Description: aws.String("This description replaces the original."), Name: aws.String("Renamed-Policy"), PolicyId: aws.String("p-examplepolicyid111"), } req := svc.UpdatePolicyRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeConstraintViolationException: fmt.Println(organizations.ErrCodeConstraintViolationException, aerr.Error()) case organizations.ErrCodeDuplicatePolicyException: fmt.Println(organizations.ErrCodeDuplicatePolicyException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeMalformedPolicyDocumentException: fmt.Println(organizations.ErrCodeMalformedPolicyDocumentException, aerr.Error()) case organizations.ErrCodePolicyNotFoundException: fmt.Println(organizations.ErrCodePolicyNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) case organizations.ErrCodePolicyChangesInProgressException: fmt.Println(organizations.ErrCodePolicyChangesInProgressException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) } // To update the content of a policy // // The following example shows how to replace the JSON text of the SCP from the preceding // example with a new JSON policy text string that allows S3 actions instead of EC2 // actions:/n/n func ExampleClient_UpdatePolicyRequest_shared01() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := organizations.New(cfg) input := &organizations.UpdatePolicyInput{ Content: aws.String("{ \\\"Version\\\": \\\"2012-10-17\\\", \\\"Statement\\\": {\\\"Effect\\\": \\\"Allow\\\", \\\"Action\\\": \\\"s3:*\\\", \\\"Resource\\\": \\\"*\\\" } }"), PolicyId: aws.String("p-examplepolicyid111"), } req := svc.UpdatePolicyRequest(input) result, err := req.Send(context.Background()) if err != nil { if aerr, ok := err.(awserr.Error); ok { switch aerr.Code() { case organizations.ErrCodeAccessDeniedException: fmt.Println(organizations.ErrCodeAccessDeniedException, aerr.Error()) case organizations.ErrCodeAWSOrganizationsNotInUseException: fmt.Println(organizations.ErrCodeAWSOrganizationsNotInUseException, aerr.Error()) case organizations.ErrCodeConcurrentModificationException: fmt.Println(organizations.ErrCodeConcurrentModificationException, aerr.Error()) case organizations.ErrCodeConstraintViolationException: fmt.Println(organizations.ErrCodeConstraintViolationException, aerr.Error()) case organizations.ErrCodeDuplicatePolicyException: fmt.Println(organizations.ErrCodeDuplicatePolicyException, aerr.Error()) case organizations.ErrCodeInvalidInputException: fmt.Println(organizations.ErrCodeInvalidInputException, aerr.Error()) case organizations.ErrCodeMalformedPolicyDocumentException: fmt.Println(organizations.ErrCodeMalformedPolicyDocumentException, aerr.Error()) case organizations.ErrCodePolicyNotFoundException: fmt.Println(organizations.ErrCodePolicyNotFoundException, aerr.Error()) case organizations.ErrCodeServiceException: fmt.Println(organizations.ErrCodeServiceException, aerr.Error()) case organizations.ErrCodeTooManyRequestsException: fmt.Println(organizations.ErrCodeTooManyRequestsException, aerr.Error()) case organizations.ErrCodeUnsupportedAPIEndpointException: fmt.Println(organizations.ErrCodeUnsupportedAPIEndpointException, aerr.Error()) case organizations.ErrCodePolicyChangesInProgressException: fmt.Println(organizations.ErrCodePolicyChangesInProgressException, aerr.Error()) default: fmt.Println(aerr.Error()) } } else { // Print the error, cast err to awserr.Error to get the Code and // Message from an error. fmt.Println(err.Error()) } return } fmt.Println(result) }