// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package opsworks import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type CreateDeploymentInput struct { _ struct{} `type:"structure"` // The app ID. This parameter is required for app deployments, but not for other // deployment commands. AppId *string `type:"string"` // A DeploymentCommand object that specifies the deployment command and any // associated arguments. // // Command is a required field Command *DeploymentCommand `type:"structure" required:"true"` // A user-defined comment. Comment *string `type:"string"` // A string that contains user-defined, custom JSON. You can use this parameter // to override some corresponding default stack configuration JSON values. The // string should be in the following format: // // "{\"key1\": \"value1\", \"key2\": \"value2\",...}" // // For more information about custom JSON, see Use Custom JSON to Modify the // Stack Configuration Attributes (https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html) // and Overriding Attributes With Custom JSON (https://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook-json-override.html). CustomJson *string `type:"string"` // The instance IDs for the deployment targets. InstanceIds []string `type:"list"` // The layer IDs for the deployment targets. LayerIds []string `type:"list"` // The stack ID. // // StackId is a required field StackId *string `type:"string" required:"true"` } // String returns the string representation func (s CreateDeploymentInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateDeploymentInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "CreateDeploymentInput"} if s.Command == nil { invalidParams.Add(aws.NewErrParamRequired("Command")) } if s.StackId == nil { invalidParams.Add(aws.NewErrParamRequired("StackId")) } if s.Command != nil { if err := s.Command.Validate(); err != nil { invalidParams.AddNested("Command", err.(aws.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } // Contains the response to a CreateDeployment request. type CreateDeploymentOutput struct { _ struct{} `type:"structure"` // The deployment ID, which can be used with other requests to identify the // deployment. DeploymentId *string `type:"string"` } // String returns the string representation func (s CreateDeploymentOutput) String() string { return awsutil.Prettify(s) } const opCreateDeployment = "CreateDeployment" // CreateDeploymentRequest returns a request value for making API operation for // AWS OpsWorks. // // Runs deployment or stack commands. For more information, see Deploying Apps // (https://docs.aws.amazon.com/opsworks/latest/userguide/workingapps-deploying.html) // and Run Stack Commands (https://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-commands.html). // // Required Permissions: To use this action, an IAM user must have a Deploy // or Manage permissions level for the stack, or an attached policy that explicitly // grants permissions. For more information on user permissions, see Managing // User Permissions (https://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html). // // // Example sending a request using CreateDeploymentRequest. // req := client.CreateDeploymentRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/CreateDeployment func (c *Client) CreateDeploymentRequest(input *CreateDeploymentInput) CreateDeploymentRequest { op := &aws.Operation{ Name: opCreateDeployment, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &CreateDeploymentInput{} } req := c.newRequest(op, input, &CreateDeploymentOutput{}) return CreateDeploymentRequest{Request: req, Input: input, Copy: c.CreateDeploymentRequest} } // CreateDeploymentRequest is the request type for the // CreateDeployment API operation. type CreateDeploymentRequest struct { *aws.Request Input *CreateDeploymentInput Copy func(*CreateDeploymentInput) CreateDeploymentRequest } // Send marshals and sends the CreateDeployment API request. func (r CreateDeploymentRequest) Send(ctx context.Context) (*CreateDeploymentResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &CreateDeploymentResponse{ CreateDeploymentOutput: r.Request.Data.(*CreateDeploymentOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // CreateDeploymentResponse is the response type for the // CreateDeployment API operation. type CreateDeploymentResponse struct { *CreateDeploymentOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // CreateDeployment request. func (r *CreateDeploymentResponse) SDKResponseMetdata() *aws.Response { return r.response }