func Architecture_Values() []string
Architecture_Values returns all elements of the Architecture enum
func ComputeType_Values() []string
ComputeType_Values returns all elements of the ComputeType enum
func DataSourceType_Values() []string
DataSourceType_Values returns all elements of the DataSourceType enum
func DeploymentJobErrorCode_Values() []string
DeploymentJobErrorCode_Values returns all elements of the DeploymentJobErrorCode enum
func DeploymentStatus_Values() []string
DeploymentStatus_Values returns all elements of the DeploymentStatus enum
func ExitBehavior_Values() []string
ExitBehavior_Values returns all elements of the ExitBehavior enum
func FailureBehavior_Values() []string
FailureBehavior_Values returns all elements of the FailureBehavior enum
func RenderingEngineType_Values() []string
RenderingEngineType_Values returns all elements of the RenderingEngineType enum
func RobotDeploymentStep_Values() []string
RobotDeploymentStep_Values returns all elements of the RobotDeploymentStep enum
func RobotSoftwareSuiteType_Values() []string
RobotSoftwareSuiteType_Values returns all elements of the RobotSoftwareSuiteType enum
func RobotSoftwareSuiteVersionType_Values() []string
RobotSoftwareSuiteVersionType_Values returns all elements of the RobotSoftwareSuiteVersionType enum
func RobotStatus_Values() []string
RobotStatus_Values returns all elements of the RobotStatus enum
func SimulationJobBatchErrorCode_Values() []string
SimulationJobBatchErrorCode_Values returns all elements of the SimulationJobBatchErrorCode enum
func SimulationJobBatchStatus_Values() []string
SimulationJobBatchStatus_Values returns all elements of the SimulationJobBatchStatus enum
func SimulationJobErrorCode_Values() []string
SimulationJobErrorCode_Values returns all elements of the SimulationJobErrorCode enum
func SimulationJobStatus_Values() []string
SimulationJobStatus_Values returns all elements of the SimulationJobStatus enum
func SimulationSoftwareSuiteType_Values() []string
SimulationSoftwareSuiteType_Values returns all elements of the SimulationSoftwareSuiteType enum
func UploadBehavior_Values() []string
UploadBehavior_Values returns all elements of the UploadBehavior enum
func WorldExportJobErrorCode_Values() []string
WorldExportJobErrorCode_Values returns all elements of the WorldExportJobErrorCode enum
func WorldExportJobStatus_Values() []string
WorldExportJobStatus_Values returns all elements of the WorldExportJobStatus enum
func WorldGenerationJobErrorCode_Values() []string
WorldGenerationJobErrorCode_Values returns all elements of the WorldGenerationJobErrorCode enum
func WorldGenerationJobStatus_Values() []string
WorldGenerationJobStatus_Values returns all elements of the WorldGenerationJobStatus enum
type BatchDeleteWorldsInput struct { // A list of Amazon Resource Names (arns) that correspond to worlds to delete. // // Worlds is a required field Worlds []*string `locationName:"worlds" min:"1" type:"list" required:"true"` // contains filtered or unexported fields }
func (s BatchDeleteWorldsInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *BatchDeleteWorldsInput) SetWorlds(v []*string) *BatchDeleteWorldsInput
SetWorlds sets the Worlds field's value.
func (s BatchDeleteWorldsInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *BatchDeleteWorldsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type BatchDeleteWorldsOutput struct { // A list of unprocessed worlds associated with the call. These worlds were // not deleted. UnprocessedWorlds []*string `locationName:"unprocessedWorlds" min:"1" type:"list"` // contains filtered or unexported fields }
func (s BatchDeleteWorldsOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *BatchDeleteWorldsOutput) SetUnprocessedWorlds(v []*string) *BatchDeleteWorldsOutput
SetUnprocessedWorlds sets the UnprocessedWorlds field's value.
func (s BatchDeleteWorldsOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type BatchDescribeSimulationJobInput struct { // A list of Amazon Resource Names (ARNs) of simulation jobs to describe. // // Jobs is a required field Jobs []*string `locationName:"jobs" min:"1" type:"list" required:"true"` // contains filtered or unexported fields }
func (s BatchDescribeSimulationJobInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *BatchDescribeSimulationJobInput) SetJobs(v []*string) *BatchDescribeSimulationJobInput
SetJobs sets the Jobs field's value.
func (s BatchDescribeSimulationJobInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *BatchDescribeSimulationJobInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type BatchDescribeSimulationJobOutput struct { // A list of simulation jobs. Jobs []*SimulationJob `locationName:"jobs" type:"list"` // A list of unprocessed simulation job Amazon Resource Names (ARNs). UnprocessedJobs []*string `locationName:"unprocessedJobs" min:"1" type:"list"` // contains filtered or unexported fields }
func (s BatchDescribeSimulationJobOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *BatchDescribeSimulationJobOutput) SetJobs(v []*SimulationJob) *BatchDescribeSimulationJobOutput
SetJobs sets the Jobs field's value.
func (s *BatchDescribeSimulationJobOutput) SetUnprocessedJobs(v []*string) *BatchDescribeSimulationJobOutput
SetUnprocessedJobs sets the UnprocessedJobs field's value.
func (s BatchDescribeSimulationJobOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type BatchPolicy struct { // The number of active simulation jobs create as part of the batch that can // be in an active state at the same time. // // Active states include: Pending,Preparing, Running, Restarting, RunningFailed // and Terminating. All other states are terminal states. MaxConcurrency *int64 `locationName:"maxConcurrency" type:"integer"` // The amount of time, in seconds, to wait for the batch to complete. // // If a batch times out, and there are pending requests that were failing due // to an internal failure (like InternalServiceError), they will be moved to // the failed list and the batch status will be Failed. If the pending requests // were failing for any other reason, the failed pending requests will be moved // to the failed list and the batch status will be TimedOut. TimeoutInSeconds *int64 `locationName:"timeoutInSeconds" type:"long"` // contains filtered or unexported fields }
Information about the batch policy.
func (s BatchPolicy) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *BatchPolicy) SetMaxConcurrency(v int64) *BatchPolicy
SetMaxConcurrency sets the MaxConcurrency field's value.
func (s *BatchPolicy) SetTimeoutInSeconds(v int64) *BatchPolicy
SetTimeoutInSeconds sets the TimeoutInSeconds field's value.
func (s BatchPolicy) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CancelDeploymentJobInput struct { // The deployment job ARN to cancel. // // Job is a required field Job *string `locationName:"job" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s CancelDeploymentJobInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CancelDeploymentJobInput) SetJob(v string) *CancelDeploymentJobInput
SetJob sets the Job field's value.
func (s CancelDeploymentJobInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CancelDeploymentJobInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CancelDeploymentJobOutput struct {
// contains filtered or unexported fields
}
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s CancelDeploymentJobOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s CancelDeploymentJobOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CancelSimulationJobBatchInput struct { // The id of the batch to cancel. // // Batch is a required field Batch *string `locationName:"batch" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
func (s CancelSimulationJobBatchInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CancelSimulationJobBatchInput) SetBatch(v string) *CancelSimulationJobBatchInput
SetBatch sets the Batch field's value.
func (s CancelSimulationJobBatchInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CancelSimulationJobBatchInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CancelSimulationJobBatchOutput struct {
// contains filtered or unexported fields
}
func (s CancelSimulationJobBatchOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s CancelSimulationJobBatchOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CancelSimulationJobInput struct { // The simulation job ARN to cancel. // // Job is a required field Job *string `locationName:"job" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
func (s CancelSimulationJobInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CancelSimulationJobInput) SetJob(v string) *CancelSimulationJobInput
SetJob sets the Job field's value.
func (s CancelSimulationJobInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CancelSimulationJobInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CancelSimulationJobOutput struct {
// contains filtered or unexported fields
}
func (s CancelSimulationJobOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s CancelSimulationJobOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CancelWorldExportJobInput struct { // The Amazon Resource Name (arn) of the world export job to cancel. // // Job is a required field Job *string `locationName:"job" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
func (s CancelWorldExportJobInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CancelWorldExportJobInput) SetJob(v string) *CancelWorldExportJobInput
SetJob sets the Job field's value.
func (s CancelWorldExportJobInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CancelWorldExportJobInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CancelWorldExportJobOutput struct {
// contains filtered or unexported fields
}
func (s CancelWorldExportJobOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s CancelWorldExportJobOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CancelWorldGenerationJobInput struct { // The Amazon Resource Name (arn) of the world generator job to cancel. // // Job is a required field Job *string `locationName:"job" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
func (s CancelWorldGenerationJobInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CancelWorldGenerationJobInput) SetJob(v string) *CancelWorldGenerationJobInput
SetJob sets the Job field's value.
func (s CancelWorldGenerationJobInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CancelWorldGenerationJobInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CancelWorldGenerationJobOutput struct {
// contains filtered or unexported fields
}
func (s CancelWorldGenerationJobOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s CancelWorldGenerationJobOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type Compute struct { // Compute type information for the simulation job. ComputeType *string `locationName:"computeType" type:"string" enum:"ComputeType"` // Compute GPU unit limit for the simulation job. It is the same as the number // of GPUs allocated to the SimulationJob. GpuUnitLimit *int64 `locationName:"gpuUnitLimit" type:"integer"` // The simulation unit limit. Your simulation is allocated CPU and memory proportional // to the supplied simulation unit limit. A simulation unit is 1 vcpu and 2GB // of memory. You are only billed for the SU utilization you consume up to the // maximum value provided. The default is 15. SimulationUnitLimit *int64 `locationName:"simulationUnitLimit" min:"1" type:"integer"` // contains filtered or unexported fields }
Compute information for the simulation job.
func (s Compute) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *Compute) SetComputeType(v string) *Compute
SetComputeType sets the ComputeType field's value.
func (s *Compute) SetGpuUnitLimit(v int64) *Compute
SetGpuUnitLimit sets the GpuUnitLimit field's value.
func (s *Compute) SetSimulationUnitLimit(v int64) *Compute
SetSimulationUnitLimit sets the SimulationUnitLimit field's value.
func (s Compute) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *Compute) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ComputeResponse struct { // Compute type response information for the simulation job. ComputeType *string `locationName:"computeType" type:"string" enum:"ComputeType"` // Compute GPU unit limit for the simulation job. It is the same as the number // of GPUs allocated to the SimulationJob. GpuUnitLimit *int64 `locationName:"gpuUnitLimit" type:"integer"` // The simulation unit limit. Your simulation is allocated CPU and memory proportional // to the supplied simulation unit limit. A simulation unit is 1 vcpu and 2GB // of memory. You are only billed for the SU utilization you consume up to the // maximum value provided. The default is 15. SimulationUnitLimit *int64 `locationName:"simulationUnitLimit" min:"1" type:"integer"` // contains filtered or unexported fields }
Compute information for the simulation job
func (s ComputeResponse) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ComputeResponse) SetComputeType(v string) *ComputeResponse
SetComputeType sets the ComputeType field's value.
func (s *ComputeResponse) SetGpuUnitLimit(v int64) *ComputeResponse
SetGpuUnitLimit sets the GpuUnitLimit field's value.
func (s *ComputeResponse) SetSimulationUnitLimit(v int64) *ComputeResponse
SetSimulationUnitLimit sets the SimulationUnitLimit field's value.
func (s ComputeResponse) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type ConcurrentDeploymentException struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The failure percentage threshold percentage was met.
func (s *ConcurrentDeploymentException) Code() string
Code returns the exception type name.
func (s *ConcurrentDeploymentException) Error() string
func (s ConcurrentDeploymentException) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ConcurrentDeploymentException) Message() string
Message returns the exception's message.
func (s *ConcurrentDeploymentException) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *ConcurrentDeploymentException) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *ConcurrentDeploymentException) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s ConcurrentDeploymentException) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CreateDeploymentJobInput struct { // Unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string" idempotencyToken:"true"` // The deployment application configuration. // // DeploymentApplicationConfigs is a required field DeploymentApplicationConfigs []*DeploymentApplicationConfig `locationName:"deploymentApplicationConfigs" min:"1" type:"list" required:"true"` // The requested deployment configuration. DeploymentConfig *DeploymentConfig `locationName:"deploymentConfig" type:"structure"` // The Amazon Resource Name (ARN) of the fleet to deploy. // // Fleet is a required field Fleet *string `locationName:"fleet" min:"1" type:"string" required:"true"` // A map that contains tag keys and tag values that are attached to the deployment // job. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s CreateDeploymentJobInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateDeploymentJobInput) SetClientRequestToken(v string) *CreateDeploymentJobInput
SetClientRequestToken sets the ClientRequestToken field's value.
func (s *CreateDeploymentJobInput) SetDeploymentApplicationConfigs(v []*DeploymentApplicationConfig) *CreateDeploymentJobInput
SetDeploymentApplicationConfigs sets the DeploymentApplicationConfigs field's value.
func (s *CreateDeploymentJobInput) SetDeploymentConfig(v *DeploymentConfig) *CreateDeploymentJobInput
SetDeploymentConfig sets the DeploymentConfig field's value.
func (s *CreateDeploymentJobInput) SetFleet(v string) *CreateDeploymentJobInput
SetFleet sets the Fleet field's value.
func (s *CreateDeploymentJobInput) SetTags(v map[string]*string) *CreateDeploymentJobInput
SetTags sets the Tags field's value.
func (s CreateDeploymentJobInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateDeploymentJobInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateDeploymentJobOutput struct { // The Amazon Resource Name (ARN) of the deployment job. Arn *string `locationName:"arn" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the fleet was created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The deployment application configuration. DeploymentApplicationConfigs []*DeploymentApplicationConfig `locationName:"deploymentApplicationConfigs" min:"1" type:"list"` // The deployment configuration. DeploymentConfig *DeploymentConfig `locationName:"deploymentConfig" type:"structure"` // The failure code of the simulation job if it failed: // // BadPermissionError // // AWS Greengrass requires a service-level role permission to access other services. // The role must include the AWSGreengrassResourceAccessRolePolicy managed policy // (https://console.aws.amazon.com/iam/home?#/policies/arn:aws:iam::aws:policy/service-role/AWSGreengrassResourceAccessRolePolicy$jsonEditor). // // ExtractingBundleFailure // // The robot application could not be extracted from the bundle. // // FailureThresholdBreached // // The percentage of robots that could not be updated exceeded the percentage // set for the deployment. // // GreengrassDeploymentFailed // // The robot application could not be deployed to the robot. // // GreengrassGroupVersionDoesNotExist // // The AWS Greengrass group or version associated with a robot is missing. // // InternalServerError // // An internal error has occurred. Retry your request, but if the problem persists, // contact us with details. // // MissingRobotApplicationArchitecture // // The robot application does not have a source that matches the architecture // of the robot. // // MissingRobotDeploymentResource // // One or more of the resources specified for the robot application are missing. // For example, does the robot application have the correct launch package and // launch file? // // PostLaunchFileFailure // // The post-launch script failed. // // PreLaunchFileFailure // // The pre-launch script failed. // // ResourceNotFound // // One or more deployment resources are missing. For example, do robot application // source bundles still exist? // // RobotDeploymentNoResponse // // There is no response from the robot. It might not be powered on or connected // to the internet. FailureCode *string `locationName:"failureCode" type:"string" enum:"DeploymentJobErrorCode"` // The failure reason of the deployment job if it failed. FailureReason *string `locationName:"failureReason" type:"string"` // The target fleet for the deployment job. Fleet *string `locationName:"fleet" min:"1" type:"string"` // The status of the deployment job. Status *string `locationName:"status" type:"string" enum:"DeploymentStatus"` // The list of all tags added to the deployment job. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s CreateDeploymentJobOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateDeploymentJobOutput) SetArn(v string) *CreateDeploymentJobOutput
SetArn sets the Arn field's value.
func (s *CreateDeploymentJobOutput) SetCreatedAt(v time.Time) *CreateDeploymentJobOutput
SetCreatedAt sets the CreatedAt field's value.
func (s *CreateDeploymentJobOutput) SetDeploymentApplicationConfigs(v []*DeploymentApplicationConfig) *CreateDeploymentJobOutput
SetDeploymentApplicationConfigs sets the DeploymentApplicationConfigs field's value.
func (s *CreateDeploymentJobOutput) SetDeploymentConfig(v *DeploymentConfig) *CreateDeploymentJobOutput
SetDeploymentConfig sets the DeploymentConfig field's value.
func (s *CreateDeploymentJobOutput) SetFailureCode(v string) *CreateDeploymentJobOutput
SetFailureCode sets the FailureCode field's value.
func (s *CreateDeploymentJobOutput) SetFailureReason(v string) *CreateDeploymentJobOutput
SetFailureReason sets the FailureReason field's value.
func (s *CreateDeploymentJobOutput) SetFleet(v string) *CreateDeploymentJobOutput
SetFleet sets the Fleet field's value.
func (s *CreateDeploymentJobOutput) SetStatus(v string) *CreateDeploymentJobOutput
SetStatus sets the Status field's value.
func (s *CreateDeploymentJobOutput) SetTags(v map[string]*string) *CreateDeploymentJobOutput
SetTags sets the Tags field's value.
func (s CreateDeploymentJobOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CreateFleetInput struct { // The name of the fleet. // // Name is a required field Name *string `locationName:"name" min:"1" type:"string" required:"true"` // A map that contains tag keys and tag values that are attached to the fleet. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s CreateFleetInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateFleetInput) SetName(v string) *CreateFleetInput
SetName sets the Name field's value.
func (s *CreateFleetInput) SetTags(v map[string]*string) *CreateFleetInput
SetTags sets the Tags field's value.
func (s CreateFleetInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateFleetInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateFleetOutput struct { // The Amazon Resource Name (ARN) of the fleet. Arn *string `locationName:"arn" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the fleet was created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The name of the fleet. Name *string `locationName:"name" min:"1" type:"string"` // The list of all tags added to the fleet. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s CreateFleetOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateFleetOutput) SetArn(v string) *CreateFleetOutput
SetArn sets the Arn field's value.
func (s *CreateFleetOutput) SetCreatedAt(v time.Time) *CreateFleetOutput
SetCreatedAt sets the CreatedAt field's value.
func (s *CreateFleetOutput) SetName(v string) *CreateFleetOutput
SetName sets the Name field's value.
func (s *CreateFleetOutput) SetTags(v map[string]*string) *CreateFleetOutput
SetTags sets the Tags field's value.
func (s CreateFleetOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CreateRobotApplicationInput struct { // The object that contains that URI of the Docker image that you use for your // robot application. Environment *Environment `locationName:"environment" type:"structure"` // The name of the robot application. // // Name is a required field Name *string `locationName:"name" min:"1" type:"string" required:"true"` // The robot software suite (ROS distribuition) used by the robot application. // // RobotSoftwareSuite is a required field RobotSoftwareSuite *RobotSoftwareSuite `locationName:"robotSoftwareSuite" type:"structure" required:"true"` // The sources of the robot application. Sources []*SourceConfig `locationName:"sources" type:"list"` // A map that contains tag keys and tag values that are attached to the robot // application. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
func (s CreateRobotApplicationInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateRobotApplicationInput) SetEnvironment(v *Environment) *CreateRobotApplicationInput
SetEnvironment sets the Environment field's value.
func (s *CreateRobotApplicationInput) SetName(v string) *CreateRobotApplicationInput
SetName sets the Name field's value.
func (s *CreateRobotApplicationInput) SetRobotSoftwareSuite(v *RobotSoftwareSuite) *CreateRobotApplicationInput
SetRobotSoftwareSuite sets the RobotSoftwareSuite field's value.
func (s *CreateRobotApplicationInput) SetSources(v []*SourceConfig) *CreateRobotApplicationInput
SetSources sets the Sources field's value.
func (s *CreateRobotApplicationInput) SetTags(v map[string]*string) *CreateRobotApplicationInput
SetTags sets the Tags field's value.
func (s CreateRobotApplicationInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateRobotApplicationInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateRobotApplicationOutput struct { // The Amazon Resource Name (ARN) of the robot application. Arn *string `locationName:"arn" min:"1" type:"string"` // An object that contains the Docker image URI used to a create your robot // application. Environment *Environment `locationName:"environment" type:"structure"` // The time, in milliseconds since the epoch, when the robot application was // last updated. LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"` // The name of the robot application. Name *string `locationName:"name" min:"1" type:"string"` // The revision id of the robot application. RevisionId *string `locationName:"revisionId" min:"1" type:"string"` // The robot software suite (ROS distribution) used by the robot application. RobotSoftwareSuite *RobotSoftwareSuite `locationName:"robotSoftwareSuite" type:"structure"` // The sources of the robot application. Sources []*Source `locationName:"sources" type:"list"` // The list of all tags added to the robot application. Tags map[string]*string `locationName:"tags" type:"map"` // The version of the robot application. Version *string `locationName:"version" min:"1" type:"string"` // contains filtered or unexported fields }
func (s CreateRobotApplicationOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateRobotApplicationOutput) SetArn(v string) *CreateRobotApplicationOutput
SetArn sets the Arn field's value.
func (s *CreateRobotApplicationOutput) SetEnvironment(v *Environment) *CreateRobotApplicationOutput
SetEnvironment sets the Environment field's value.
func (s *CreateRobotApplicationOutput) SetLastUpdatedAt(v time.Time) *CreateRobotApplicationOutput
SetLastUpdatedAt sets the LastUpdatedAt field's value.
func (s *CreateRobotApplicationOutput) SetName(v string) *CreateRobotApplicationOutput
SetName sets the Name field's value.
func (s *CreateRobotApplicationOutput) SetRevisionId(v string) *CreateRobotApplicationOutput
SetRevisionId sets the RevisionId field's value.
func (s *CreateRobotApplicationOutput) SetRobotSoftwareSuite(v *RobotSoftwareSuite) *CreateRobotApplicationOutput
SetRobotSoftwareSuite sets the RobotSoftwareSuite field's value.
func (s *CreateRobotApplicationOutput) SetSources(v []*Source) *CreateRobotApplicationOutput
SetSources sets the Sources field's value.
func (s *CreateRobotApplicationOutput) SetTags(v map[string]*string) *CreateRobotApplicationOutput
SetTags sets the Tags field's value.
func (s *CreateRobotApplicationOutput) SetVersion(v string) *CreateRobotApplicationOutput
SetVersion sets the Version field's value.
func (s CreateRobotApplicationOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CreateRobotApplicationVersionInput struct { // The application information for the robot application. // // Application is a required field Application *string `locationName:"application" min:"1" type:"string" required:"true"` // The current revision id for the robot application. If you provide a value // and it matches the latest revision ID, a new version will be created. CurrentRevisionId *string `locationName:"currentRevisionId" min:"1" type:"string"` // A SHA256 identifier for the Docker image that you use for your robot application. ImageDigest *string `locationName:"imageDigest" type:"string"` // The Amazon S3 identifier for the zip file bundle that you use for your robot // application. S3Etags []*string `locationName:"s3Etags" type:"list"` // contains filtered or unexported fields }
func (s CreateRobotApplicationVersionInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateRobotApplicationVersionInput) SetApplication(v string) *CreateRobotApplicationVersionInput
SetApplication sets the Application field's value.
func (s *CreateRobotApplicationVersionInput) SetCurrentRevisionId(v string) *CreateRobotApplicationVersionInput
SetCurrentRevisionId sets the CurrentRevisionId field's value.
func (s *CreateRobotApplicationVersionInput) SetImageDigest(v string) *CreateRobotApplicationVersionInput
SetImageDigest sets the ImageDigest field's value.
func (s *CreateRobotApplicationVersionInput) SetS3Etags(v []*string) *CreateRobotApplicationVersionInput
SetS3Etags sets the S3Etags field's value.
func (s CreateRobotApplicationVersionInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateRobotApplicationVersionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateRobotApplicationVersionOutput struct { // The Amazon Resource Name (ARN) of the robot application. Arn *string `locationName:"arn" min:"1" type:"string"` // The object that contains the Docker image URI used to create your robot application. Environment *Environment `locationName:"environment" type:"structure"` // The time, in milliseconds since the epoch, when the robot application was // last updated. LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"` // The name of the robot application. Name *string `locationName:"name" min:"1" type:"string"` // The revision id of the robot application. RevisionId *string `locationName:"revisionId" min:"1" type:"string"` // The robot software suite (ROS distribution) used by the robot application. RobotSoftwareSuite *RobotSoftwareSuite `locationName:"robotSoftwareSuite" type:"structure"` // The sources of the robot application. Sources []*Source `locationName:"sources" type:"list"` // The version of the robot application. Version *string `locationName:"version" min:"1" type:"string"` // contains filtered or unexported fields }
func (s CreateRobotApplicationVersionOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateRobotApplicationVersionOutput) SetArn(v string) *CreateRobotApplicationVersionOutput
SetArn sets the Arn field's value.
func (s *CreateRobotApplicationVersionOutput) SetEnvironment(v *Environment) *CreateRobotApplicationVersionOutput
SetEnvironment sets the Environment field's value.
func (s *CreateRobotApplicationVersionOutput) SetLastUpdatedAt(v time.Time) *CreateRobotApplicationVersionOutput
SetLastUpdatedAt sets the LastUpdatedAt field's value.
func (s *CreateRobotApplicationVersionOutput) SetName(v string) *CreateRobotApplicationVersionOutput
SetName sets the Name field's value.
func (s *CreateRobotApplicationVersionOutput) SetRevisionId(v string) *CreateRobotApplicationVersionOutput
SetRevisionId sets the RevisionId field's value.
func (s *CreateRobotApplicationVersionOutput) SetRobotSoftwareSuite(v *RobotSoftwareSuite) *CreateRobotApplicationVersionOutput
SetRobotSoftwareSuite sets the RobotSoftwareSuite field's value.
func (s *CreateRobotApplicationVersionOutput) SetSources(v []*Source) *CreateRobotApplicationVersionOutput
SetSources sets the Sources field's value.
func (s *CreateRobotApplicationVersionOutput) SetVersion(v string) *CreateRobotApplicationVersionOutput
SetVersion sets the Version field's value.
func (s CreateRobotApplicationVersionOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CreateRobotInput struct { // The target architecture of the robot. // // Architecture is a required field Architecture *string `locationName:"architecture" type:"string" required:"true" enum:"Architecture"` // The Greengrass group id. // // GreengrassGroupId is a required field GreengrassGroupId *string `locationName:"greengrassGroupId" min:"1" type:"string" required:"true"` // The name for the robot. // // Name is a required field Name *string `locationName:"name" min:"1" type:"string" required:"true"` // A map that contains tag keys and tag values that are attached to the robot. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s CreateRobotInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateRobotInput) SetArchitecture(v string) *CreateRobotInput
SetArchitecture sets the Architecture field's value.
func (s *CreateRobotInput) SetGreengrassGroupId(v string) *CreateRobotInput
SetGreengrassGroupId sets the GreengrassGroupId field's value.
func (s *CreateRobotInput) SetName(v string) *CreateRobotInput
SetName sets the Name field's value.
func (s *CreateRobotInput) SetTags(v map[string]*string) *CreateRobotInput
SetTags sets the Tags field's value.
func (s CreateRobotInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateRobotInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateRobotOutput struct { // The target architecture of the robot. Architecture *string `locationName:"architecture" type:"string" enum:"Architecture"` // The Amazon Resource Name (ARN) of the robot. Arn *string `locationName:"arn" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the robot was created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The Amazon Resource Name (ARN) of the Greengrass group associated with the // robot. GreengrassGroupId *string `locationName:"greengrassGroupId" min:"1" type:"string"` // The name of the robot. Name *string `locationName:"name" min:"1" type:"string"` // The list of all tags added to the robot. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s CreateRobotOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateRobotOutput) SetArchitecture(v string) *CreateRobotOutput
SetArchitecture sets the Architecture field's value.
func (s *CreateRobotOutput) SetArn(v string) *CreateRobotOutput
SetArn sets the Arn field's value.
func (s *CreateRobotOutput) SetCreatedAt(v time.Time) *CreateRobotOutput
SetCreatedAt sets the CreatedAt field's value.
func (s *CreateRobotOutput) SetGreengrassGroupId(v string) *CreateRobotOutput
SetGreengrassGroupId sets the GreengrassGroupId field's value.
func (s *CreateRobotOutput) SetName(v string) *CreateRobotOutput
SetName sets the Name field's value.
func (s *CreateRobotOutput) SetTags(v map[string]*string) *CreateRobotOutput
SetTags sets the Tags field's value.
func (s CreateRobotOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CreateSimulationApplicationInput struct { // The object that contains the Docker image URI used to create your simulation // application. Environment *Environment `locationName:"environment" type:"structure"` // The name of the simulation application. // // Name is a required field Name *string `locationName:"name" min:"1" type:"string" required:"true"` // The rendering engine for the simulation application. RenderingEngine *RenderingEngine `locationName:"renderingEngine" type:"structure"` // The robot software suite (ROS distribution) used by the simulation application. // // RobotSoftwareSuite is a required field RobotSoftwareSuite *RobotSoftwareSuite `locationName:"robotSoftwareSuite" type:"structure" required:"true"` // The simulation software suite used by the simulation application. // // SimulationSoftwareSuite is a required field SimulationSoftwareSuite *SimulationSoftwareSuite `locationName:"simulationSoftwareSuite" type:"structure" required:"true"` // The sources of the simulation application. Sources []*SourceConfig `locationName:"sources" type:"list"` // A map that contains tag keys and tag values that are attached to the simulation // application. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
func (s CreateSimulationApplicationInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateSimulationApplicationInput) SetEnvironment(v *Environment) *CreateSimulationApplicationInput
SetEnvironment sets the Environment field's value.
func (s *CreateSimulationApplicationInput) SetName(v string) *CreateSimulationApplicationInput
SetName sets the Name field's value.
func (s *CreateSimulationApplicationInput) SetRenderingEngine(v *RenderingEngine) *CreateSimulationApplicationInput
SetRenderingEngine sets the RenderingEngine field's value.
func (s *CreateSimulationApplicationInput) SetRobotSoftwareSuite(v *RobotSoftwareSuite) *CreateSimulationApplicationInput
SetRobotSoftwareSuite sets the RobotSoftwareSuite field's value.
func (s *CreateSimulationApplicationInput) SetSimulationSoftwareSuite(v *SimulationSoftwareSuite) *CreateSimulationApplicationInput
SetSimulationSoftwareSuite sets the SimulationSoftwareSuite field's value.
func (s *CreateSimulationApplicationInput) SetSources(v []*SourceConfig) *CreateSimulationApplicationInput
SetSources sets the Sources field's value.
func (s *CreateSimulationApplicationInput) SetTags(v map[string]*string) *CreateSimulationApplicationInput
SetTags sets the Tags field's value.
func (s CreateSimulationApplicationInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateSimulationApplicationInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateSimulationApplicationOutput struct { // The Amazon Resource Name (ARN) of the simulation application. Arn *string `locationName:"arn" min:"1" type:"string"` // The object that contains the Docker image URI that you used to create your // simulation application. Environment *Environment `locationName:"environment" type:"structure"` // The time, in milliseconds since the epoch, when the simulation application // was last updated. LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"` // The name of the simulation application. Name *string `locationName:"name" min:"1" type:"string"` // The rendering engine for the simulation application. RenderingEngine *RenderingEngine `locationName:"renderingEngine" type:"structure"` // The revision id of the simulation application. RevisionId *string `locationName:"revisionId" min:"1" type:"string"` // Information about the robot software suite (ROS distribution). RobotSoftwareSuite *RobotSoftwareSuite `locationName:"robotSoftwareSuite" type:"structure"` // The simulation software suite used by the simulation application. SimulationSoftwareSuite *SimulationSoftwareSuite `locationName:"simulationSoftwareSuite" type:"structure"` // The sources of the simulation application. Sources []*Source `locationName:"sources" type:"list"` // The list of all tags added to the simulation application. Tags map[string]*string `locationName:"tags" type:"map"` // The version of the simulation application. Version *string `locationName:"version" min:"1" type:"string"` // contains filtered or unexported fields }
func (s CreateSimulationApplicationOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateSimulationApplicationOutput) SetArn(v string) *CreateSimulationApplicationOutput
SetArn sets the Arn field's value.
func (s *CreateSimulationApplicationOutput) SetEnvironment(v *Environment) *CreateSimulationApplicationOutput
SetEnvironment sets the Environment field's value.
func (s *CreateSimulationApplicationOutput) SetLastUpdatedAt(v time.Time) *CreateSimulationApplicationOutput
SetLastUpdatedAt sets the LastUpdatedAt field's value.
func (s *CreateSimulationApplicationOutput) SetName(v string) *CreateSimulationApplicationOutput
SetName sets the Name field's value.
func (s *CreateSimulationApplicationOutput) SetRenderingEngine(v *RenderingEngine) *CreateSimulationApplicationOutput
SetRenderingEngine sets the RenderingEngine field's value.
func (s *CreateSimulationApplicationOutput) SetRevisionId(v string) *CreateSimulationApplicationOutput
SetRevisionId sets the RevisionId field's value.
func (s *CreateSimulationApplicationOutput) SetRobotSoftwareSuite(v *RobotSoftwareSuite) *CreateSimulationApplicationOutput
SetRobotSoftwareSuite sets the RobotSoftwareSuite field's value.
func (s *CreateSimulationApplicationOutput) SetSimulationSoftwareSuite(v *SimulationSoftwareSuite) *CreateSimulationApplicationOutput
SetSimulationSoftwareSuite sets the SimulationSoftwareSuite field's value.
func (s *CreateSimulationApplicationOutput) SetSources(v []*Source) *CreateSimulationApplicationOutput
SetSources sets the Sources field's value.
func (s *CreateSimulationApplicationOutput) SetTags(v map[string]*string) *CreateSimulationApplicationOutput
SetTags sets the Tags field's value.
func (s *CreateSimulationApplicationOutput) SetVersion(v string) *CreateSimulationApplicationOutput
SetVersion sets the Version field's value.
func (s CreateSimulationApplicationOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CreateSimulationApplicationVersionInput struct { // The application information for the simulation application. // // Application is a required field Application *string `locationName:"application" min:"1" type:"string" required:"true"` // The current revision id for the simulation application. If you provide a // value and it matches the latest revision ID, a new version will be created. CurrentRevisionId *string `locationName:"currentRevisionId" min:"1" type:"string"` // The SHA256 digest used to identify the Docker image URI used to created the // simulation application. ImageDigest *string `locationName:"imageDigest" type:"string"` // The Amazon S3 eTag identifier for the zip file bundle that you use to create // the simulation application. S3Etags []*string `locationName:"s3Etags" type:"list"` // contains filtered or unexported fields }
func (s CreateSimulationApplicationVersionInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateSimulationApplicationVersionInput) SetApplication(v string) *CreateSimulationApplicationVersionInput
SetApplication sets the Application field's value.
func (s *CreateSimulationApplicationVersionInput) SetCurrentRevisionId(v string) *CreateSimulationApplicationVersionInput
SetCurrentRevisionId sets the CurrentRevisionId field's value.
func (s *CreateSimulationApplicationVersionInput) SetImageDigest(v string) *CreateSimulationApplicationVersionInput
SetImageDigest sets the ImageDigest field's value.
func (s *CreateSimulationApplicationVersionInput) SetS3Etags(v []*string) *CreateSimulationApplicationVersionInput
SetS3Etags sets the S3Etags field's value.
func (s CreateSimulationApplicationVersionInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateSimulationApplicationVersionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateSimulationApplicationVersionOutput struct { // The Amazon Resource Name (ARN) of the simulation application. Arn *string `locationName:"arn" min:"1" type:"string"` // The object that contains the Docker image URI used to create the simulation // application. Environment *Environment `locationName:"environment" type:"structure"` // The time, in milliseconds since the epoch, when the simulation application // was last updated. LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"` // The name of the simulation application. Name *string `locationName:"name" min:"1" type:"string"` // The rendering engine for the simulation application. RenderingEngine *RenderingEngine `locationName:"renderingEngine" type:"structure"` // The revision ID of the simulation application. RevisionId *string `locationName:"revisionId" min:"1" type:"string"` // Information about the robot software suite (ROS distribution). RobotSoftwareSuite *RobotSoftwareSuite `locationName:"robotSoftwareSuite" type:"structure"` // The simulation software suite used by the simulation application. SimulationSoftwareSuite *SimulationSoftwareSuite `locationName:"simulationSoftwareSuite" type:"structure"` // The sources of the simulation application. Sources []*Source `locationName:"sources" type:"list"` // The version of the simulation application. Version *string `locationName:"version" min:"1" type:"string"` // contains filtered or unexported fields }
func (s CreateSimulationApplicationVersionOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateSimulationApplicationVersionOutput) SetArn(v string) *CreateSimulationApplicationVersionOutput
SetArn sets the Arn field's value.
func (s *CreateSimulationApplicationVersionOutput) SetEnvironment(v *Environment) *CreateSimulationApplicationVersionOutput
SetEnvironment sets the Environment field's value.
func (s *CreateSimulationApplicationVersionOutput) SetLastUpdatedAt(v time.Time) *CreateSimulationApplicationVersionOutput
SetLastUpdatedAt sets the LastUpdatedAt field's value.
func (s *CreateSimulationApplicationVersionOutput) SetName(v string) *CreateSimulationApplicationVersionOutput
SetName sets the Name field's value.
func (s *CreateSimulationApplicationVersionOutput) SetRenderingEngine(v *RenderingEngine) *CreateSimulationApplicationVersionOutput
SetRenderingEngine sets the RenderingEngine field's value.
func (s *CreateSimulationApplicationVersionOutput) SetRevisionId(v string) *CreateSimulationApplicationVersionOutput
SetRevisionId sets the RevisionId field's value.
func (s *CreateSimulationApplicationVersionOutput) SetRobotSoftwareSuite(v *RobotSoftwareSuite) *CreateSimulationApplicationVersionOutput
SetRobotSoftwareSuite sets the RobotSoftwareSuite field's value.
func (s *CreateSimulationApplicationVersionOutput) SetSimulationSoftwareSuite(v *SimulationSoftwareSuite) *CreateSimulationApplicationVersionOutput
SetSimulationSoftwareSuite sets the SimulationSoftwareSuite field's value.
func (s *CreateSimulationApplicationVersionOutput) SetSources(v []*Source) *CreateSimulationApplicationVersionOutput
SetSources sets the Sources field's value.
func (s *CreateSimulationApplicationVersionOutput) SetVersion(v string) *CreateSimulationApplicationVersionOutput
SetVersion sets the Version field's value.
func (s CreateSimulationApplicationVersionOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CreateSimulationJobInput struct { // Unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string" idempotencyToken:"true"` // Compute information for the simulation job. Compute *Compute `locationName:"compute" type:"structure"` // Specify data sources to mount read-only files from S3 into your simulation. // These files are available under /opt/robomaker/datasources/data_source_name. // // There is a limit of 100 files and a combined size of 25GB for all DataSourceConfig // objects. DataSources []*DataSourceConfig `locationName:"dataSources" min:"1" type:"list"` // The failure behavior the simulation job. // // Continue // // Leaves the instance running for its maximum timeout duration after a 4XX // error code. // // Fail // // Stop the simulation job and terminate the instance. FailureBehavior *string `locationName:"failureBehavior" type:"string" enum:"FailureBehavior"` // The IAM role name that allows the simulation instance to call the AWS APIs // that are specified in its associated policies on your behalf. This is how // credentials are passed in to your simulation job. // // IamRole is a required field IamRole *string `locationName:"iamRole" min:"1" type:"string" required:"true"` // The logging configuration. LoggingConfig *LoggingConfig `locationName:"loggingConfig" type:"structure"` // The maximum simulation job duration in seconds (up to 14 days or 1,209,600 // seconds. When maxJobDurationInSeconds is reached, the simulation job will // status will transition to Completed. // // MaxJobDurationInSeconds is a required field MaxJobDurationInSeconds *int64 `locationName:"maxJobDurationInSeconds" type:"long" required:"true"` // Location for output files generated by the simulation job. OutputLocation *OutputLocation `locationName:"outputLocation" type:"structure"` // The robot application to use in the simulation job. RobotApplications []*RobotApplicationConfig `locationName:"robotApplications" min:"1" type:"list"` // The simulation application to use in the simulation job. SimulationApplications []*SimulationApplicationConfig `locationName:"simulationApplications" min:"1" type:"list"` // A map that contains tag keys and tag values that are attached to the simulation // job. Tags map[string]*string `locationName:"tags" type:"map"` // If your simulation job accesses resources in a VPC, you provide this parameter // identifying the list of security group IDs and subnet IDs. These must belong // to the same VPC. You must provide at least one security group and one subnet // ID. VpcConfig *VPCConfig `locationName:"vpcConfig" type:"structure"` // contains filtered or unexported fields }
func (s CreateSimulationJobInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateSimulationJobInput) SetClientRequestToken(v string) *CreateSimulationJobInput
SetClientRequestToken sets the ClientRequestToken field's value.
func (s *CreateSimulationJobInput) SetCompute(v *Compute) *CreateSimulationJobInput
SetCompute sets the Compute field's value.
func (s *CreateSimulationJobInput) SetDataSources(v []*DataSourceConfig) *CreateSimulationJobInput
SetDataSources sets the DataSources field's value.
func (s *CreateSimulationJobInput) SetFailureBehavior(v string) *CreateSimulationJobInput
SetFailureBehavior sets the FailureBehavior field's value.
func (s *CreateSimulationJobInput) SetIamRole(v string) *CreateSimulationJobInput
SetIamRole sets the IamRole field's value.
func (s *CreateSimulationJobInput) SetLoggingConfig(v *LoggingConfig) *CreateSimulationJobInput
SetLoggingConfig sets the LoggingConfig field's value.
func (s *CreateSimulationJobInput) SetMaxJobDurationInSeconds(v int64) *CreateSimulationJobInput
SetMaxJobDurationInSeconds sets the MaxJobDurationInSeconds field's value.
func (s *CreateSimulationJobInput) SetOutputLocation(v *OutputLocation) *CreateSimulationJobInput
SetOutputLocation sets the OutputLocation field's value.
func (s *CreateSimulationJobInput) SetRobotApplications(v []*RobotApplicationConfig) *CreateSimulationJobInput
SetRobotApplications sets the RobotApplications field's value.
func (s *CreateSimulationJobInput) SetSimulationApplications(v []*SimulationApplicationConfig) *CreateSimulationJobInput
SetSimulationApplications sets the SimulationApplications field's value.
func (s *CreateSimulationJobInput) SetTags(v map[string]*string) *CreateSimulationJobInput
SetTags sets the Tags field's value.
func (s *CreateSimulationJobInput) SetVpcConfig(v *VPCConfig) *CreateSimulationJobInput
SetVpcConfig sets the VpcConfig field's value.
func (s CreateSimulationJobInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateSimulationJobInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateSimulationJobOutput struct { // The Amazon Resource Name (ARN) of the simulation job. Arn *string `locationName:"arn" min:"1" type:"string"` // Unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string"` // Compute information for the simulation job. Compute *ComputeResponse `locationName:"compute" type:"structure"` // The data sources for the simulation job. DataSources []*DataSource `locationName:"dataSources" type:"list"` // the failure behavior for the simulation job. FailureBehavior *string `locationName:"failureBehavior" type:"string" enum:"FailureBehavior"` // The failure code of the simulation job if it failed: // // InternalServiceError // // Internal service error. // // RobotApplicationCrash // // Robot application exited abnormally. // // SimulationApplicationCrash // // Simulation application exited abnormally. // // BadPermissionsRobotApplication // // Robot application bundle could not be downloaded. // // BadPermissionsSimulationApplication // // Simulation application bundle could not be downloaded. // // BadPermissionsS3Output // // Unable to publish outputs to customer-provided S3 bucket. // // BadPermissionsCloudwatchLogs // // Unable to publish logs to customer-provided CloudWatch Logs resource. // // SubnetIpLimitExceeded // // Subnet IP limit exceeded. // // ENILimitExceeded // // ENI limit exceeded. // // BadPermissionsUserCredentials // // Unable to use the Role provided. // // InvalidBundleRobotApplication // // Robot bundle cannot be extracted (invalid format, bundling error, or other // issue). // // InvalidBundleSimulationApplication // // Simulation bundle cannot be extracted (invalid format, bundling error, or // other issue). // // RobotApplicationVersionMismatchedEtag // // Etag for RobotApplication does not match value during version creation. // // SimulationApplicationVersionMismatchedEtag // // Etag for SimulationApplication does not match value during version creation. FailureCode *string `locationName:"failureCode" type:"string" enum:"SimulationJobErrorCode"` // The IAM role that allows the simulation job to call the AWS APIs that are // specified in its associated policies on your behalf. IamRole *string `locationName:"iamRole" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the simulation job was last // started. LastStartedAt *time.Time `locationName:"lastStartedAt" type:"timestamp"` // The time, in milliseconds since the epoch, when the simulation job was last // updated. LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"` // The logging configuration. LoggingConfig *LoggingConfig `locationName:"loggingConfig" type:"structure"` // The maximum simulation job duration in seconds. MaxJobDurationInSeconds *int64 `locationName:"maxJobDurationInSeconds" type:"long"` // Simulation job output files location. OutputLocation *OutputLocation `locationName:"outputLocation" type:"structure"` // The robot application used by the simulation job. RobotApplications []*RobotApplicationConfig `locationName:"robotApplications" min:"1" type:"list"` // The simulation application used by the simulation job. SimulationApplications []*SimulationApplicationConfig `locationName:"simulationApplications" min:"1" type:"list"` // The simulation job execution duration in milliseconds. SimulationTimeMillis *int64 `locationName:"simulationTimeMillis" type:"long"` // The status of the simulation job. Status *string `locationName:"status" type:"string" enum:"SimulationJobStatus"` // The list of all tags added to the simulation job. Tags map[string]*string `locationName:"tags" type:"map"` // Information about the vpc configuration. VpcConfig *VPCConfigResponse `locationName:"vpcConfig" type:"structure"` // contains filtered or unexported fields }
func (s CreateSimulationJobOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateSimulationJobOutput) SetArn(v string) *CreateSimulationJobOutput
SetArn sets the Arn field's value.
func (s *CreateSimulationJobOutput) SetClientRequestToken(v string) *CreateSimulationJobOutput
SetClientRequestToken sets the ClientRequestToken field's value.
func (s *CreateSimulationJobOutput) SetCompute(v *ComputeResponse) *CreateSimulationJobOutput
SetCompute sets the Compute field's value.
func (s *CreateSimulationJobOutput) SetDataSources(v []*DataSource) *CreateSimulationJobOutput
SetDataSources sets the DataSources field's value.
func (s *CreateSimulationJobOutput) SetFailureBehavior(v string) *CreateSimulationJobOutput
SetFailureBehavior sets the FailureBehavior field's value.
func (s *CreateSimulationJobOutput) SetFailureCode(v string) *CreateSimulationJobOutput
SetFailureCode sets the FailureCode field's value.
func (s *CreateSimulationJobOutput) SetIamRole(v string) *CreateSimulationJobOutput
SetIamRole sets the IamRole field's value.
func (s *CreateSimulationJobOutput) SetLastStartedAt(v time.Time) *CreateSimulationJobOutput
SetLastStartedAt sets the LastStartedAt field's value.
func (s *CreateSimulationJobOutput) SetLastUpdatedAt(v time.Time) *CreateSimulationJobOutput
SetLastUpdatedAt sets the LastUpdatedAt field's value.
func (s *CreateSimulationJobOutput) SetLoggingConfig(v *LoggingConfig) *CreateSimulationJobOutput
SetLoggingConfig sets the LoggingConfig field's value.
func (s *CreateSimulationJobOutput) SetMaxJobDurationInSeconds(v int64) *CreateSimulationJobOutput
SetMaxJobDurationInSeconds sets the MaxJobDurationInSeconds field's value.
func (s *CreateSimulationJobOutput) SetOutputLocation(v *OutputLocation) *CreateSimulationJobOutput
SetOutputLocation sets the OutputLocation field's value.
func (s *CreateSimulationJobOutput) SetRobotApplications(v []*RobotApplicationConfig) *CreateSimulationJobOutput
SetRobotApplications sets the RobotApplications field's value.
func (s *CreateSimulationJobOutput) SetSimulationApplications(v []*SimulationApplicationConfig) *CreateSimulationJobOutput
SetSimulationApplications sets the SimulationApplications field's value.
func (s *CreateSimulationJobOutput) SetSimulationTimeMillis(v int64) *CreateSimulationJobOutput
SetSimulationTimeMillis sets the SimulationTimeMillis field's value.
func (s *CreateSimulationJobOutput) SetStatus(v string) *CreateSimulationJobOutput
SetStatus sets the Status field's value.
func (s *CreateSimulationJobOutput) SetTags(v map[string]*string) *CreateSimulationJobOutput
SetTags sets the Tags field's value.
func (s *CreateSimulationJobOutput) SetVpcConfig(v *VPCConfigResponse) *CreateSimulationJobOutput
SetVpcConfig sets the VpcConfig field's value.
func (s CreateSimulationJobOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CreateWorldExportJobInput struct { // Unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string" idempotencyToken:"true"` // The IAM role that the world export process uses to access the Amazon S3 bucket // and put the export. // // IamRole is a required field IamRole *string `locationName:"iamRole" min:"1" type:"string" required:"true"` // The output location. // // OutputLocation is a required field OutputLocation *OutputLocation `locationName:"outputLocation" type:"structure" required:"true"` // A map that contains tag keys and tag values that are attached to the world // export job. Tags map[string]*string `locationName:"tags" type:"map"` // A list of Amazon Resource Names (arns) that correspond to worlds to export. // // Worlds is a required field Worlds []*string `locationName:"worlds" min:"1" type:"list" required:"true"` // contains filtered or unexported fields }
func (s CreateWorldExportJobInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateWorldExportJobInput) SetClientRequestToken(v string) *CreateWorldExportJobInput
SetClientRequestToken sets the ClientRequestToken field's value.
func (s *CreateWorldExportJobInput) SetIamRole(v string) *CreateWorldExportJobInput
SetIamRole sets the IamRole field's value.
func (s *CreateWorldExportJobInput) SetOutputLocation(v *OutputLocation) *CreateWorldExportJobInput
SetOutputLocation sets the OutputLocation field's value.
func (s *CreateWorldExportJobInput) SetTags(v map[string]*string) *CreateWorldExportJobInput
SetTags sets the Tags field's value.
func (s *CreateWorldExportJobInput) SetWorlds(v []*string) *CreateWorldExportJobInput
SetWorlds sets the Worlds field's value.
func (s CreateWorldExportJobInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateWorldExportJobInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateWorldExportJobOutput struct { // The Amazon Resource Name (ARN) of the world export job. Arn *string `locationName:"arn" min:"1" type:"string"` // Unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the world export job was // created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The failure code of the world export job if it failed: // // InternalServiceError // // Internal service error. // // LimitExceeded // // The requested resource exceeds the maximum number allowed, or the number // of concurrent stream requests exceeds the maximum number allowed. // // ResourceNotFound // // The specified resource could not be found. // // RequestThrottled // // The request was throttled. // // InvalidInput // // An input parameter in the request is not valid. // // AllWorldGenerationFailed // // All of the worlds in the world generation job failed. This can happen if // your worldCount is greater than 50 or less than 1. // // For more information about troubleshooting WorldForge, see Troubleshooting // Simulation WorldForge (https://docs.aws.amazon.com/robomaker/latest/dg/troubleshooting-worldforge.html). FailureCode *string `locationName:"failureCode" type:"string" enum:"WorldExportJobErrorCode"` // The IAM role that the world export process uses to access the Amazon S3 bucket // and put the export. IamRole *string `locationName:"iamRole" min:"1" type:"string"` // The output location. OutputLocation *OutputLocation `locationName:"outputLocation" type:"structure"` // The status of the world export job. // // Pending // // The world export job request is pending. // // Running // // The world export job is running. // // Completed // // The world export job completed. // // Failed // // The world export job failed. See failureCode for more information. // // Canceled // // The world export job was cancelled. // // Canceling // // The world export job is being cancelled. Status *string `locationName:"status" type:"string" enum:"WorldExportJobStatus"` // A map that contains tag keys and tag values that are attached to the world // export job. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
func (s CreateWorldExportJobOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateWorldExportJobOutput) SetArn(v string) *CreateWorldExportJobOutput
SetArn sets the Arn field's value.
func (s *CreateWorldExportJobOutput) SetClientRequestToken(v string) *CreateWorldExportJobOutput
SetClientRequestToken sets the ClientRequestToken field's value.
func (s *CreateWorldExportJobOutput) SetCreatedAt(v time.Time) *CreateWorldExportJobOutput
SetCreatedAt sets the CreatedAt field's value.
func (s *CreateWorldExportJobOutput) SetFailureCode(v string) *CreateWorldExportJobOutput
SetFailureCode sets the FailureCode field's value.
func (s *CreateWorldExportJobOutput) SetIamRole(v string) *CreateWorldExportJobOutput
SetIamRole sets the IamRole field's value.
func (s *CreateWorldExportJobOutput) SetOutputLocation(v *OutputLocation) *CreateWorldExportJobOutput
SetOutputLocation sets the OutputLocation field's value.
func (s *CreateWorldExportJobOutput) SetStatus(v string) *CreateWorldExportJobOutput
SetStatus sets the Status field's value.
func (s *CreateWorldExportJobOutput) SetTags(v map[string]*string) *CreateWorldExportJobOutput
SetTags sets the Tags field's value.
func (s CreateWorldExportJobOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CreateWorldGenerationJobInput struct { // Unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string" idempotencyToken:"true"` // A map that contains tag keys and tag values that are attached to the world // generator job. Tags map[string]*string `locationName:"tags" type:"map"` // The Amazon Resource Name (arn) of the world template describing the worlds // you want to create. // // Template is a required field Template *string `locationName:"template" min:"1" type:"string" required:"true"` // Information about the world count. // // WorldCount is a required field WorldCount *WorldCount `locationName:"worldCount" type:"structure" required:"true"` // A map that contains tag keys and tag values that are attached to the generated // worlds. WorldTags map[string]*string `locationName:"worldTags" type:"map"` // contains filtered or unexported fields }
func (s CreateWorldGenerationJobInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateWorldGenerationJobInput) SetClientRequestToken(v string) *CreateWorldGenerationJobInput
SetClientRequestToken sets the ClientRequestToken field's value.
func (s *CreateWorldGenerationJobInput) SetTags(v map[string]*string) *CreateWorldGenerationJobInput
SetTags sets the Tags field's value.
func (s *CreateWorldGenerationJobInput) SetTemplate(v string) *CreateWorldGenerationJobInput
SetTemplate sets the Template field's value.
func (s *CreateWorldGenerationJobInput) SetWorldCount(v *WorldCount) *CreateWorldGenerationJobInput
SetWorldCount sets the WorldCount field's value.
func (s *CreateWorldGenerationJobInput) SetWorldTags(v map[string]*string) *CreateWorldGenerationJobInput
SetWorldTags sets the WorldTags field's value.
func (s CreateWorldGenerationJobInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateWorldGenerationJobInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateWorldGenerationJobOutput struct { // The Amazon Resource Name (ARN) of the world generator job. Arn *string `locationName:"arn" min:"1" type:"string"` // Unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the world generator job was // created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The failure code of the world generator job if it failed: // // InternalServiceError // // Internal service error. // // LimitExceeded // // The requested resource exceeds the maximum number allowed, or the number // of concurrent stream requests exceeds the maximum number allowed. // // ResourceNotFound // // The specified resource could not be found. // // RequestThrottled // // The request was throttled. // // InvalidInput // // An input parameter in the request is not valid. FailureCode *string `locationName:"failureCode" type:"string" enum:"WorldGenerationJobErrorCode"` // The status of the world generator job. // // Pending // // The world generator job request is pending. // // Running // // The world generator job is running. // // Completed // // The world generator job completed. // // Failed // // The world generator job failed. See failureCode for more information. // // PartialFailed // // Some worlds did not generate. // // Canceled // // The world generator job was cancelled. // // Canceling // // The world generator job is being cancelled. Status *string `locationName:"status" type:"string" enum:"WorldGenerationJobStatus"` // A map that contains tag keys and tag values that are attached to the world // generator job. Tags map[string]*string `locationName:"tags" type:"map"` // The Amazon Resource Name (arn) of the world template. Template *string `locationName:"template" min:"1" type:"string"` // Information about the world count. WorldCount *WorldCount `locationName:"worldCount" type:"structure"` // A map that contains tag keys and tag values that are attached to the generated // worlds. WorldTags map[string]*string `locationName:"worldTags" type:"map"` // contains filtered or unexported fields }
func (s CreateWorldGenerationJobOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateWorldGenerationJobOutput) SetArn(v string) *CreateWorldGenerationJobOutput
SetArn sets the Arn field's value.
func (s *CreateWorldGenerationJobOutput) SetClientRequestToken(v string) *CreateWorldGenerationJobOutput
SetClientRequestToken sets the ClientRequestToken field's value.
func (s *CreateWorldGenerationJobOutput) SetCreatedAt(v time.Time) *CreateWorldGenerationJobOutput
SetCreatedAt sets the CreatedAt field's value.
func (s *CreateWorldGenerationJobOutput) SetFailureCode(v string) *CreateWorldGenerationJobOutput
SetFailureCode sets the FailureCode field's value.
func (s *CreateWorldGenerationJobOutput) SetStatus(v string) *CreateWorldGenerationJobOutput
SetStatus sets the Status field's value.
func (s *CreateWorldGenerationJobOutput) SetTags(v map[string]*string) *CreateWorldGenerationJobOutput
SetTags sets the Tags field's value.
func (s *CreateWorldGenerationJobOutput) SetTemplate(v string) *CreateWorldGenerationJobOutput
SetTemplate sets the Template field's value.
func (s *CreateWorldGenerationJobOutput) SetWorldCount(v *WorldCount) *CreateWorldGenerationJobOutput
SetWorldCount sets the WorldCount field's value.
func (s *CreateWorldGenerationJobOutput) SetWorldTags(v map[string]*string) *CreateWorldGenerationJobOutput
SetWorldTags sets the WorldTags field's value.
func (s CreateWorldGenerationJobOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type CreateWorldTemplateInput struct { // Unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string"` // The name of the world template. Name *string `locationName:"name" type:"string"` // A map that contains tag keys and tag values that are attached to the world // template. Tags map[string]*string `locationName:"tags" type:"map"` // The world template body. TemplateBody *string `locationName:"templateBody" min:"1" type:"string"` // The location of the world template. TemplateLocation *TemplateLocation `locationName:"templateLocation" type:"structure"` // contains filtered or unexported fields }
func (s CreateWorldTemplateInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateWorldTemplateInput) SetClientRequestToken(v string) *CreateWorldTemplateInput
SetClientRequestToken sets the ClientRequestToken field's value.
func (s *CreateWorldTemplateInput) SetName(v string) *CreateWorldTemplateInput
SetName sets the Name field's value.
func (s *CreateWorldTemplateInput) SetTags(v map[string]*string) *CreateWorldTemplateInput
SetTags sets the Tags field's value.
func (s *CreateWorldTemplateInput) SetTemplateBody(v string) *CreateWorldTemplateInput
SetTemplateBody sets the TemplateBody field's value.
func (s *CreateWorldTemplateInput) SetTemplateLocation(v *TemplateLocation) *CreateWorldTemplateInput
SetTemplateLocation sets the TemplateLocation field's value.
func (s CreateWorldTemplateInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateWorldTemplateInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateWorldTemplateOutput struct { // The Amazon Resource Name (ARN) of the world template. Arn *string `locationName:"arn" min:"1" type:"string"` // Unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the world template was created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The name of the world template. Name *string `locationName:"name" type:"string"` // A map that contains tag keys and tag values that are attached to the world // template. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
func (s CreateWorldTemplateOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *CreateWorldTemplateOutput) SetArn(v string) *CreateWorldTemplateOutput
SetArn sets the Arn field's value.
func (s *CreateWorldTemplateOutput) SetClientRequestToken(v string) *CreateWorldTemplateOutput
SetClientRequestToken sets the ClientRequestToken field's value.
func (s *CreateWorldTemplateOutput) SetCreatedAt(v time.Time) *CreateWorldTemplateOutput
SetCreatedAt sets the CreatedAt field's value.
func (s *CreateWorldTemplateOutput) SetName(v string) *CreateWorldTemplateOutput
SetName sets the Name field's value.
func (s *CreateWorldTemplateOutput) SetTags(v map[string]*string) *CreateWorldTemplateOutput
SetTags sets the Tags field's value.
func (s CreateWorldTemplateOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DataSource struct { // The location where your files are mounted in the container image. // // If you've specified the type of the data source as an Archive, you must provide // an Amazon S3 object key to your archive. The object key must point to either // a .zip or .tar.gz file. // // If you've specified the type of the data source as a Prefix, you provide // the Amazon S3 prefix that points to the files that you are using for your // data source. // // If you've specified the type of the data source as a File, you provide the // Amazon S3 path to the file that you're using as your data source. Destination *string `locationName:"destination" min:"1" type:"string"` // The name of the data source. Name *string `locationName:"name" min:"1" type:"string"` // The S3 bucket where the data files are located. S3Bucket *string `locationName:"s3Bucket" min:"3" type:"string"` // The list of S3 keys identifying the data source files. S3Keys []*S3KeyOutput `locationName:"s3Keys" type:"list"` // The data type for the data source that you're using for your container image // or simulation job. You can use this field to specify whether your data source // is an Archive, an Amazon S3 prefix, or a file. // // If you don't specify a field, the default value is File. Type *string `locationName:"type" type:"string" enum:"DataSourceType"` // contains filtered or unexported fields }
Information about a data source.
func (s DataSource) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DataSource) SetDestination(v string) *DataSource
SetDestination sets the Destination field's value.
func (s *DataSource) SetName(v string) *DataSource
SetName sets the Name field's value.
func (s *DataSource) SetS3Bucket(v string) *DataSource
SetS3Bucket sets the S3Bucket field's value.
func (s *DataSource) SetS3Keys(v []*S3KeyOutput) *DataSource
SetS3Keys sets the S3Keys field's value.
func (s *DataSource) SetType(v string) *DataSource
SetType sets the Type field's value.
func (s DataSource) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DataSourceConfig struct { // The location where your files are mounted in the container image. // // If you've specified the type of the data source as an Archive, you must provide // an Amazon S3 object key to your archive. The object key must point to either // a .zip or .tar.gz file. // // If you've specified the type of the data source as a Prefix, you provide // the Amazon S3 prefix that points to the files that you are using for your // data source. // // If you've specified the type of the data source as a File, you provide the // Amazon S3 path to the file that you're using as your data source. Destination *string `locationName:"destination" min:"1" type:"string"` // The name of the data source. // // Name is a required field Name *string `locationName:"name" min:"1" type:"string" required:"true"` // The S3 bucket where the data files are located. // // S3Bucket is a required field S3Bucket *string `locationName:"s3Bucket" min:"3" type:"string" required:"true"` // The list of S3 keys identifying the data source files. // // S3Keys is a required field S3Keys []*string `locationName:"s3Keys" min:"1" type:"list" required:"true"` // The data type for the data source that you're using for your container image // or simulation job. You can use this field to specify whether your data source // is an Archive, an Amazon S3 prefix, or a file. // // If you don't specify a field, the default value is File. Type *string `locationName:"type" type:"string" enum:"DataSourceType"` // contains filtered or unexported fields }
Information about a data source.
func (s DataSourceConfig) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DataSourceConfig) SetDestination(v string) *DataSourceConfig
SetDestination sets the Destination field's value.
func (s *DataSourceConfig) SetName(v string) *DataSourceConfig
SetName sets the Name field's value.
func (s *DataSourceConfig) SetS3Bucket(v string) *DataSourceConfig
SetS3Bucket sets the S3Bucket field's value.
func (s *DataSourceConfig) SetS3Keys(v []*string) *DataSourceConfig
SetS3Keys sets the S3Keys field's value.
func (s *DataSourceConfig) SetType(v string) *DataSourceConfig
SetType sets the Type field's value.
func (s DataSourceConfig) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DataSourceConfig) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteFleetInput struct { // The Amazon Resource Name (ARN) of the fleet. // // Fleet is a required field Fleet *string `locationName:"fleet" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s DeleteFleetInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeleteFleetInput) SetFleet(v string) *DeleteFleetInput
SetFleet sets the Fleet field's value.
func (s DeleteFleetInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeleteFleetInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteFleetOutput struct {
// contains filtered or unexported fields
}
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s DeleteFleetOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s DeleteFleetOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DeleteRobotApplicationInput struct { // The Amazon Resource Name (ARN) of the the robot application. // // Application is a required field Application *string `locationName:"application" min:"1" type:"string" required:"true"` // The version of the robot application to delete. ApplicationVersion *string `locationName:"applicationVersion" min:"1" type:"string"` // contains filtered or unexported fields }
func (s DeleteRobotApplicationInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeleteRobotApplicationInput) SetApplication(v string) *DeleteRobotApplicationInput
SetApplication sets the Application field's value.
func (s *DeleteRobotApplicationInput) SetApplicationVersion(v string) *DeleteRobotApplicationInput
SetApplicationVersion sets the ApplicationVersion field's value.
func (s DeleteRobotApplicationInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeleteRobotApplicationInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteRobotApplicationOutput struct {
// contains filtered or unexported fields
}
func (s DeleteRobotApplicationOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s DeleteRobotApplicationOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DeleteRobotInput struct { // The Amazon Resource Name (ARN) of the robot. // // Robot is a required field Robot *string `locationName:"robot" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s DeleteRobotInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeleteRobotInput) SetRobot(v string) *DeleteRobotInput
SetRobot sets the Robot field's value.
func (s DeleteRobotInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeleteRobotInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteRobotOutput struct {
// contains filtered or unexported fields
}
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s DeleteRobotOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s DeleteRobotOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DeleteSimulationApplicationInput struct { // The application information for the simulation application to delete. // // Application is a required field Application *string `locationName:"application" min:"1" type:"string" required:"true"` // The version of the simulation application to delete. ApplicationVersion *string `locationName:"applicationVersion" min:"1" type:"string"` // contains filtered or unexported fields }
func (s DeleteSimulationApplicationInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeleteSimulationApplicationInput) SetApplication(v string) *DeleteSimulationApplicationInput
SetApplication sets the Application field's value.
func (s *DeleteSimulationApplicationInput) SetApplicationVersion(v string) *DeleteSimulationApplicationInput
SetApplicationVersion sets the ApplicationVersion field's value.
func (s DeleteSimulationApplicationInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeleteSimulationApplicationInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteSimulationApplicationOutput struct {
// contains filtered or unexported fields
}
func (s DeleteSimulationApplicationOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s DeleteSimulationApplicationOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DeleteWorldTemplateInput struct { // The Amazon Resource Name (arn) of the world template you want to delete. // // Template is a required field Template *string `locationName:"template" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteWorldTemplateInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeleteWorldTemplateInput) SetTemplate(v string) *DeleteWorldTemplateInput
SetTemplate sets the Template field's value.
func (s DeleteWorldTemplateInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeleteWorldTemplateInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteWorldTemplateOutput struct {
// contains filtered or unexported fields
}
func (s DeleteWorldTemplateOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s DeleteWorldTemplateOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DeploymentApplicationConfig struct { // The Amazon Resource Name (ARN) of the robot application. // // Application is a required field Application *string `locationName:"application" min:"1" type:"string" required:"true"` // The version of the application. // // ApplicationVersion is a required field ApplicationVersion *string `locationName:"applicationVersion" min:"1" type:"string" required:"true"` // The launch configuration. // // LaunchConfig is a required field LaunchConfig *DeploymentLaunchConfig `locationName:"launchConfig" type:"structure" required:"true"` // contains filtered or unexported fields }
Information about a deployment application configuration.
func (s DeploymentApplicationConfig) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeploymentApplicationConfig) SetApplication(v string) *DeploymentApplicationConfig
SetApplication sets the Application field's value.
func (s *DeploymentApplicationConfig) SetApplicationVersion(v string) *DeploymentApplicationConfig
SetApplicationVersion sets the ApplicationVersion field's value.
func (s *DeploymentApplicationConfig) SetLaunchConfig(v *DeploymentLaunchConfig) *DeploymentApplicationConfig
SetLaunchConfig sets the LaunchConfig field's value.
func (s DeploymentApplicationConfig) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeploymentApplicationConfig) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeploymentConfig struct { // The percentage of robots receiving the deployment at the same time. ConcurrentDeploymentPercentage *int64 `locationName:"concurrentDeploymentPercentage" min:"1" type:"integer"` // The download condition file. DownloadConditionFile *S3Object `locationName:"downloadConditionFile" type:"structure"` // The percentage of deployments that need to fail before stopping deployment. FailureThresholdPercentage *int64 `locationName:"failureThresholdPercentage" min:"1" type:"integer"` // The amount of time, in seconds, to wait for deployment to a single robot // to complete. Choose a time between 1 minute and 7 days. The default is 5 // hours. RobotDeploymentTimeoutInSeconds *int64 `locationName:"robotDeploymentTimeoutInSeconds" type:"long"` // contains filtered or unexported fields }
Information about a deployment configuration.
func (s DeploymentConfig) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeploymentConfig) SetConcurrentDeploymentPercentage(v int64) *DeploymentConfig
SetConcurrentDeploymentPercentage sets the ConcurrentDeploymentPercentage field's value.
func (s *DeploymentConfig) SetDownloadConditionFile(v *S3Object) *DeploymentConfig
SetDownloadConditionFile sets the DownloadConditionFile field's value.
func (s *DeploymentConfig) SetFailureThresholdPercentage(v int64) *DeploymentConfig
SetFailureThresholdPercentage sets the FailureThresholdPercentage field's value.
func (s *DeploymentConfig) SetRobotDeploymentTimeoutInSeconds(v int64) *DeploymentConfig
SetRobotDeploymentTimeoutInSeconds sets the RobotDeploymentTimeoutInSeconds field's value.
func (s DeploymentConfig) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeploymentConfig) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeploymentJob struct { // The Amazon Resource Name (ARN) of the deployment job. Arn *string `locationName:"arn" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the deployment job was created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The deployment application configuration. DeploymentApplicationConfigs []*DeploymentApplicationConfig `locationName:"deploymentApplicationConfigs" min:"1" type:"list"` // The deployment configuration. DeploymentConfig *DeploymentConfig `locationName:"deploymentConfig" type:"structure"` // The deployment job failure code. FailureCode *string `locationName:"failureCode" type:"string" enum:"DeploymentJobErrorCode"` // A short description of the reason why the deployment job failed. FailureReason *string `locationName:"failureReason" type:"string"` // The Amazon Resource Name (ARN) of the fleet. Fleet *string `locationName:"fleet" min:"1" type:"string"` // The status of the deployment job. Status *string `locationName:"status" type:"string" enum:"DeploymentStatus"` // contains filtered or unexported fields }
Information about a deployment job.
func (s DeploymentJob) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeploymentJob) SetArn(v string) *DeploymentJob
SetArn sets the Arn field's value.
func (s *DeploymentJob) SetCreatedAt(v time.Time) *DeploymentJob
SetCreatedAt sets the CreatedAt field's value.
func (s *DeploymentJob) SetDeploymentApplicationConfigs(v []*DeploymentApplicationConfig) *DeploymentJob
SetDeploymentApplicationConfigs sets the DeploymentApplicationConfigs field's value.
func (s *DeploymentJob) SetDeploymentConfig(v *DeploymentConfig) *DeploymentJob
SetDeploymentConfig sets the DeploymentConfig field's value.
func (s *DeploymentJob) SetFailureCode(v string) *DeploymentJob
SetFailureCode sets the FailureCode field's value.
func (s *DeploymentJob) SetFailureReason(v string) *DeploymentJob
SetFailureReason sets the FailureReason field's value.
func (s *DeploymentJob) SetFleet(v string) *DeploymentJob
SetFleet sets the Fleet field's value.
func (s *DeploymentJob) SetStatus(v string) *DeploymentJob
SetStatus sets the Status field's value.
func (s DeploymentJob) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DeploymentLaunchConfig struct { // An array of key/value pairs specifying environment variables for the robot // application EnvironmentVariables map[string]*string `locationName:"environmentVariables" type:"map"` // The launch file name. // // LaunchFile is a required field LaunchFile *string `locationName:"launchFile" min:"1" type:"string" required:"true"` // The package name. // // PackageName is a required field PackageName *string `locationName:"packageName" min:"1" type:"string" required:"true"` // The deployment post-launch file. This file will be executed after the launch // file. PostLaunchFile *string `locationName:"postLaunchFile" min:"1" type:"string"` // The deployment pre-launch file. This file will be executed prior to the launch // file. PreLaunchFile *string `locationName:"preLaunchFile" min:"1" type:"string"` // contains filtered or unexported fields }
Configuration information for a deployment launch.
func (s DeploymentLaunchConfig) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeploymentLaunchConfig) SetEnvironmentVariables(v map[string]*string) *DeploymentLaunchConfig
SetEnvironmentVariables sets the EnvironmentVariables field's value.
func (s *DeploymentLaunchConfig) SetLaunchFile(v string) *DeploymentLaunchConfig
SetLaunchFile sets the LaunchFile field's value.
func (s *DeploymentLaunchConfig) SetPackageName(v string) *DeploymentLaunchConfig
SetPackageName sets the PackageName field's value.
func (s *DeploymentLaunchConfig) SetPostLaunchFile(v string) *DeploymentLaunchConfig
SetPostLaunchFile sets the PostLaunchFile field's value.
func (s *DeploymentLaunchConfig) SetPreLaunchFile(v string) *DeploymentLaunchConfig
SetPreLaunchFile sets the PreLaunchFile field's value.
func (s DeploymentLaunchConfig) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeploymentLaunchConfig) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeregisterRobotInput struct { // The Amazon Resource Name (ARN) of the fleet. // // Fleet is a required field Fleet *string `locationName:"fleet" min:"1" type:"string" required:"true"` // The Amazon Resource Name (ARN) of the robot. // // Robot is a required field Robot *string `locationName:"robot" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s DeregisterRobotInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeregisterRobotInput) SetFleet(v string) *DeregisterRobotInput
SetFleet sets the Fleet field's value.
func (s *DeregisterRobotInput) SetRobot(v string) *DeregisterRobotInput
SetRobot sets the Robot field's value.
func (s DeregisterRobotInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeregisterRobotInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeregisterRobotOutput struct { // The Amazon Resource Name (ARN) of the fleet. Fleet *string `locationName:"fleet" min:"1" type:"string"` // The Amazon Resource Name (ARN) of the robot. Robot *string `locationName:"robot" min:"1" type:"string"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s DeregisterRobotOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DeregisterRobotOutput) SetFleet(v string) *DeregisterRobotOutput
SetFleet sets the Fleet field's value.
func (s *DeregisterRobotOutput) SetRobot(v string) *DeregisterRobotOutput
SetRobot sets the Robot field's value.
func (s DeregisterRobotOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DescribeDeploymentJobInput struct { // The Amazon Resource Name (ARN) of the deployment job. // // Job is a required field Job *string `locationName:"job" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s DescribeDeploymentJobInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeDeploymentJobInput) SetJob(v string) *DescribeDeploymentJobInput
SetJob sets the Job field's value.
func (s DescribeDeploymentJobInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeDeploymentJobInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeDeploymentJobOutput struct { // The Amazon Resource Name (ARN) of the deployment job. Arn *string `locationName:"arn" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the deployment job was created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The deployment application configuration. DeploymentApplicationConfigs []*DeploymentApplicationConfig `locationName:"deploymentApplicationConfigs" min:"1" type:"list"` // The deployment configuration. DeploymentConfig *DeploymentConfig `locationName:"deploymentConfig" type:"structure"` // The deployment job failure code. FailureCode *string `locationName:"failureCode" type:"string" enum:"DeploymentJobErrorCode"` // A short description of the reason why the deployment job failed. FailureReason *string `locationName:"failureReason" type:"string"` // The Amazon Resource Name (ARN) of the fleet. Fleet *string `locationName:"fleet" min:"1" type:"string"` // A list of robot deployment summaries. RobotDeploymentSummary []*RobotDeployment `locationName:"robotDeploymentSummary" type:"list"` // The status of the deployment job. Status *string `locationName:"status" type:"string" enum:"DeploymentStatus"` // The list of all tags added to the specified deployment job. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s DescribeDeploymentJobOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeDeploymentJobOutput) SetArn(v string) *DescribeDeploymentJobOutput
SetArn sets the Arn field's value.
func (s *DescribeDeploymentJobOutput) SetCreatedAt(v time.Time) *DescribeDeploymentJobOutput
SetCreatedAt sets the CreatedAt field's value.
func (s *DescribeDeploymentJobOutput) SetDeploymentApplicationConfigs(v []*DeploymentApplicationConfig) *DescribeDeploymentJobOutput
SetDeploymentApplicationConfigs sets the DeploymentApplicationConfigs field's value.
func (s *DescribeDeploymentJobOutput) SetDeploymentConfig(v *DeploymentConfig) *DescribeDeploymentJobOutput
SetDeploymentConfig sets the DeploymentConfig field's value.
func (s *DescribeDeploymentJobOutput) SetFailureCode(v string) *DescribeDeploymentJobOutput
SetFailureCode sets the FailureCode field's value.
func (s *DescribeDeploymentJobOutput) SetFailureReason(v string) *DescribeDeploymentJobOutput
SetFailureReason sets the FailureReason field's value.
func (s *DescribeDeploymentJobOutput) SetFleet(v string) *DescribeDeploymentJobOutput
SetFleet sets the Fleet field's value.
func (s *DescribeDeploymentJobOutput) SetRobotDeploymentSummary(v []*RobotDeployment) *DescribeDeploymentJobOutput
SetRobotDeploymentSummary sets the RobotDeploymentSummary field's value.
func (s *DescribeDeploymentJobOutput) SetStatus(v string) *DescribeDeploymentJobOutput
SetStatus sets the Status field's value.
func (s *DescribeDeploymentJobOutput) SetTags(v map[string]*string) *DescribeDeploymentJobOutput
SetTags sets the Tags field's value.
func (s DescribeDeploymentJobOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DescribeFleetInput struct { // The Amazon Resource Name (ARN) of the fleet. // // Fleet is a required field Fleet *string `locationName:"fleet" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s DescribeFleetInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeFleetInput) SetFleet(v string) *DescribeFleetInput
SetFleet sets the Fleet field's value.
func (s DescribeFleetInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeFleetInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeFleetOutput struct { // The Amazon Resource Name (ARN) of the fleet. Arn *string `locationName:"arn" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the fleet was created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The Amazon Resource Name (ARN) of the last deployment job. LastDeploymentJob *string `locationName:"lastDeploymentJob" min:"1" type:"string"` // The status of the last deployment. LastDeploymentStatus *string `locationName:"lastDeploymentStatus" type:"string" enum:"DeploymentStatus"` // The time of the last deployment. LastDeploymentTime *time.Time `locationName:"lastDeploymentTime" type:"timestamp"` // The name of the fleet. Name *string `locationName:"name" min:"1" type:"string"` // A list of robots. Robots []*Robot `locationName:"robots" type:"list"` // The list of all tags added to the specified fleet. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s DescribeFleetOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeFleetOutput) SetArn(v string) *DescribeFleetOutput
SetArn sets the Arn field's value.
func (s *DescribeFleetOutput) SetCreatedAt(v time.Time) *DescribeFleetOutput
SetCreatedAt sets the CreatedAt field's value.
func (s *DescribeFleetOutput) SetLastDeploymentJob(v string) *DescribeFleetOutput
SetLastDeploymentJob sets the LastDeploymentJob field's value.
func (s *DescribeFleetOutput) SetLastDeploymentStatus(v string) *DescribeFleetOutput
SetLastDeploymentStatus sets the LastDeploymentStatus field's value.
func (s *DescribeFleetOutput) SetLastDeploymentTime(v time.Time) *DescribeFleetOutput
SetLastDeploymentTime sets the LastDeploymentTime field's value.
func (s *DescribeFleetOutput) SetName(v string) *DescribeFleetOutput
SetName sets the Name field's value.
func (s *DescribeFleetOutput) SetRobots(v []*Robot) *DescribeFleetOutput
SetRobots sets the Robots field's value.
func (s *DescribeFleetOutput) SetTags(v map[string]*string) *DescribeFleetOutput
SetTags sets the Tags field's value.
func (s DescribeFleetOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DescribeRobotApplicationInput struct { // The Amazon Resource Name (ARN) of the robot application. // // Application is a required field Application *string `locationName:"application" min:"1" type:"string" required:"true"` // The version of the robot application to describe. ApplicationVersion *string `locationName:"applicationVersion" min:"1" type:"string"` // contains filtered or unexported fields }
func (s DescribeRobotApplicationInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeRobotApplicationInput) SetApplication(v string) *DescribeRobotApplicationInput
SetApplication sets the Application field's value.
func (s *DescribeRobotApplicationInput) SetApplicationVersion(v string) *DescribeRobotApplicationInput
SetApplicationVersion sets the ApplicationVersion field's value.
func (s DescribeRobotApplicationInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeRobotApplicationInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeRobotApplicationOutput struct { // The Amazon Resource Name (ARN) of the robot application. Arn *string `locationName:"arn" min:"1" type:"string"` // The object that contains the Docker image URI used to create the robot application. Environment *Environment `locationName:"environment" type:"structure"` // A SHA256 identifier for the Docker image that you use for your robot application. ImageDigest *string `locationName:"imageDigest" type:"string"` // The time, in milliseconds since the epoch, when the robot application was // last updated. LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"` // The name of the robot application. Name *string `locationName:"name" min:"1" type:"string"` // The revision id of the robot application. RevisionId *string `locationName:"revisionId" min:"1" type:"string"` // The robot software suite (ROS distribution) used by the robot application. RobotSoftwareSuite *RobotSoftwareSuite `locationName:"robotSoftwareSuite" type:"structure"` // The sources of the robot application. Sources []*Source `locationName:"sources" type:"list"` // The list of all tags added to the specified robot application. Tags map[string]*string `locationName:"tags" type:"map"` // The version of the robot application. Version *string `locationName:"version" min:"1" type:"string"` // contains filtered or unexported fields }
func (s DescribeRobotApplicationOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeRobotApplicationOutput) SetArn(v string) *DescribeRobotApplicationOutput
SetArn sets the Arn field's value.
func (s *DescribeRobotApplicationOutput) SetEnvironment(v *Environment) *DescribeRobotApplicationOutput
SetEnvironment sets the Environment field's value.
func (s *DescribeRobotApplicationOutput) SetImageDigest(v string) *DescribeRobotApplicationOutput
SetImageDigest sets the ImageDigest field's value.
func (s *DescribeRobotApplicationOutput) SetLastUpdatedAt(v time.Time) *DescribeRobotApplicationOutput
SetLastUpdatedAt sets the LastUpdatedAt field's value.
func (s *DescribeRobotApplicationOutput) SetName(v string) *DescribeRobotApplicationOutput
SetName sets the Name field's value.
func (s *DescribeRobotApplicationOutput) SetRevisionId(v string) *DescribeRobotApplicationOutput
SetRevisionId sets the RevisionId field's value.
func (s *DescribeRobotApplicationOutput) SetRobotSoftwareSuite(v *RobotSoftwareSuite) *DescribeRobotApplicationOutput
SetRobotSoftwareSuite sets the RobotSoftwareSuite field's value.
func (s *DescribeRobotApplicationOutput) SetSources(v []*Source) *DescribeRobotApplicationOutput
SetSources sets the Sources field's value.
func (s *DescribeRobotApplicationOutput) SetTags(v map[string]*string) *DescribeRobotApplicationOutput
SetTags sets the Tags field's value.
func (s *DescribeRobotApplicationOutput) SetVersion(v string) *DescribeRobotApplicationOutput
SetVersion sets the Version field's value.
func (s DescribeRobotApplicationOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DescribeRobotInput struct { // The Amazon Resource Name (ARN) of the robot to be described. // // Robot is a required field Robot *string `locationName:"robot" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s DescribeRobotInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeRobotInput) SetRobot(v string) *DescribeRobotInput
SetRobot sets the Robot field's value.
func (s DescribeRobotInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeRobotInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeRobotOutput struct { // The target architecture of the robot application. Architecture *string `locationName:"architecture" type:"string" enum:"Architecture"` // The Amazon Resource Name (ARN) of the robot. Arn *string `locationName:"arn" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the robot was created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The Amazon Resource Name (ARN) of the fleet. FleetArn *string `locationName:"fleetArn" min:"1" type:"string"` // The Greengrass group id. GreengrassGroupId *string `locationName:"greengrassGroupId" min:"1" type:"string"` // The Amazon Resource Name (ARN) of the last deployment job. LastDeploymentJob *string `locationName:"lastDeploymentJob" min:"1" type:"string"` // The time of the last deployment job. LastDeploymentTime *time.Time `locationName:"lastDeploymentTime" type:"timestamp"` // The name of the robot. Name *string `locationName:"name" min:"1" type:"string"` // The status of the fleet. Status *string `locationName:"status" type:"string" enum:"RobotStatus"` // The list of all tags added to the specified robot. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s DescribeRobotOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeRobotOutput) SetArchitecture(v string) *DescribeRobotOutput
SetArchitecture sets the Architecture field's value.
func (s *DescribeRobotOutput) SetArn(v string) *DescribeRobotOutput
SetArn sets the Arn field's value.
func (s *DescribeRobotOutput) SetCreatedAt(v time.Time) *DescribeRobotOutput
SetCreatedAt sets the CreatedAt field's value.
func (s *DescribeRobotOutput) SetFleetArn(v string) *DescribeRobotOutput
SetFleetArn sets the FleetArn field's value.
func (s *DescribeRobotOutput) SetGreengrassGroupId(v string) *DescribeRobotOutput
SetGreengrassGroupId sets the GreengrassGroupId field's value.
func (s *DescribeRobotOutput) SetLastDeploymentJob(v string) *DescribeRobotOutput
SetLastDeploymentJob sets the LastDeploymentJob field's value.
func (s *DescribeRobotOutput) SetLastDeploymentTime(v time.Time) *DescribeRobotOutput
SetLastDeploymentTime sets the LastDeploymentTime field's value.
func (s *DescribeRobotOutput) SetName(v string) *DescribeRobotOutput
SetName sets the Name field's value.
func (s *DescribeRobotOutput) SetStatus(v string) *DescribeRobotOutput
SetStatus sets the Status field's value.
func (s *DescribeRobotOutput) SetTags(v map[string]*string) *DescribeRobotOutput
SetTags sets the Tags field's value.
func (s DescribeRobotOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DescribeSimulationApplicationInput struct { // The application information for the simulation application. // // Application is a required field Application *string `locationName:"application" min:"1" type:"string" required:"true"` // The version of the simulation application to describe. ApplicationVersion *string `locationName:"applicationVersion" min:"1" type:"string"` // contains filtered or unexported fields }
func (s DescribeSimulationApplicationInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeSimulationApplicationInput) SetApplication(v string) *DescribeSimulationApplicationInput
SetApplication sets the Application field's value.
func (s *DescribeSimulationApplicationInput) SetApplicationVersion(v string) *DescribeSimulationApplicationInput
SetApplicationVersion sets the ApplicationVersion field's value.
func (s DescribeSimulationApplicationInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeSimulationApplicationInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeSimulationApplicationOutput struct { // The Amazon Resource Name (ARN) of the robot simulation application. Arn *string `locationName:"arn" min:"1" type:"string"` // The object that contains the Docker image URI used to create the simulation // application. Environment *Environment `locationName:"environment" type:"structure"` // A SHA256 identifier for the Docker image that you use for your simulation // application. ImageDigest *string `locationName:"imageDigest" type:"string"` // The time, in milliseconds since the epoch, when the simulation application // was last updated. LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"` // The name of the simulation application. Name *string `locationName:"name" min:"1" type:"string"` // The rendering engine for the simulation application. RenderingEngine *RenderingEngine `locationName:"renderingEngine" type:"structure"` // The revision id of the simulation application. RevisionId *string `locationName:"revisionId" min:"1" type:"string"` // Information about the robot software suite (ROS distribution). RobotSoftwareSuite *RobotSoftwareSuite `locationName:"robotSoftwareSuite" type:"structure"` // The simulation software suite used by the simulation application. SimulationSoftwareSuite *SimulationSoftwareSuite `locationName:"simulationSoftwareSuite" type:"structure"` // The sources of the simulation application. Sources []*Source `locationName:"sources" type:"list"` // The list of all tags added to the specified simulation application. Tags map[string]*string `locationName:"tags" type:"map"` // The version of the simulation application. Version *string `locationName:"version" min:"1" type:"string"` // contains filtered or unexported fields }
func (s DescribeSimulationApplicationOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeSimulationApplicationOutput) SetArn(v string) *DescribeSimulationApplicationOutput
SetArn sets the Arn field's value.
func (s *DescribeSimulationApplicationOutput) SetEnvironment(v *Environment) *DescribeSimulationApplicationOutput
SetEnvironment sets the Environment field's value.
func (s *DescribeSimulationApplicationOutput) SetImageDigest(v string) *DescribeSimulationApplicationOutput
SetImageDigest sets the ImageDigest field's value.
func (s *DescribeSimulationApplicationOutput) SetLastUpdatedAt(v time.Time) *DescribeSimulationApplicationOutput
SetLastUpdatedAt sets the LastUpdatedAt field's value.
func (s *DescribeSimulationApplicationOutput) SetName(v string) *DescribeSimulationApplicationOutput
SetName sets the Name field's value.
func (s *DescribeSimulationApplicationOutput) SetRenderingEngine(v *RenderingEngine) *DescribeSimulationApplicationOutput
SetRenderingEngine sets the RenderingEngine field's value.
func (s *DescribeSimulationApplicationOutput) SetRevisionId(v string) *DescribeSimulationApplicationOutput
SetRevisionId sets the RevisionId field's value.
func (s *DescribeSimulationApplicationOutput) SetRobotSoftwareSuite(v *RobotSoftwareSuite) *DescribeSimulationApplicationOutput
SetRobotSoftwareSuite sets the RobotSoftwareSuite field's value.
func (s *DescribeSimulationApplicationOutput) SetSimulationSoftwareSuite(v *SimulationSoftwareSuite) *DescribeSimulationApplicationOutput
SetSimulationSoftwareSuite sets the SimulationSoftwareSuite field's value.
func (s *DescribeSimulationApplicationOutput) SetSources(v []*Source) *DescribeSimulationApplicationOutput
SetSources sets the Sources field's value.
func (s *DescribeSimulationApplicationOutput) SetTags(v map[string]*string) *DescribeSimulationApplicationOutput
SetTags sets the Tags field's value.
func (s *DescribeSimulationApplicationOutput) SetVersion(v string) *DescribeSimulationApplicationOutput
SetVersion sets the Version field's value.
func (s DescribeSimulationApplicationOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DescribeSimulationJobBatchInput struct { // The id of the batch to describe. // // Batch is a required field Batch *string `locationName:"batch" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
func (s DescribeSimulationJobBatchInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeSimulationJobBatchInput) SetBatch(v string) *DescribeSimulationJobBatchInput
SetBatch sets the Batch field's value.
func (s DescribeSimulationJobBatchInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeSimulationJobBatchInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeSimulationJobBatchOutput struct { // The Amazon Resource Name (ARN) of the batch. Arn *string `locationName:"arn" min:"1" type:"string"` // The batch policy. BatchPolicy *BatchPolicy `locationName:"batchPolicy" type:"structure"` // Unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the simulation job batch // was created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // A list of created simulation job summaries. CreatedRequests []*SimulationJobSummary `locationName:"createdRequests" type:"list"` // A list of failed create simulation job requests. The request failed to be // created into a simulation job. Failed requests do not have a simulation job // ID. FailedRequests []*FailedCreateSimulationJobRequest `locationName:"failedRequests" type:"list"` // The failure code of the simulation job batch. FailureCode *string `locationName:"failureCode" type:"string" enum:"SimulationJobBatchErrorCode"` // The reason the simulation job batch failed. FailureReason *string `locationName:"failureReason" type:"string"` // The time, in milliseconds since the epoch, when the simulation job batch // was last updated. LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"` // A list of pending simulation job requests. These requests have not yet been // created into simulation jobs. PendingRequests []*SimulationJobRequest `locationName:"pendingRequests" min:"1" type:"list"` // The status of the batch. // // Pending // // The simulation job batch request is pending. // // InProgress // // The simulation job batch is in progress. // // Failed // // The simulation job batch failed. One or more simulation job requests could // not be completed due to an internal failure (like InternalServiceError). // See failureCode and failureReason for more information. // // Completed // // The simulation batch job completed. A batch is complete when (1) there are // no pending simulation job requests in the batch and none of the failed simulation // job requests are due to InternalServiceError and (2) when all created simulation // jobs have reached a terminal state (for example, Completed or Failed). // // Canceled // // The simulation batch job was cancelled. // // Canceling // // The simulation batch job is being cancelled. // // Completing // // The simulation batch job is completing. // // TimingOut // // The simulation job batch is timing out. // // If a batch timing out, and there are pending requests that were failing due // to an internal failure (like InternalServiceError), the batch status will // be Failed. If there are no such failing request, the batch status will be // TimedOut. // // TimedOut // // The simulation batch job timed out. Status *string `locationName:"status" type:"string" enum:"SimulationJobBatchStatus"` // A map that contains tag keys and tag values that are attached to the simulation // job batch. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
func (s DescribeSimulationJobBatchOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeSimulationJobBatchOutput) SetArn(v string) *DescribeSimulationJobBatchOutput
SetArn sets the Arn field's value.
func (s *DescribeSimulationJobBatchOutput) SetBatchPolicy(v *BatchPolicy) *DescribeSimulationJobBatchOutput
SetBatchPolicy sets the BatchPolicy field's value.
func (s *DescribeSimulationJobBatchOutput) SetClientRequestToken(v string) *DescribeSimulationJobBatchOutput
SetClientRequestToken sets the ClientRequestToken field's value.
func (s *DescribeSimulationJobBatchOutput) SetCreatedAt(v time.Time) *DescribeSimulationJobBatchOutput
SetCreatedAt sets the CreatedAt field's value.
func (s *DescribeSimulationJobBatchOutput) SetCreatedRequests(v []*SimulationJobSummary) *DescribeSimulationJobBatchOutput
SetCreatedRequests sets the CreatedRequests field's value.
func (s *DescribeSimulationJobBatchOutput) SetFailedRequests(v []*FailedCreateSimulationJobRequest) *DescribeSimulationJobBatchOutput
SetFailedRequests sets the FailedRequests field's value.
func (s *DescribeSimulationJobBatchOutput) SetFailureCode(v string) *DescribeSimulationJobBatchOutput
SetFailureCode sets the FailureCode field's value.
func (s *DescribeSimulationJobBatchOutput) SetFailureReason(v string) *DescribeSimulationJobBatchOutput
SetFailureReason sets the FailureReason field's value.
func (s *DescribeSimulationJobBatchOutput) SetLastUpdatedAt(v time.Time) *DescribeSimulationJobBatchOutput
SetLastUpdatedAt sets the LastUpdatedAt field's value.
func (s *DescribeSimulationJobBatchOutput) SetPendingRequests(v []*SimulationJobRequest) *DescribeSimulationJobBatchOutput
SetPendingRequests sets the PendingRequests field's value.
func (s *DescribeSimulationJobBatchOutput) SetStatus(v string) *DescribeSimulationJobBatchOutput
SetStatus sets the Status field's value.
func (s *DescribeSimulationJobBatchOutput) SetTags(v map[string]*string) *DescribeSimulationJobBatchOutput
SetTags sets the Tags field's value.
func (s DescribeSimulationJobBatchOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DescribeSimulationJobInput struct { // The Amazon Resource Name (ARN) of the simulation job to be described. // // Job is a required field Job *string `locationName:"job" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
func (s DescribeSimulationJobInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeSimulationJobInput) SetJob(v string) *DescribeSimulationJobInput
SetJob sets the Job field's value.
func (s DescribeSimulationJobInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeSimulationJobInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeSimulationJobOutput struct { // The Amazon Resource Name (ARN) of the simulation job. Arn *string `locationName:"arn" min:"1" type:"string"` // Unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string"` // Compute information for the simulation job. Compute *ComputeResponse `locationName:"compute" type:"structure"` // The data sources for the simulation job. DataSources []*DataSource `locationName:"dataSources" type:"list"` // The failure behavior for the simulation job. FailureBehavior *string `locationName:"failureBehavior" type:"string" enum:"FailureBehavior"` // The failure code of the simulation job if it failed: // // InternalServiceError // // Internal service error. // // RobotApplicationCrash // // Robot application exited abnormally. // // SimulationApplicationCrash // // Simulation application exited abnormally. // // BadPermissionsRobotApplication // // Robot application bundle could not be downloaded. // // BadPermissionsSimulationApplication // // Simulation application bundle could not be downloaded. // // BadPermissionsS3Output // // Unable to publish outputs to customer-provided S3 bucket. // // BadPermissionsCloudwatchLogs // // Unable to publish logs to customer-provided CloudWatch Logs resource. // // SubnetIpLimitExceeded // // Subnet IP limit exceeded. // // ENILimitExceeded // // ENI limit exceeded. // // BadPermissionsUserCredentials // // Unable to use the Role provided. // // InvalidBundleRobotApplication // // Robot bundle cannot be extracted (invalid format, bundling error, or other // issue). // // InvalidBundleSimulationApplication // // Simulation bundle cannot be extracted (invalid format, bundling error, or // other issue). // // RobotApplicationVersionMismatchedEtag // // Etag for RobotApplication does not match value during version creation. // // SimulationApplicationVersionMismatchedEtag // // Etag for SimulationApplication does not match value during version creation. FailureCode *string `locationName:"failureCode" type:"string" enum:"SimulationJobErrorCode"` // Details about why the simulation job failed. For more information about troubleshooting, // see Troubleshooting (https://docs.aws.amazon.com/robomaker/latest/dg/troubleshooting.html). FailureReason *string `locationName:"failureReason" type:"string"` // The IAM role that allows the simulation instance to call the AWS APIs that // are specified in its associated policies on your behalf. IamRole *string `locationName:"iamRole" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the simulation job was last // started. LastStartedAt *time.Time `locationName:"lastStartedAt" type:"timestamp"` // The time, in milliseconds since the epoch, when the simulation job was last // updated. LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"` // The logging configuration. LoggingConfig *LoggingConfig `locationName:"loggingConfig" type:"structure"` // The maximum job duration in seconds. The value must be 8 days (691,200 seconds) // or less. MaxJobDurationInSeconds *int64 `locationName:"maxJobDurationInSeconds" type:"long"` // The name of the simulation job. Name *string `locationName:"name" min:"1" type:"string"` // The network interface information for the simulation job. NetworkInterface *NetworkInterface `locationName:"networkInterface" type:"structure"` // Location for output files generated by the simulation job. OutputLocation *OutputLocation `locationName:"outputLocation" type:"structure"` // A list of robot applications. RobotApplications []*RobotApplicationConfig `locationName:"robotApplications" min:"1" type:"list"` // A list of simulation applications. SimulationApplications []*SimulationApplicationConfig `locationName:"simulationApplications" min:"1" type:"list"` // The simulation job execution duration in milliseconds. SimulationTimeMillis *int64 `locationName:"simulationTimeMillis" type:"long"` // The status of the simulation job. Status *string `locationName:"status" type:"string" enum:"SimulationJobStatus"` // The list of all tags added to the specified simulation job. Tags map[string]*string `locationName:"tags" type:"map"` // The VPC configuration. VpcConfig *VPCConfigResponse `locationName:"vpcConfig" type:"structure"` // contains filtered or unexported fields }
func (s DescribeSimulationJobOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeSimulationJobOutput) SetArn(v string) *DescribeSimulationJobOutput
SetArn sets the Arn field's value.
func (s *DescribeSimulationJobOutput) SetClientRequestToken(v string) *DescribeSimulationJobOutput
SetClientRequestToken sets the ClientRequestToken field's value.
func (s *DescribeSimulationJobOutput) SetCompute(v *ComputeResponse) *DescribeSimulationJobOutput
SetCompute sets the Compute field's value.
func (s *DescribeSimulationJobOutput) SetDataSources(v []*DataSource) *DescribeSimulationJobOutput
SetDataSources sets the DataSources field's value.
func (s *DescribeSimulationJobOutput) SetFailureBehavior(v string) *DescribeSimulationJobOutput
SetFailureBehavior sets the FailureBehavior field's value.
func (s *DescribeSimulationJobOutput) SetFailureCode(v string) *DescribeSimulationJobOutput
SetFailureCode sets the FailureCode field's value.
func (s *DescribeSimulationJobOutput) SetFailureReason(v string) *DescribeSimulationJobOutput
SetFailureReason sets the FailureReason field's value.
func (s *DescribeSimulationJobOutput) SetIamRole(v string) *DescribeSimulationJobOutput
SetIamRole sets the IamRole field's value.
func (s *DescribeSimulationJobOutput) SetLastStartedAt(v time.Time) *DescribeSimulationJobOutput
SetLastStartedAt sets the LastStartedAt field's value.
func (s *DescribeSimulationJobOutput) SetLastUpdatedAt(v time.Time) *DescribeSimulationJobOutput
SetLastUpdatedAt sets the LastUpdatedAt field's value.
func (s *DescribeSimulationJobOutput) SetLoggingConfig(v *LoggingConfig) *DescribeSimulationJobOutput
SetLoggingConfig sets the LoggingConfig field's value.
func (s *DescribeSimulationJobOutput) SetMaxJobDurationInSeconds(v int64) *DescribeSimulationJobOutput
SetMaxJobDurationInSeconds sets the MaxJobDurationInSeconds field's value.
func (s *DescribeSimulationJobOutput) SetName(v string) *DescribeSimulationJobOutput
SetName sets the Name field's value.
func (s *DescribeSimulationJobOutput) SetNetworkInterface(v *NetworkInterface) *DescribeSimulationJobOutput
SetNetworkInterface sets the NetworkInterface field's value.
func (s *DescribeSimulationJobOutput) SetOutputLocation(v *OutputLocation) *DescribeSimulationJobOutput
SetOutputLocation sets the OutputLocation field's value.
func (s *DescribeSimulationJobOutput) SetRobotApplications(v []*RobotApplicationConfig) *DescribeSimulationJobOutput
SetRobotApplications sets the RobotApplications field's value.
func (s *DescribeSimulationJobOutput) SetSimulationApplications(v []*SimulationApplicationConfig) *DescribeSimulationJobOutput
SetSimulationApplications sets the SimulationApplications field's value.
func (s *DescribeSimulationJobOutput) SetSimulationTimeMillis(v int64) *DescribeSimulationJobOutput
SetSimulationTimeMillis sets the SimulationTimeMillis field's value.
func (s *DescribeSimulationJobOutput) SetStatus(v string) *DescribeSimulationJobOutput
SetStatus sets the Status field's value.
func (s *DescribeSimulationJobOutput) SetTags(v map[string]*string) *DescribeSimulationJobOutput
SetTags sets the Tags field's value.
func (s *DescribeSimulationJobOutput) SetVpcConfig(v *VPCConfigResponse) *DescribeSimulationJobOutput
SetVpcConfig sets the VpcConfig field's value.
func (s DescribeSimulationJobOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DescribeWorldExportJobInput struct { // The Amazon Resource Name (arn) of the world export job to describe. // // Job is a required field Job *string `locationName:"job" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
func (s DescribeWorldExportJobInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeWorldExportJobInput) SetJob(v string) *DescribeWorldExportJobInput
SetJob sets the Job field's value.
func (s DescribeWorldExportJobInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeWorldExportJobInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeWorldExportJobOutput struct { // The Amazon Resource Name (ARN) of the world export job. Arn *string `locationName:"arn" min:"1" type:"string"` // Unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the world export job was // created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The failure code of the world export job if it failed: // // InternalServiceError // // Internal service error. // // LimitExceeded // // The requested resource exceeds the maximum number allowed, or the number // of concurrent stream requests exceeds the maximum number allowed. // // ResourceNotFound // // The specified resource could not be found. // // RequestThrottled // // The request was throttled. // // InvalidInput // // An input parameter in the request is not valid. FailureCode *string `locationName:"failureCode" type:"string" enum:"WorldExportJobErrorCode"` // The reason why the world export job failed. FailureReason *string `locationName:"failureReason" type:"string"` // The IAM role that the world export process uses to access the Amazon S3 bucket // and put the export. IamRole *string `locationName:"iamRole" min:"1" type:"string"` // The output location. OutputLocation *OutputLocation `locationName:"outputLocation" type:"structure"` // The status of the world export job. // // Pending // // The world export job request is pending. // // Running // // The world export job is running. // // Completed // // The world export job completed. // // Failed // // The world export job failed. See failureCode and failureReason for more information. // // Canceled // // The world export job was cancelled. // // Canceling // // The world export job is being cancelled. Status *string `locationName:"status" type:"string" enum:"WorldExportJobStatus"` // A map that contains tag keys and tag values that are attached to the world // export job. Tags map[string]*string `locationName:"tags" type:"map"` // A list of Amazon Resource Names (arns) that correspond to worlds to be exported. Worlds []*string `locationName:"worlds" min:"1" type:"list"` // contains filtered or unexported fields }
func (s DescribeWorldExportJobOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeWorldExportJobOutput) SetArn(v string) *DescribeWorldExportJobOutput
SetArn sets the Arn field's value.
func (s *DescribeWorldExportJobOutput) SetClientRequestToken(v string) *DescribeWorldExportJobOutput
SetClientRequestToken sets the ClientRequestToken field's value.
func (s *DescribeWorldExportJobOutput) SetCreatedAt(v time.Time) *DescribeWorldExportJobOutput
SetCreatedAt sets the CreatedAt field's value.
func (s *DescribeWorldExportJobOutput) SetFailureCode(v string) *DescribeWorldExportJobOutput
SetFailureCode sets the FailureCode field's value.
func (s *DescribeWorldExportJobOutput) SetFailureReason(v string) *DescribeWorldExportJobOutput
SetFailureReason sets the FailureReason field's value.
func (s *DescribeWorldExportJobOutput) SetIamRole(v string) *DescribeWorldExportJobOutput
SetIamRole sets the IamRole field's value.
func (s *DescribeWorldExportJobOutput) SetOutputLocation(v *OutputLocation) *DescribeWorldExportJobOutput
SetOutputLocation sets the OutputLocation field's value.
func (s *DescribeWorldExportJobOutput) SetStatus(v string) *DescribeWorldExportJobOutput
SetStatus sets the Status field's value.
func (s *DescribeWorldExportJobOutput) SetTags(v map[string]*string) *DescribeWorldExportJobOutput
SetTags sets the Tags field's value.
func (s *DescribeWorldExportJobOutput) SetWorlds(v []*string) *DescribeWorldExportJobOutput
SetWorlds sets the Worlds field's value.
func (s DescribeWorldExportJobOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DescribeWorldGenerationJobInput struct { // The Amazon Resource Name (arn) of the world generation job to describe. // // Job is a required field Job *string `locationName:"job" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
func (s DescribeWorldGenerationJobInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeWorldGenerationJobInput) SetJob(v string) *DescribeWorldGenerationJobInput
SetJob sets the Job field's value.
func (s DescribeWorldGenerationJobInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeWorldGenerationJobInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeWorldGenerationJobOutput struct { // The Amazon Resource Name (ARN) of the world generation job. Arn *string `locationName:"arn" min:"1" type:"string"` // Unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the world generation job // was created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The failure code of the world generation job if it failed: // // InternalServiceError // // Internal service error. // // LimitExceeded // // The requested resource exceeds the maximum number allowed, or the number // of concurrent stream requests exceeds the maximum number allowed. // // ResourceNotFound // // The specified resource could not be found. // // RequestThrottled // // The request was throttled. // // InvalidInput // // An input parameter in the request is not valid. FailureCode *string `locationName:"failureCode" type:"string" enum:"WorldGenerationJobErrorCode"` // The reason why the world generation job failed. FailureReason *string `locationName:"failureReason" type:"string"` // Summary information about finished worlds. FinishedWorldsSummary *FinishedWorldsSummary `locationName:"finishedWorldsSummary" type:"structure"` // The status of the world generation job: // // Pending // // The world generation job request is pending. // // Running // // The world generation job is running. // // Completed // // The world generation job completed. // // Failed // // The world generation job failed. See failureCode for more information. // // PartialFailed // // Some worlds did not generate. // // Canceled // // The world generation job was cancelled. // // Canceling // // The world generation job is being cancelled. Status *string `locationName:"status" type:"string" enum:"WorldGenerationJobStatus"` // A map that contains tag keys and tag values that are attached to the world // generation job. Tags map[string]*string `locationName:"tags" type:"map"` // The Amazon Resource Name (arn) of the world template. Template *string `locationName:"template" min:"1" type:"string"` // Information about the world count. WorldCount *WorldCount `locationName:"worldCount" type:"structure"` // A map that contains tag keys and tag values that are attached to the generated // worlds. WorldTags map[string]*string `locationName:"worldTags" type:"map"` // contains filtered or unexported fields }
func (s DescribeWorldGenerationJobOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeWorldGenerationJobOutput) SetArn(v string) *DescribeWorldGenerationJobOutput
SetArn sets the Arn field's value.
func (s *DescribeWorldGenerationJobOutput) SetClientRequestToken(v string) *DescribeWorldGenerationJobOutput
SetClientRequestToken sets the ClientRequestToken field's value.
func (s *DescribeWorldGenerationJobOutput) SetCreatedAt(v time.Time) *DescribeWorldGenerationJobOutput
SetCreatedAt sets the CreatedAt field's value.
func (s *DescribeWorldGenerationJobOutput) SetFailureCode(v string) *DescribeWorldGenerationJobOutput
SetFailureCode sets the FailureCode field's value.
func (s *DescribeWorldGenerationJobOutput) SetFailureReason(v string) *DescribeWorldGenerationJobOutput
SetFailureReason sets the FailureReason field's value.
func (s *DescribeWorldGenerationJobOutput) SetFinishedWorldsSummary(v *FinishedWorldsSummary) *DescribeWorldGenerationJobOutput
SetFinishedWorldsSummary sets the FinishedWorldsSummary field's value.
func (s *DescribeWorldGenerationJobOutput) SetStatus(v string) *DescribeWorldGenerationJobOutput
SetStatus sets the Status field's value.
func (s *DescribeWorldGenerationJobOutput) SetTags(v map[string]*string) *DescribeWorldGenerationJobOutput
SetTags sets the Tags field's value.
func (s *DescribeWorldGenerationJobOutput) SetTemplate(v string) *DescribeWorldGenerationJobOutput
SetTemplate sets the Template field's value.
func (s *DescribeWorldGenerationJobOutput) SetWorldCount(v *WorldCount) *DescribeWorldGenerationJobOutput
SetWorldCount sets the WorldCount field's value.
func (s *DescribeWorldGenerationJobOutput) SetWorldTags(v map[string]*string) *DescribeWorldGenerationJobOutput
SetWorldTags sets the WorldTags field's value.
func (s DescribeWorldGenerationJobOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DescribeWorldInput struct { // The Amazon Resource Name (arn) of the world you want to describe. // // World is a required field World *string `locationName:"world" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
func (s DescribeWorldInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeWorldInput) SetWorld(v string) *DescribeWorldInput
SetWorld sets the World field's value.
func (s DescribeWorldInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeWorldInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeWorldOutput struct { // The Amazon Resource Name (arn) of the world. Arn *string `locationName:"arn" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the world was created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The Amazon Resource Name (arn) of the world generation job that generated // the world. GenerationJob *string `locationName:"generationJob" min:"1" type:"string"` // A map that contains tag keys and tag values that are attached to the world. Tags map[string]*string `locationName:"tags" type:"map"` // The world template. Template *string `locationName:"template" min:"1" type:"string"` // Returns the JSON formatted string that describes the contents of your world. WorldDescriptionBody *string `locationName:"worldDescriptionBody" min:"1" type:"string"` // contains filtered or unexported fields }
func (s DescribeWorldOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeWorldOutput) SetArn(v string) *DescribeWorldOutput
SetArn sets the Arn field's value.
func (s *DescribeWorldOutput) SetCreatedAt(v time.Time) *DescribeWorldOutput
SetCreatedAt sets the CreatedAt field's value.
func (s *DescribeWorldOutput) SetGenerationJob(v string) *DescribeWorldOutput
SetGenerationJob sets the GenerationJob field's value.
func (s *DescribeWorldOutput) SetTags(v map[string]*string) *DescribeWorldOutput
SetTags sets the Tags field's value.
func (s *DescribeWorldOutput) SetTemplate(v string) *DescribeWorldOutput
SetTemplate sets the Template field's value.
func (s *DescribeWorldOutput) SetWorldDescriptionBody(v string) *DescribeWorldOutput
SetWorldDescriptionBody sets the WorldDescriptionBody field's value.
func (s DescribeWorldOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type DescribeWorldTemplateInput struct { // The Amazon Resource Name (arn) of the world template you want to describe. // // Template is a required field Template *string `locationName:"template" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
func (s DescribeWorldTemplateInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeWorldTemplateInput) SetTemplate(v string) *DescribeWorldTemplateInput
SetTemplate sets the Template field's value.
func (s DescribeWorldTemplateInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeWorldTemplateInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeWorldTemplateOutput struct { // The Amazon Resource Name (ARN) of the world template. Arn *string `locationName:"arn" min:"1" type:"string"` // Unique, case-sensitive identifier that you provide to ensure the idempotency // of the request. ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the world template was created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The time, in milliseconds since the epoch, when the world template was last // updated. LastUpdatedAt *time.Time `locationName:"lastUpdatedAt" type:"timestamp"` // The name of the world template. Name *string `locationName:"name" type:"string"` // A map that contains tag keys and tag values that are attached to the world // template. Tags map[string]*string `locationName:"tags" type:"map"` // The version of the world template that you're using. Version *string `locationName:"version" type:"string"` // contains filtered or unexported fields }
func (s DescribeWorldTemplateOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *DescribeWorldTemplateOutput) SetArn(v string) *DescribeWorldTemplateOutput
SetArn sets the Arn field's value.
func (s *DescribeWorldTemplateOutput) SetClientRequestToken(v string) *DescribeWorldTemplateOutput
SetClientRequestToken sets the ClientRequestToken field's value.
func (s *DescribeWorldTemplateOutput) SetCreatedAt(v time.Time) *DescribeWorldTemplateOutput
SetCreatedAt sets the CreatedAt field's value.
func (s *DescribeWorldTemplateOutput) SetLastUpdatedAt(v time.Time) *DescribeWorldTemplateOutput
SetLastUpdatedAt sets the LastUpdatedAt field's value.
func (s *DescribeWorldTemplateOutput) SetName(v string) *DescribeWorldTemplateOutput
SetName sets the Name field's value.
func (s *DescribeWorldTemplateOutput) SetTags(v map[string]*string) *DescribeWorldTemplateOutput
SetTags sets the Tags field's value.
func (s *DescribeWorldTemplateOutput) SetVersion(v string) *DescribeWorldTemplateOutput
SetVersion sets the Version field's value.
func (s DescribeWorldTemplateOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type Environment struct { // The Docker image URI for either your robot or simulation applications. Uri *string `locationName:"uri" min:"1" type:"string"` // contains filtered or unexported fields }
The object that contains the Docker image URI for either your robot or simulation applications.
func (s Environment) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *Environment) SetUri(v string) *Environment
SetUri sets the Uri field's value.
func (s Environment) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *Environment) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type FailedCreateSimulationJobRequest struct { // The time, in milliseconds since the epoch, when the simulation job batch // failed. FailedAt *time.Time `locationName:"failedAt" type:"timestamp"` // The failure code. FailureCode *string `locationName:"failureCode" type:"string" enum:"SimulationJobErrorCode"` // The failure reason of the simulation job request. FailureReason *string `locationName:"failureReason" type:"string"` // The simulation job request. Request *SimulationJobRequest `locationName:"request" type:"structure"` // contains filtered or unexported fields }
Information about a failed create simulation job request.
func (s FailedCreateSimulationJobRequest) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *FailedCreateSimulationJobRequest) SetFailedAt(v time.Time) *FailedCreateSimulationJobRequest
SetFailedAt sets the FailedAt field's value.
func (s *FailedCreateSimulationJobRequest) SetFailureCode(v string) *FailedCreateSimulationJobRequest
SetFailureCode sets the FailureCode field's value.
func (s *FailedCreateSimulationJobRequest) SetFailureReason(v string) *FailedCreateSimulationJobRequest
SetFailureReason sets the FailureReason field's value.
func (s *FailedCreateSimulationJobRequest) SetRequest(v *SimulationJobRequest) *FailedCreateSimulationJobRequest
SetRequest sets the Request field's value.
func (s FailedCreateSimulationJobRequest) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type FailureSummary struct { // The worlds that failed. Failures []*WorldFailure `locationName:"failures" type:"list"` // The total number of failures. TotalFailureCount *int64 `locationName:"totalFailureCount" type:"integer"` // contains filtered or unexported fields }
Information about worlds that failed.
func (s FailureSummary) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *FailureSummary) SetFailures(v []*WorldFailure) *FailureSummary
SetFailures sets the Failures field's value.
func (s *FailureSummary) SetTotalFailureCount(v int64) *FailureSummary
SetTotalFailureCount sets the TotalFailureCount field's value.
func (s FailureSummary) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type Filter struct { // The name of the filter. Name *string `locationName:"name" min:"1" type:"string"` // A list of values. Values []*string `locationName:"values" min:"1" type:"list"` // contains filtered or unexported fields }
Information about a filter.
func (s Filter) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *Filter) SetName(v string) *Filter
SetName sets the Name field's value.
func (s *Filter) SetValues(v []*string) *Filter
SetValues sets the Values field's value.
func (s Filter) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *Filter) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type FinishedWorldsSummary struct { // Information about worlds that failed. FailureSummary *FailureSummary `locationName:"failureSummary" type:"structure"` // The total number of finished worlds. FinishedCount *int64 `locationName:"finishedCount" type:"integer"` // A list of worlds that succeeded. SucceededWorlds []*string `locationName:"succeededWorlds" min:"1" type:"list"` // contains filtered or unexported fields }
Information about worlds that finished.
func (s FinishedWorldsSummary) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *FinishedWorldsSummary) SetFailureSummary(v *FailureSummary) *FinishedWorldsSummary
SetFailureSummary sets the FailureSummary field's value.
func (s *FinishedWorldsSummary) SetFinishedCount(v int64) *FinishedWorldsSummary
SetFinishedCount sets the FinishedCount field's value.
func (s *FinishedWorldsSummary) SetSucceededWorlds(v []*string) *FinishedWorldsSummary
SetSucceededWorlds sets the SucceededWorlds field's value.
func (s FinishedWorldsSummary) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type Fleet struct { // The Amazon Resource Name (ARN) of the fleet. Arn *string `locationName:"arn" min:"1" type:"string"` // The time, in milliseconds since the epoch, when the fleet was created. CreatedAt *time.Time `locationName:"createdAt" type:"timestamp"` // The Amazon Resource Name (ARN) of the last deployment job. LastDeploymentJob *string `locationName:"lastDeploymentJob" min:"1" type:"string"` // The status of the last fleet deployment. LastDeploymentStatus *string `locationName:"lastDeploymentStatus" type:"string" enum:"DeploymentStatus"` // The time of the last deployment. LastDeploymentTime *time.Time `locationName:"lastDeploymentTime" type:"timestamp"` // The name of the fleet. Name *string `locationName:"name" min:"1" type:"string"` // contains filtered or unexported fields }
Information about a fleet.
func (s Fleet) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *Fleet) SetArn(v string) *Fleet
SetArn sets the Arn field's value.
func (s *Fleet) SetCreatedAt(v time.Time) *Fleet
SetCreatedAt sets the CreatedAt field's value.
func (s *Fleet) SetLastDeploymentJob(v string) *Fleet
SetLastDeploymentJob sets the LastDeploymentJob field's value.
func (s *Fleet) SetLastDeploymentStatus(v string) *Fleet
SetLastDeploymentStatus sets the LastDeploymentStatus field's value.
func (s *Fleet) SetLastDeploymentTime(v time.Time) *Fleet
SetLastDeploymentTime sets the LastDeploymentTime field's value.
func (s *Fleet) SetName(v string) *Fleet
SetName sets the Name field's value.
func (s Fleet) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type GetWorldTemplateBodyInput struct { // The Amazon Resource Name (arn) of the world generator job. GenerationJob *string `locationName:"generationJob" min:"1" type:"string"` // The Amazon Resource Name (arn) of the world template. Template *string `locationName:"template" min:"1" type:"string"` // contains filtered or unexported fields }
func (s GetWorldTemplateBodyInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *GetWorldTemplateBodyInput) SetGenerationJob(v string) *GetWorldTemplateBodyInput
SetGenerationJob sets the GenerationJob field's value.
func (s *GetWorldTemplateBodyInput) SetTemplate(v string) *GetWorldTemplateBodyInput
SetTemplate sets the Template field's value.
func (s GetWorldTemplateBodyInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *GetWorldTemplateBodyInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type GetWorldTemplateBodyOutput struct { // The world template body. TemplateBody *string `locationName:"templateBody" min:"1" type:"string"` // contains filtered or unexported fields }
func (s GetWorldTemplateBodyOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *GetWorldTemplateBodyOutput) SetTemplateBody(v string) *GetWorldTemplateBodyOutput
SetTemplateBody sets the TemplateBody field's value.
func (s GetWorldTemplateBodyOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type IdempotentParameterMismatchException struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The request uses the same client token as a previous, but non-identical request. Do not reuse a client token with different requests, unless the requests are identical.
func (s *IdempotentParameterMismatchException) Code() string
Code returns the exception type name.
func (s *IdempotentParameterMismatchException) Error() string
func (s IdempotentParameterMismatchException) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *IdempotentParameterMismatchException) Message() string
Message returns the exception's message.
func (s *IdempotentParameterMismatchException) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *IdempotentParameterMismatchException) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *IdempotentParameterMismatchException) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s IdempotentParameterMismatchException) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type InternalServerException struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
AWS RoboMaker experienced a service issue. Try your call again.
func (s *InternalServerException) Code() string
Code returns the exception type name.
func (s *InternalServerException) Error() string
func (s InternalServerException) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *InternalServerException) Message() string
Message returns the exception's message.
func (s *InternalServerException) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *InternalServerException) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *InternalServerException) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s InternalServerException) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type InvalidParameterException struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
func (s *InvalidParameterException) Code() string
Code returns the exception type name.
func (s *InvalidParameterException) Error() string
func (s InvalidParameterException) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *InvalidParameterException) Message() string
Message returns the exception's message.
func (s *InvalidParameterException) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *InvalidParameterException) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *InvalidParameterException) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s InvalidParameterException) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type LaunchConfig struct { // If you've specified General as the value for your RobotSoftwareSuite, you // can use this field to specify a list of commands for your container image. // // If you've specified SimulationRuntime as the value for your SimulationSoftwareSuite, // you can use this field to specify a list of commands for your container image. Command []*string `locationName:"command" type:"list"` // The environment variables for the application launch. EnvironmentVariables map[string]*string `locationName:"environmentVariables" type:"map"` // The launch file name. LaunchFile *string `locationName:"launchFile" min:"1" type:"string"` // The package name. PackageName *string `locationName:"packageName" min:"1" type:"string"` // The port forwarding configuration. PortForwardingConfig *PortForwardingConfig `locationName:"portForwardingConfig" type:"structure"` // Boolean indicating whether a streaming session will be configured for the // application. If True, AWS RoboMaker will configure a connection so you can // interact with your application as it is running in the simulation. You must // configure and launch the component. It must have a graphical user interface. StreamUI *bool `locationName:"streamUI" type:"boolean"` // contains filtered or unexported fields }
Information about a launch configuration.
func (s LaunchConfig) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *LaunchConfig) SetCommand(v []*string) *LaunchConfig
SetCommand sets the Command field's value.
func (s *LaunchConfig) SetEnvironmentVariables(v map[string]*string) *LaunchConfig
SetEnvironmentVariables sets the EnvironmentVariables field's value.
func (s *LaunchConfig) SetLaunchFile(v string) *LaunchConfig
SetLaunchFile sets the LaunchFile field's value.
func (s *LaunchConfig) SetPackageName(v string) *LaunchConfig
SetPackageName sets the PackageName field's value.
func (s *LaunchConfig) SetPortForwardingConfig(v *PortForwardingConfig) *LaunchConfig
SetPortForwardingConfig sets the PortForwardingConfig field's value.
func (s *LaunchConfig) SetStreamUI(v bool) *LaunchConfig
SetStreamUI sets the StreamUI field's value.
func (s LaunchConfig) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *LaunchConfig) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type LimitExceededException struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.
func (s *LimitExceededException) Code() string
Code returns the exception type name.
func (s *LimitExceededException) Error() string
func (s LimitExceededException) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *LimitExceededException) Message() string
Message returns the exception's message.
func (s *LimitExceededException) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *LimitExceededException) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *LimitExceededException) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s LimitExceededException) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type ListDeploymentJobsInput struct { // Optional filters to limit results. // // The filter names status and fleetName are supported. When filtering, you // must use the complete value of the filtered item. You can use up to three // filters, but they must be for the same named item. For example, if you are // looking for items with the status InProgress or the status Pending. Filters []*Filter `locationName:"filters" min:"1" type:"list"` // When this parameter is used, ListDeploymentJobs only returns maxResults results // in a single page along with a nextToken response element. The remaining results // of the initial request can be seen by sending another ListDeploymentJobs // request with the returned nextToken value. This value can be between 1 and // 200. If this parameter is not used, then ListDeploymentJobs returns up to // 200 results and a nextToken value if applicable. MaxResults *int64 `locationName:"maxResults" type:"integer"` // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListDeploymentJobs again and assign that token // to the request object's nextToken parameter. If there are no remaining results, // the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s ListDeploymentJobsInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListDeploymentJobsInput) SetFilters(v []*Filter) *ListDeploymentJobsInput
SetFilters sets the Filters field's value.
func (s *ListDeploymentJobsInput) SetMaxResults(v int64) *ListDeploymentJobsInput
SetMaxResults sets the MaxResults field's value.
func (s *ListDeploymentJobsInput) SetNextToken(v string) *ListDeploymentJobsInput
SetNextToken sets the NextToken field's value.
func (s ListDeploymentJobsInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListDeploymentJobsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListDeploymentJobsOutput struct { // A list of deployment jobs that meet the criteria of the request. DeploymentJobs []*DeploymentJob `locationName:"deploymentJobs" type:"list"` // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListDeploymentJobs again and assign that token // to the request object's nextToken parameter. If there are no remaining results, // the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s ListDeploymentJobsOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListDeploymentJobsOutput) SetDeploymentJobs(v []*DeploymentJob) *ListDeploymentJobsOutput
SetDeploymentJobs sets the DeploymentJobs field's value.
func (s *ListDeploymentJobsOutput) SetNextToken(v string) *ListDeploymentJobsOutput
SetNextToken sets the NextToken field's value.
func (s ListDeploymentJobsOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type ListFleetsInput struct { // Optional filters to limit results. // // The filter name name is supported. When filtering, you must use the complete // value of the filtered item. You can use up to three filters. Filters []*Filter `locationName:"filters" min:"1" type:"list"` // When this parameter is used, ListFleets only returns maxResults results in // a single page along with a nextToken response element. The remaining results // of the initial request can be seen by sending another ListFleets request // with the returned nextToken value. This value can be between 1 and 200. If // this parameter is not used, then ListFleets returns up to 200 results and // a nextToken value if applicable. MaxResults *int64 `locationName:"maxResults" type:"integer"` // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListFleets again and assign that token to the // request object's nextToken parameter. If there are no remaining results, // the previous response object's NextToken parameter is set to null. // // This token should be treated as an opaque identifier that is only used to // retrieve the next items in a list and not for other programmatic purposes. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s ListFleetsInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListFleetsInput) SetFilters(v []*Filter) *ListFleetsInput
SetFilters sets the Filters field's value.
func (s *ListFleetsInput) SetMaxResults(v int64) *ListFleetsInput
SetMaxResults sets the MaxResults field's value.
func (s *ListFleetsInput) SetNextToken(v string) *ListFleetsInput
SetNextToken sets the NextToken field's value.
func (s ListFleetsInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListFleetsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListFleetsOutput struct { // A list of fleet details meeting the request criteria. FleetDetails []*Fleet `locationName:"fleetDetails" type:"list"` // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListFleets again and assign that token to the // request object's nextToken parameter. If there are no remaining results, // the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s ListFleetsOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListFleetsOutput) SetFleetDetails(v []*Fleet) *ListFleetsOutput
SetFleetDetails sets the FleetDetails field's value.
func (s *ListFleetsOutput) SetNextToken(v string) *ListFleetsOutput
SetNextToken sets the NextToken field's value.
func (s ListFleetsOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type ListRobotApplicationsInput struct { // Optional filters to limit results. // // The filter name name is supported. When filtering, you must use the complete // value of the filtered item. You can use up to three filters. Filters []*Filter `locationName:"filters" min:"1" type:"list"` // When this parameter is used, ListRobotApplications only returns maxResults // results in a single page along with a nextToken response element. The remaining // results of the initial request can be seen by sending another ListRobotApplications // request with the returned nextToken value. This value can be between 1 and // 100. If this parameter is not used, then ListRobotApplications returns up // to 100 results and a nextToken value if applicable. MaxResults *int64 `locationName:"maxResults" type:"integer"` // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListRobotApplications again and assign that // token to the request object's nextToken parameter. If there are no remaining // results, the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // The version qualifier of the robot application. VersionQualifier *string `locationName:"versionQualifier" min:"1" type:"string"` // contains filtered or unexported fields }
func (s ListRobotApplicationsInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListRobotApplicationsInput) SetFilters(v []*Filter) *ListRobotApplicationsInput
SetFilters sets the Filters field's value.
func (s *ListRobotApplicationsInput) SetMaxResults(v int64) *ListRobotApplicationsInput
SetMaxResults sets the MaxResults field's value.
func (s *ListRobotApplicationsInput) SetNextToken(v string) *ListRobotApplicationsInput
SetNextToken sets the NextToken field's value.
func (s *ListRobotApplicationsInput) SetVersionQualifier(v string) *ListRobotApplicationsInput
SetVersionQualifier sets the VersionQualifier field's value.
func (s ListRobotApplicationsInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListRobotApplicationsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListRobotApplicationsOutput struct { // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListRobotApplications again and assign that // token to the request object's nextToken parameter. If there are no remaining // results, the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // A list of robot application summaries that meet the criteria of the request. RobotApplicationSummaries []*RobotApplicationSummary `locationName:"robotApplicationSummaries" type:"list"` // contains filtered or unexported fields }
func (s ListRobotApplicationsOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListRobotApplicationsOutput) SetNextToken(v string) *ListRobotApplicationsOutput
SetNextToken sets the NextToken field's value.
func (s *ListRobotApplicationsOutput) SetRobotApplicationSummaries(v []*RobotApplicationSummary) *ListRobotApplicationsOutput
SetRobotApplicationSummaries sets the RobotApplicationSummaries field's value.
func (s ListRobotApplicationsOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type ListRobotsInput struct { // Optional filters to limit results. // // The filter names status and fleetName are supported. When filtering, you // must use the complete value of the filtered item. You can use up to three // filters, but they must be for the same named item. For example, if you are // looking for items with the status Registered or the status Available. Filters []*Filter `locationName:"filters" min:"1" type:"list"` // When this parameter is used, ListRobots only returns maxResults results in // a single page along with a nextToken response element. The remaining results // of the initial request can be seen by sending another ListRobots request // with the returned nextToken value. This value can be between 1 and 200. If // this parameter is not used, then ListRobots returns up to 200 results and // a nextToken value if applicable. MaxResults *int64 `locationName:"maxResults" type:"integer"` // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListRobots again and assign that token to the // request object's nextToken parameter. If there are no remaining results, // the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s ListRobotsInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListRobotsInput) SetFilters(v []*Filter) *ListRobotsInput
SetFilters sets the Filters field's value.
func (s *ListRobotsInput) SetMaxResults(v int64) *ListRobotsInput
SetMaxResults sets the MaxResults field's value.
func (s *ListRobotsInput) SetNextToken(v string) *ListRobotsInput
SetNextToken sets the NextToken field's value.
func (s ListRobotsInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListRobotsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListRobotsOutput struct { // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListRobots again and assign that token to the // request object's nextToken parameter. If there are no remaining results, // the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // A list of robots that meet the criteria of the request. Robots []*Robot `locationName:"robots" type:"list"` // contains filtered or unexported fields }
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s ListRobotsOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListRobotsOutput) SetNextToken(v string) *ListRobotsOutput
SetNextToken sets the NextToken field's value.
func (s *ListRobotsOutput) SetRobots(v []*Robot) *ListRobotsOutput
SetRobots sets the Robots field's value.
func (s ListRobotsOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type ListSimulationApplicationsInput struct { // Optional list of filters to limit results. // // The filter name name is supported. When filtering, you must use the complete // value of the filtered item. You can use up to three filters. Filters []*Filter `locationName:"filters" min:"1" type:"list"` // When this parameter is used, ListSimulationApplications only returns maxResults // results in a single page along with a nextToken response element. The remaining // results of the initial request can be seen by sending another ListSimulationApplications // request with the returned nextToken value. This value can be between 1 and // 100. If this parameter is not used, then ListSimulationApplications returns // up to 100 results and a nextToken value if applicable. MaxResults *int64 `locationName:"maxResults" type:"integer"` // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListSimulationApplications again and assign // that token to the request object's nextToken parameter. If there are no remaining // results, the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // The version qualifier of the simulation application. VersionQualifier *string `locationName:"versionQualifier" min:"1" type:"string"` // contains filtered or unexported fields }
func (s ListSimulationApplicationsInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListSimulationApplicationsInput) SetFilters(v []*Filter) *ListSimulationApplicationsInput
SetFilters sets the Filters field's value.
func (s *ListSimulationApplicationsInput) SetMaxResults(v int64) *ListSimulationApplicationsInput
SetMaxResults sets the MaxResults field's value.
func (s *ListSimulationApplicationsInput) SetNextToken(v string) *ListSimulationApplicationsInput
SetNextToken sets the NextToken field's value.
func (s *ListSimulationApplicationsInput) SetVersionQualifier(v string) *ListSimulationApplicationsInput
SetVersionQualifier sets the VersionQualifier field's value.
func (s ListSimulationApplicationsInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListSimulationApplicationsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListSimulationApplicationsOutput struct { // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListSimulationApplications again and assign // that token to the request object's nextToken parameter. If there are no remaining // results, the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // A list of simulation application summaries that meet the criteria of the // request. SimulationApplicationSummaries []*SimulationApplicationSummary `locationName:"simulationApplicationSummaries" type:"list"` // contains filtered or unexported fields }
func (s ListSimulationApplicationsOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListSimulationApplicationsOutput) SetNextToken(v string) *ListSimulationApplicationsOutput
SetNextToken sets the NextToken field's value.
func (s *ListSimulationApplicationsOutput) SetSimulationApplicationSummaries(v []*SimulationApplicationSummary) *ListSimulationApplicationsOutput
SetSimulationApplicationSummaries sets the SimulationApplicationSummaries field's value.
func (s ListSimulationApplicationsOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type ListSimulationJobBatchesInput struct { // Optional filters to limit results. Filters []*Filter `locationName:"filters" min:"1" type:"list"` // When this parameter is used, ListSimulationJobBatches only returns maxResults // results in a single page along with a nextToken response element. The remaining // results of the initial request can be seen by sending another ListSimulationJobBatches // request with the returned nextToken value. MaxResults *int64 `locationName:"maxResults" type:"integer"` // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListSimulationJobBatches again and assign that // token to the request object's nextToken parameter. If there are no remaining // results, the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // contains filtered or unexported fields }
func (s ListSimulationJobBatchesInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListSimulationJobBatchesInput) SetFilters(v []*Filter) *ListSimulationJobBatchesInput
SetFilters sets the Filters field's value.
func (s *ListSimulationJobBatchesInput) SetMaxResults(v int64) *ListSimulationJobBatchesInput
SetMaxResults sets the MaxResults field's value.
func (s *ListSimulationJobBatchesInput) SetNextToken(v string) *ListSimulationJobBatchesInput
SetNextToken sets the NextToken field's value.
func (s ListSimulationJobBatchesInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListSimulationJobBatchesInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListSimulationJobBatchesOutput struct { // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListSimulationJobBatches again and assign that // token to the request object's nextToken parameter. If there are no remaining // results, the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // A list of simulation job batch summaries. SimulationJobBatchSummaries []*SimulationJobBatchSummary `locationName:"simulationJobBatchSummaries" type:"list"` // contains filtered or unexported fields }
func (s ListSimulationJobBatchesOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListSimulationJobBatchesOutput) SetNextToken(v string) *ListSimulationJobBatchesOutput
SetNextToken sets the NextToken field's value.
func (s *ListSimulationJobBatchesOutput) SetSimulationJobBatchSummaries(v []*SimulationJobBatchSummary) *ListSimulationJobBatchesOutput
SetSimulationJobBatchSummaries sets the SimulationJobBatchSummaries field's value.
func (s ListSimulationJobBatchesOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type ListSimulationJobsInput struct { // Optional filters to limit results. // // The filter names status and simulationApplicationName and robotApplicationName // are supported. When filtering, you must use the complete value of the filtered // item. You can use up to three filters, but they must be for the same named // item. For example, if you are looking for items with the status Preparing // or the status Running. Filters []*Filter `locationName:"filters" min:"1" type:"list"` // When this parameter is used, ListSimulationJobs only returns maxResults results // in a single page along with a nextToken response element. The remaining results // of the initial request can be seen by sending another ListSimulationJobs // request with the returned nextToken value. This value can be between 1 and // 1000. If this parameter is not used, then ListSimulationJobs returns up to // 1000 results and a nextToken value if applicable. MaxResults *int64 `locationName:"maxResults" type:"integer"` // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListSimulationJobs again and assign that token // to the request object's nextToken parameter. If there are no remaining results, // the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // contains filtered or unexported fields }
func (s ListSimulationJobsInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListSimulationJobsInput) SetFilters(v []*Filter) *ListSimulationJobsInput
SetFilters sets the Filters field's value.
func (s *ListSimulationJobsInput) SetMaxResults(v int64) *ListSimulationJobsInput
SetMaxResults sets the MaxResults field's value.
func (s *ListSimulationJobsInput) SetNextToken(v string) *ListSimulationJobsInput
SetNextToken sets the NextToken field's value.
func (s ListSimulationJobsInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListSimulationJobsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListSimulationJobsOutput struct { // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListSimulationJobs again and assign that token // to the request object's nextToken parameter. If there are no remaining results, // the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // A list of simulation job summaries that meet the criteria of the request. // // SimulationJobSummaries is a required field SimulationJobSummaries []*SimulationJobSummary `locationName:"simulationJobSummaries" type:"list" required:"true"` // contains filtered or unexported fields }
func (s ListSimulationJobsOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListSimulationJobsOutput) SetNextToken(v string) *ListSimulationJobsOutput
SetNextToken sets the NextToken field's value.
func (s *ListSimulationJobsOutput) SetSimulationJobSummaries(v []*SimulationJobSummary) *ListSimulationJobsOutput
SetSimulationJobSummaries sets the SimulationJobSummaries field's value.
func (s ListSimulationJobsOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type ListTagsForResourceInput struct { // The AWS RoboMaker Amazon Resource Name (ARN) with tags to be listed. // // ResourceArn is a required field ResourceArn *string `location:"uri" locationName:"resourceArn" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
func (s ListTagsForResourceInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListTagsForResourceInput) SetResourceArn(v string) *ListTagsForResourceInput
SetResourceArn sets the ResourceArn field's value.
func (s ListTagsForResourceInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListTagsForResourceInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListTagsForResourceOutput struct { // The list of all tags added to the specified resource. Tags map[string]*string `locationName:"tags" type:"map"` // contains filtered or unexported fields }
func (s ListTagsForResourceOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListTagsForResourceOutput) SetTags(v map[string]*string) *ListTagsForResourceOutput
SetTags sets the Tags field's value.
func (s ListTagsForResourceOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type ListWorldExportJobsInput struct { // Optional filters to limit results. You can use generationJobId and templateId. Filters []*Filter `locationName:"filters" min:"1" type:"list"` // When this parameter is used, ListWorldExportJobs only returns maxResults // results in a single page along with a nextToken response element. The remaining // results of the initial request can be seen by sending another ListWorldExportJobs // request with the returned nextToken value. This value can be between 1 and // 100. If this parameter is not used, then ListWorldExportJobs returns up to // 100 results and a nextToken value if applicable. MaxResults *int64 `locationName:"maxResults" type:"integer"` // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListWorldExportJobs again and assign that token // to the request object's nextToken parameter. If there are no remaining results, // the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // contains filtered or unexported fields }
func (s ListWorldExportJobsInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListWorldExportJobsInput) SetFilters(v []*Filter) *ListWorldExportJobsInput
SetFilters sets the Filters field's value.
func (s *ListWorldExportJobsInput) SetMaxResults(v int64) *ListWorldExportJobsInput
SetMaxResults sets the MaxResults field's value.
func (s *ListWorldExportJobsInput) SetNextToken(v string) *ListWorldExportJobsInput
SetNextToken sets the NextToken field's value.
func (s ListWorldExportJobsInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListWorldExportJobsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListWorldExportJobsOutput struct { // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListWorldExportJobsRequest again and assign // that token to the request object's nextToken parameter. If there are no remaining // results, the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // Summary information for world export jobs. // // WorldExportJobSummaries is a required field WorldExportJobSummaries []*WorldExportJobSummary `locationName:"worldExportJobSummaries" type:"list" required:"true"` // contains filtered or unexported fields }
func (s ListWorldExportJobsOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListWorldExportJobsOutput) SetNextToken(v string) *ListWorldExportJobsOutput
SetNextToken sets the NextToken field's value.
func (s *ListWorldExportJobsOutput) SetWorldExportJobSummaries(v []*WorldExportJobSummary) *ListWorldExportJobsOutput
SetWorldExportJobSummaries sets the WorldExportJobSummaries field's value.
func (s ListWorldExportJobsOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type ListWorldGenerationJobsInput struct { // Optional filters to limit results. You can use status and templateId. Filters []*Filter `locationName:"filters" min:"1" type:"list"` // When this parameter is used, ListWorldGeneratorJobs only returns maxResults // results in a single page along with a nextToken response element. The remaining // results of the initial request can be seen by sending another ListWorldGeneratorJobs // request with the returned nextToken value. This value can be between 1 and // 100. If this parameter is not used, then ListWorldGeneratorJobs returns up // to 100 results and a nextToken value if applicable. MaxResults *int64 `locationName:"maxResults" type:"integer"` // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListWorldGenerationJobsRequest again and assign // that token to the request object's nextToken parameter. If there are no remaining // results, the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // contains filtered or unexported fields }
func (s ListWorldGenerationJobsInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListWorldGenerationJobsInput) SetFilters(v []*Filter) *ListWorldGenerationJobsInput
SetFilters sets the Filters field's value.
func (s *ListWorldGenerationJobsInput) SetMaxResults(v int64) *ListWorldGenerationJobsInput
SetMaxResults sets the MaxResults field's value.
func (s *ListWorldGenerationJobsInput) SetNextToken(v string) *ListWorldGenerationJobsInput
SetNextToken sets the NextToken field's value.
func (s ListWorldGenerationJobsInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListWorldGenerationJobsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListWorldGenerationJobsOutput struct { // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListWorldGeneratorJobsRequest again and assign // that token to the request object's nextToken parameter. If there are no remaining // results, the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // Summary information for world generator jobs. // // WorldGenerationJobSummaries is a required field WorldGenerationJobSummaries []*WorldGenerationJobSummary `locationName:"worldGenerationJobSummaries" type:"list" required:"true"` // contains filtered or unexported fields }
func (s ListWorldGenerationJobsOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListWorldGenerationJobsOutput) SetNextToken(v string) *ListWorldGenerationJobsOutput
SetNextToken sets the NextToken field's value.
func (s *ListWorldGenerationJobsOutput) SetWorldGenerationJobSummaries(v []*WorldGenerationJobSummary) *ListWorldGenerationJobsOutput
SetWorldGenerationJobSummaries sets the WorldGenerationJobSummaries field's value.
func (s ListWorldGenerationJobsOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type ListWorldTemplatesInput struct { // When this parameter is used, ListWorldTemplates only returns maxResults results // in a single page along with a nextToken response element. The remaining results // of the initial request can be seen by sending another ListWorldTemplates // request with the returned nextToken value. This value can be between 1 and // 100. If this parameter is not used, then ListWorldTemplates returns up to // 100 results and a nextToken value if applicable. MaxResults *int64 `locationName:"maxResults" type:"integer"` // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListWorldTemplates again and assign that token // to the request object's nextToken parameter. If there are no remaining results, // the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // contains filtered or unexported fields }
func (s ListWorldTemplatesInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListWorldTemplatesInput) SetMaxResults(v int64) *ListWorldTemplatesInput
SetMaxResults sets the MaxResults field's value.
func (s *ListWorldTemplatesInput) SetNextToken(v string) *ListWorldTemplatesInput
SetNextToken sets the NextToken field's value.
func (s ListWorldTemplatesInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListWorldTemplatesInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListWorldTemplatesOutput struct { // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListWorldTemplates again and assign that token // to the request object's nextToken parameter. If there are no remaining results, // the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // Summary information for templates. TemplateSummaries []*TemplateSummary `locationName:"templateSummaries" type:"list"` // contains filtered or unexported fields }
func (s ListWorldTemplatesOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListWorldTemplatesOutput) SetNextToken(v string) *ListWorldTemplatesOutput
SetNextToken sets the NextToken field's value.
func (s *ListWorldTemplatesOutput) SetTemplateSummaries(v []*TemplateSummary) *ListWorldTemplatesOutput
SetTemplateSummaries sets the TemplateSummaries field's value.
func (s ListWorldTemplatesOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type ListWorldsInput struct { // Optional filters to limit results. You can use status. Filters []*Filter `locationName:"filters" min:"1" type:"list"` // When this parameter is used, ListWorlds only returns maxResults results in // a single page along with a nextToken response element. The remaining results // of the initial request can be seen by sending another ListWorlds request // with the returned nextToken value. This value can be between 1 and 100. If // this parameter is not used, then ListWorlds returns up to 100 results and // a nextToken value if applicable. MaxResults *int64 `locationName:"maxResults" type:"integer"` // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListWorlds again and assign that token to the // request object's nextToken parameter. If there are no remaining results, // the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // contains filtered or unexported fields }
func (s ListWorldsInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListWorldsInput) SetFilters(v []*Filter) *ListWorldsInput
SetFilters sets the Filters field's value.
func (s *ListWorldsInput) SetMaxResults(v int64) *ListWorldsInput
SetMaxResults sets the MaxResults field's value.
func (s *ListWorldsInput) SetNextToken(v string) *ListWorldsInput
SetNextToken sets the NextToken field's value.
func (s ListWorldsInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListWorldsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListWorldsOutput struct { // If the previous paginated request did not return all of the remaining results, // the response object's nextToken parameter value is set to a token. To retrieve // the next set of results, call ListWorlds again and assign that token to the // request object's nextToken parameter. If there are no remaining results, // the previous response object's NextToken parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` // Summary information for worlds. WorldSummaries []*WorldSummary `locationName:"worldSummaries" type:"list"` // contains filtered or unexported fields }
func (s ListWorldsOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ListWorldsOutput) SetNextToken(v string) *ListWorldsOutput
SetNextToken sets the NextToken field's value.
func (s *ListWorldsOutput) SetWorldSummaries(v []*WorldSummary) *ListWorldsOutput
SetWorldSummaries sets the WorldSummaries field's value.
func (s ListWorldsOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type LoggingConfig struct { // A boolean indicating whether to record all ROS topics. // // This API is no longer supported and will throw an error if used. // // Deprecated: AWS RoboMaker is ending support for ROS software suite. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/software-support-policy.html. RecordAllRosTopics *bool `locationName:"recordAllRosTopics" deprecated:"true" type:"boolean"` // contains filtered or unexported fields }
The logging configuration.
func (s LoggingConfig) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *LoggingConfig) SetRecordAllRosTopics(v bool) *LoggingConfig
SetRecordAllRosTopics sets the RecordAllRosTopics field's value.
func (s LoggingConfig) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type NetworkInterface struct { // The ID of the network interface. NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"` // The IPv4 address of the network interface within the subnet. PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"` // The IPv4 public address of the network interface. PublicIpAddress *string `locationName:"publicIpAddress" type:"string"` // contains filtered or unexported fields }
Describes a network interface.
func (s NetworkInterface) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *NetworkInterface) SetNetworkInterfaceId(v string) *NetworkInterface
SetNetworkInterfaceId sets the NetworkInterfaceId field's value.
func (s *NetworkInterface) SetPrivateIpAddress(v string) *NetworkInterface
SetPrivateIpAddress sets the PrivateIpAddress field's value.
func (s *NetworkInterface) SetPublicIpAddress(v string) *NetworkInterface
SetPublicIpAddress sets the PublicIpAddress field's value.
func (s NetworkInterface) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type OutputLocation struct { // The S3 bucket for output. S3Bucket *string `locationName:"s3Bucket" min:"3" type:"string"` // The S3 folder in the s3Bucket where output files will be placed. S3Prefix *string `locationName:"s3Prefix" min:"1" type:"string"` // contains filtered or unexported fields }
The output location.
func (s OutputLocation) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *OutputLocation) SetS3Bucket(v string) *OutputLocation
SetS3Bucket sets the S3Bucket field's value.
func (s *OutputLocation) SetS3Prefix(v string) *OutputLocation
SetS3Prefix sets the S3Prefix field's value.
func (s OutputLocation) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *OutputLocation) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type PortForwardingConfig struct { // The port mappings for the configuration. PortMappings []*PortMapping `locationName:"portMappings" type:"list"` // contains filtered or unexported fields }
Configuration information for port forwarding.
func (s PortForwardingConfig) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *PortForwardingConfig) SetPortMappings(v []*PortMapping) *PortForwardingConfig
SetPortMappings sets the PortMappings field's value.
func (s PortForwardingConfig) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *PortForwardingConfig) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type PortMapping struct { // The port number on the application. // // ApplicationPort is a required field ApplicationPort *int64 `locationName:"applicationPort" min:"1024" type:"integer" required:"true"` // A Boolean indicating whether to enable this port mapping on public IP. EnableOnPublicIp *bool `locationName:"enableOnPublicIp" type:"boolean"` // The port number on the simulation job instance to use as a remote connection // point. // // JobPort is a required field JobPort *int64 `locationName:"jobPort" min:"1" type:"integer" required:"true"` // contains filtered or unexported fields }
An object representing a port mapping.
func (s PortMapping) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *PortMapping) SetApplicationPort(v int64) *PortMapping
SetApplicationPort sets the ApplicationPort field's value.
func (s *PortMapping) SetEnableOnPublicIp(v bool) *PortMapping
SetEnableOnPublicIp sets the EnableOnPublicIp field's value.
func (s *PortMapping) SetJobPort(v int64) *PortMapping
SetJobPort sets the JobPort field's value.
func (s PortMapping) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *PortMapping) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ProgressDetail struct { // The current progress status. // // Validating // // Validating the deployment. // // DownloadingExtracting // // Downloading and extracting the bundle on the robot. // // ExecutingPreLaunch // // Executing pre-launch script(s) if provided. // // Launching // // Launching the robot application. // // ExecutingPostLaunch // // Executing post-launch script(s) if provided. // // Finished // // Deployment is complete. CurrentProgress *string `locationName:"currentProgress" type:"string" enum:"RobotDeploymentStep"` // Estimated amount of time in seconds remaining in the step. This currently // only applies to the Downloading/Extracting step of the deployment. It is // empty for other steps. EstimatedTimeRemainingSeconds *int64 `locationName:"estimatedTimeRemainingSeconds" type:"integer"` // Precentage of the step that is done. This currently only applies to the Downloading/Extracting // step of the deployment. It is empty for other steps. PercentDone *float64 `locationName:"percentDone" type:"float"` // The Amazon Resource Name (ARN) of the deployment job. TargetResource *string `locationName:"targetResource" type:"string"` // contains filtered or unexported fields }
Information about the progress of a deployment job.
func (s ProgressDetail) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ProgressDetail) SetCurrentProgress(v string) *ProgressDetail
SetCurrentProgress sets the CurrentProgress field's value.
func (s *ProgressDetail) SetEstimatedTimeRemainingSeconds(v int64) *ProgressDetail
SetEstimatedTimeRemainingSeconds sets the EstimatedTimeRemainingSeconds field's value.
func (s *ProgressDetail) SetPercentDone(v float64) *ProgressDetail
SetPercentDone sets the PercentDone field's value.
func (s *ProgressDetail) SetTargetResource(v string) *ProgressDetail
SetTargetResource sets the TargetResource field's value.
func (s ProgressDetail) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type RegisterRobotInput struct { // The Amazon Resource Name (ARN) of the fleet. // // Fleet is a required field Fleet *string `locationName:"fleet" min:"1" type:"string" required:"true"` // The Amazon Resource Name (ARN) of the robot. // // Robot is a required field Robot *string `locationName:"robot" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s RegisterRobotInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *RegisterRobotInput) SetFleet(v string) *RegisterRobotInput
SetFleet sets the Fleet field's value.
func (s *RegisterRobotInput) SetRobot(v string) *RegisterRobotInput
SetRobot sets the Robot field's value.
func (s RegisterRobotInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *RegisterRobotInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type RegisterRobotOutput struct { // The Amazon Resource Name (ARN) of the fleet that the robot will join. Fleet *string `locationName:"fleet" min:"1" type:"string"` // Information about the robot registration. Robot *string `locationName:"robot" min:"1" type:"string"` // contains filtered or unexported fields }
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (s RegisterRobotOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *RegisterRobotOutput) SetFleet(v string) *RegisterRobotOutput
SetFleet sets the Fleet field's value.
func (s *RegisterRobotOutput) SetRobot(v string) *RegisterRobotOutput
SetRobot sets the Robot field's value.
func (s RegisterRobotOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type RenderingEngine struct { // The name of the rendering engine. Name *string `locationName:"name" type:"string" enum:"RenderingEngineType"` // The version of the rendering engine. Version *string `locationName:"version" min:"1" type:"string"` // contains filtered or unexported fields }
Information about a rendering engine.
func (s RenderingEngine) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *RenderingEngine) SetName(v string) *RenderingEngine
SetName sets the Name field's value.
func (s *RenderingEngine) SetVersion(v string) *RenderingEngine
SetVersion sets the Version field's value.
func (s RenderingEngine) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *RenderingEngine) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ResourceAlreadyExistsException struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The specified resource already exists.
func (s *ResourceAlreadyExistsException) Code() string
Code returns the exception type name.
func (s *ResourceAlreadyExistsException) Error() string
func (s ResourceAlreadyExistsException) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ResourceAlreadyExistsException) Message() string
Message returns the exception's message.
func (s *ResourceAlreadyExistsException) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *ResourceAlreadyExistsException) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *ResourceAlreadyExistsException) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s ResourceAlreadyExistsException) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type ResourceNotFoundException struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The specified resource does not exist.
func (s *ResourceNotFoundException) Code() string
Code returns the exception type name.
func (s *ResourceNotFoundException) Error() string
func (s ResourceNotFoundException) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *ResourceNotFoundException) Message() string
Message returns the exception's message.
func (s *ResourceNotFoundException) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *ResourceNotFoundException) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *ResourceNotFoundException) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s ResourceNotFoundException) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type RestartSimulationJobInput struct { // The Amazon Resource Name (ARN) of the simulation job. // // Job is a required field Job *string `locationName:"job" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
func (s RestartSimulationJobInput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *RestartSimulationJobInput) SetJob(v string) *RestartSimulationJobInput
SetJob sets the Job field's value.
func (s RestartSimulationJobInput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s *RestartSimulationJobInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type RestartSimulationJobOutput struct {
// contains filtered or unexported fields
}
func (s RestartSimulationJobOutput) GoString() string
GoString returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
func (s RestartSimulationJobOutput) String() string
String returns the string representation.
API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".
type RoboMaker struct { *client.Client }
RoboMaker provides the API operation methods for making requests to AWS RoboMaker. See this package's package overview docs for details on the service.
RoboMaker methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.
func New(p client.ConfigProvider, cfgs ...*aws.Config) *RoboMaker
New creates a new instance of the RoboMaker 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:
mySession := session.Must(session.NewSession()) // Create a RoboMaker client from just a session. svc := robomaker.New(mySession) // Create a RoboMaker client with additional configuration svc := robomaker.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
func (c *RoboMaker) BatchDeleteWorlds(input *BatchDeleteWorldsInput) (*BatchDeleteWorldsOutput, error)
BatchDeleteWorlds API operation for AWS RoboMaker.
Deletes one or more worlds in a batch 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 RoboMaker's API operation BatchDeleteWorlds for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/BatchDeleteWorlds
func (c *RoboMaker) BatchDeleteWorldsRequest(input *BatchDeleteWorldsInput) (req *request.Request, output *BatchDeleteWorldsOutput)
BatchDeleteWorldsRequest generates a "aws/request.Request" representing the client's request for the BatchDeleteWorlds operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See BatchDeleteWorlds for more information on using the BatchDeleteWorlds API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the BatchDeleteWorldsRequest method. req, resp := client.BatchDeleteWorldsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/BatchDeleteWorlds
func (c *RoboMaker) BatchDeleteWorldsWithContext(ctx aws.Context, input *BatchDeleteWorldsInput, opts ...request.Option) (*BatchDeleteWorldsOutput, error)
BatchDeleteWorldsWithContext is the same as BatchDeleteWorlds with the addition of the ability to pass a context and additional request options.
See BatchDeleteWorlds 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 (c *RoboMaker) BatchDescribeSimulationJob(input *BatchDescribeSimulationJobInput) (*BatchDescribeSimulationJobOutput, error)
BatchDescribeSimulationJob API operation for AWS RoboMaker.
Describes one or more simulation jobs.
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 RoboMaker's API operation BatchDescribeSimulationJob for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/BatchDescribeSimulationJob
func (c *RoboMaker) BatchDescribeSimulationJobRequest(input *BatchDescribeSimulationJobInput) (req *request.Request, output *BatchDescribeSimulationJobOutput)
BatchDescribeSimulationJobRequest generates a "aws/request.Request" representing the client's request for the BatchDescribeSimulationJob operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See BatchDescribeSimulationJob for more information on using the BatchDescribeSimulationJob API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the BatchDescribeSimulationJobRequest method. req, resp := client.BatchDescribeSimulationJobRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/BatchDescribeSimulationJob
func (c *RoboMaker) BatchDescribeSimulationJobWithContext(ctx aws.Context, input *BatchDescribeSimulationJobInput, opts ...request.Option) (*BatchDescribeSimulationJobOutput, error)
BatchDescribeSimulationJobWithContext is the same as BatchDescribeSimulationJob with the addition of the ability to pass a context and additional request options.
See BatchDescribeSimulationJob 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 (c *RoboMaker) CancelDeploymentJob(input *CancelDeploymentJobInput) (*CancelDeploymentJobOutput, error)
CancelDeploymentJob API operation for AWS RoboMaker.
Cancels the specified deployment job.
This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.
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 RoboMaker's API operation CancelDeploymentJob for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelDeploymentJob
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) CancelDeploymentJobRequest(input *CancelDeploymentJobInput) (req *request.Request, output *CancelDeploymentJobOutput)
CancelDeploymentJobRequest generates a "aws/request.Request" representing the client's request for the CancelDeploymentJob operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CancelDeploymentJob for more information on using the CancelDeploymentJob API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CancelDeploymentJobRequest method. req, resp := client.CancelDeploymentJobRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelDeploymentJob
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) CancelDeploymentJobWithContext(ctx aws.Context, input *CancelDeploymentJobInput, opts ...request.Option) (*CancelDeploymentJobOutput, error)
CancelDeploymentJobWithContext is the same as CancelDeploymentJob with the addition of the ability to pass a context and additional request options.
See CancelDeploymentJob 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.
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) CancelSimulationJob(input *CancelSimulationJobInput) (*CancelSimulationJobOutput, error)
CancelSimulationJob API operation for AWS RoboMaker.
Cancels the specified simulation job.
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 RoboMaker's API operation CancelSimulationJob for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelSimulationJob
func (c *RoboMaker) CancelSimulationJobBatch(input *CancelSimulationJobBatchInput) (*CancelSimulationJobBatchOutput, error)
CancelSimulationJobBatch API operation for AWS RoboMaker.
Cancels a simulation job batch. When you cancel a simulation job batch, you are also cancelling all of the active simulation jobs created as part of the batch.
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 RoboMaker's API operation CancelSimulationJobBatch for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelSimulationJobBatch
func (c *RoboMaker) CancelSimulationJobBatchRequest(input *CancelSimulationJobBatchInput) (req *request.Request, output *CancelSimulationJobBatchOutput)
CancelSimulationJobBatchRequest generates a "aws/request.Request" representing the client's request for the CancelSimulationJobBatch operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CancelSimulationJobBatch for more information on using the CancelSimulationJobBatch API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CancelSimulationJobBatchRequest method. req, resp := client.CancelSimulationJobBatchRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelSimulationJobBatch
func (c *RoboMaker) CancelSimulationJobBatchWithContext(ctx aws.Context, input *CancelSimulationJobBatchInput, opts ...request.Option) (*CancelSimulationJobBatchOutput, error)
CancelSimulationJobBatchWithContext is the same as CancelSimulationJobBatch with the addition of the ability to pass a context and additional request options.
See CancelSimulationJobBatch 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 (c *RoboMaker) CancelSimulationJobRequest(input *CancelSimulationJobInput) (req *request.Request, output *CancelSimulationJobOutput)
CancelSimulationJobRequest generates a "aws/request.Request" representing the client's request for the CancelSimulationJob operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CancelSimulationJob for more information on using the CancelSimulationJob API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CancelSimulationJobRequest method. req, resp := client.CancelSimulationJobRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelSimulationJob
func (c *RoboMaker) CancelSimulationJobWithContext(ctx aws.Context, input *CancelSimulationJobInput, opts ...request.Option) (*CancelSimulationJobOutput, error)
CancelSimulationJobWithContext is the same as CancelSimulationJob with the addition of the ability to pass a context and additional request options.
See CancelSimulationJob 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 (c *RoboMaker) CancelWorldExportJob(input *CancelWorldExportJobInput) (*CancelWorldExportJobOutput, error)
CancelWorldExportJob API operation for AWS RoboMaker.
Cancels the specified export job.
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 RoboMaker's API operation CancelWorldExportJob for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelWorldExportJob
func (c *RoboMaker) CancelWorldExportJobRequest(input *CancelWorldExportJobInput) (req *request.Request, output *CancelWorldExportJobOutput)
CancelWorldExportJobRequest generates a "aws/request.Request" representing the client's request for the CancelWorldExportJob operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CancelWorldExportJob for more information on using the CancelWorldExportJob API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CancelWorldExportJobRequest method. req, resp := client.CancelWorldExportJobRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelWorldExportJob
func (c *RoboMaker) CancelWorldExportJobWithContext(ctx aws.Context, input *CancelWorldExportJobInput, opts ...request.Option) (*CancelWorldExportJobOutput, error)
CancelWorldExportJobWithContext is the same as CancelWorldExportJob with the addition of the ability to pass a context and additional request options.
See CancelWorldExportJob 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 (c *RoboMaker) CancelWorldGenerationJob(input *CancelWorldGenerationJobInput) (*CancelWorldGenerationJobOutput, error)
CancelWorldGenerationJob API operation for AWS RoboMaker.
Cancels the specified world generator job.
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 RoboMaker's API operation CancelWorldGenerationJob for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelWorldGenerationJob
func (c *RoboMaker) CancelWorldGenerationJobRequest(input *CancelWorldGenerationJobInput) (req *request.Request, output *CancelWorldGenerationJobOutput)
CancelWorldGenerationJobRequest generates a "aws/request.Request" representing the client's request for the CancelWorldGenerationJob operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CancelWorldGenerationJob for more information on using the CancelWorldGenerationJob API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CancelWorldGenerationJobRequest method. req, resp := client.CancelWorldGenerationJobRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelWorldGenerationJob
func (c *RoboMaker) CancelWorldGenerationJobWithContext(ctx aws.Context, input *CancelWorldGenerationJobInput, opts ...request.Option) (*CancelWorldGenerationJobOutput, error)
CancelWorldGenerationJobWithContext is the same as CancelWorldGenerationJob with the addition of the ability to pass a context and additional request options.
See CancelWorldGenerationJob 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 (c *RoboMaker) CreateDeploymentJob(input *CreateDeploymentJobInput) (*CreateDeploymentJobOutput, error)
CreateDeploymentJob API operation for AWS RoboMaker.
Deploys a specific version of a robot application to robots in a fleet.
This API is no longer supported and will throw an error if used.
The robot application must have a numbered applicationVersion for consistency reasons. To create a new version, use CreateRobotApplicationVersion or see Creating a Robot Application Version (https://docs.aws.amazon.com/robomaker/latest/dg/create-robot-application-version.html).
After 90 days, deployment jobs expire and will be deleted. They will no longer be accessible.
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 RoboMaker's API operation CreateDeploymentJob for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
LimitExceededException The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.
ConcurrentDeploymentException The failure percentage threshold percentage was met.
IdempotentParameterMismatchException The request uses the same client token as a previous, but non-identical request. Do not reuse a client token with different requests, unless the requests are identical.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateDeploymentJob
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) CreateDeploymentJobRequest(input *CreateDeploymentJobInput) (req *request.Request, output *CreateDeploymentJobOutput)
CreateDeploymentJobRequest generates a "aws/request.Request" representing the client's request for the CreateDeploymentJob operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateDeploymentJob for more information on using the CreateDeploymentJob API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateDeploymentJobRequest method. req, resp := client.CreateDeploymentJobRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateDeploymentJob
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) CreateDeploymentJobWithContext(ctx aws.Context, input *CreateDeploymentJobInput, opts ...request.Option) (*CreateDeploymentJobOutput, error)
CreateDeploymentJobWithContext is the same as CreateDeploymentJob with the addition of the ability to pass a context and additional request options.
See CreateDeploymentJob 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.
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) CreateFleet(input *CreateFleetInput) (*CreateFleetOutput, error)
CreateFleet API operation for AWS RoboMaker.
Creates a fleet, a logical group of robots running the same robot application.
This API is no longer supported and will throw an error if used.
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 RoboMaker's API operation CreateFleet for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
LimitExceededException The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateFleet
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) CreateFleetRequest(input *CreateFleetInput) (req *request.Request, output *CreateFleetOutput)
CreateFleetRequest generates a "aws/request.Request" representing the client's request for the CreateFleet operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateFleet for more information on using the CreateFleet API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateFleetRequest method. req, resp := client.CreateFleetRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateFleet
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) CreateFleetWithContext(ctx aws.Context, input *CreateFleetInput, opts ...request.Option) (*CreateFleetOutput, error)
CreateFleetWithContext is the same as CreateFleet with the addition of the ability to pass a context and additional request options.
See CreateFleet 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.
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) CreateRobot(input *CreateRobotInput) (*CreateRobotOutput, error)
CreateRobot API operation for AWS RoboMaker.
Creates a robot.
This API is no longer supported and will throw an error if used.
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 RoboMaker's API operation CreateRobot for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
LimitExceededException The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.
ResourceAlreadyExistsException The specified resource already exists.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobot
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) CreateRobotApplication(input *CreateRobotApplicationInput) (*CreateRobotApplicationOutput, error)
CreateRobotApplication API operation for AWS RoboMaker.
Creates a robot application.
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 RoboMaker's API operation CreateRobotApplication for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ResourceAlreadyExistsException The specified resource already exists.
LimitExceededException The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
IdempotentParameterMismatchException The request uses the same client token as a previous, but non-identical request. Do not reuse a client token with different requests, unless the requests are identical.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplication
func (c *RoboMaker) CreateRobotApplicationRequest(input *CreateRobotApplicationInput) (req *request.Request, output *CreateRobotApplicationOutput)
CreateRobotApplicationRequest generates a "aws/request.Request" representing the client's request for the CreateRobotApplication operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateRobotApplication for more information on using the CreateRobotApplication API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateRobotApplicationRequest method. req, resp := client.CreateRobotApplicationRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplication
func (c *RoboMaker) CreateRobotApplicationVersion(input *CreateRobotApplicationVersionInput) (*CreateRobotApplicationVersionOutput, error)
CreateRobotApplicationVersion API operation for AWS RoboMaker.
Creates a version of a robot application.
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 RoboMaker's API operation CreateRobotApplicationVersion for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
IdempotentParameterMismatchException The request uses the same client token as a previous, but non-identical request. Do not reuse a client token with different requests, unless the requests are identical.
LimitExceededException The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplicationVersion
func (c *RoboMaker) CreateRobotApplicationVersionRequest(input *CreateRobotApplicationVersionInput) (req *request.Request, output *CreateRobotApplicationVersionOutput)
CreateRobotApplicationVersionRequest generates a "aws/request.Request" representing the client's request for the CreateRobotApplicationVersion operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateRobotApplicationVersion for more information on using the CreateRobotApplicationVersion API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateRobotApplicationVersionRequest method. req, resp := client.CreateRobotApplicationVersionRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplicationVersion
func (c *RoboMaker) CreateRobotApplicationVersionWithContext(ctx aws.Context, input *CreateRobotApplicationVersionInput, opts ...request.Option) (*CreateRobotApplicationVersionOutput, error)
CreateRobotApplicationVersionWithContext is the same as CreateRobotApplicationVersion with the addition of the ability to pass a context and additional request options.
See CreateRobotApplicationVersion 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 (c *RoboMaker) CreateRobotApplicationWithContext(ctx aws.Context, input *CreateRobotApplicationInput, opts ...request.Option) (*CreateRobotApplicationOutput, error)
CreateRobotApplicationWithContext is the same as CreateRobotApplication with the addition of the ability to pass a context and additional request options.
See CreateRobotApplication 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 (c *RoboMaker) CreateRobotRequest(input *CreateRobotInput) (req *request.Request, output *CreateRobotOutput)
CreateRobotRequest generates a "aws/request.Request" representing the client's request for the CreateRobot operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateRobot for more information on using the CreateRobot API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateRobotRequest method. req, resp := client.CreateRobotRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobot
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) CreateRobotWithContext(ctx aws.Context, input *CreateRobotInput, opts ...request.Option) (*CreateRobotOutput, error)
CreateRobotWithContext is the same as CreateRobot with the addition of the ability to pass a context and additional request options.
See CreateRobot 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.
Deprecated: AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) CreateSimulationApplication(input *CreateSimulationApplicationInput) (*CreateSimulationApplicationOutput, error)
CreateSimulationApplication API operation for AWS RoboMaker.
Creates a simulation application.
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 RoboMaker's API operation CreateSimulationApplication for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ResourceAlreadyExistsException The specified resource already exists.
LimitExceededException The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
IdempotentParameterMismatchException The request uses the same client token as a previous, but non-identical request. Do not reuse a client token with different requests, unless the requests are identical.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplication
func (c *RoboMaker) CreateSimulationApplicationRequest(input *CreateSimulationApplicationInput) (req *request.Request, output *CreateSimulationApplicationOutput)
CreateSimulationApplicationRequest generates a "aws/request.Request" representing the client's request for the CreateSimulationApplication operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateSimulationApplication for more information on using the CreateSimulationApplication API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateSimulationApplicationRequest method. req, resp := client.CreateSimulationApplicationRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplication
func (c *RoboMaker) CreateSimulationApplicationVersion(input *CreateSimulationApplicationVersionInput) (*CreateSimulationApplicationVersionOutput, error)
CreateSimulationApplicationVersion API operation for AWS RoboMaker.
Creates a simulation application with a specific revision id.
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 RoboMaker's API operation CreateSimulationApplicationVersion for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
IdempotentParameterMismatchException The request uses the same client token as a previous, but non-identical request. Do not reuse a client token with different requests, unless the requests are identical.
LimitExceededException The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplicationVersion
func (c *RoboMaker) CreateSimulationApplicationVersionRequest(input *CreateSimulationApplicationVersionInput) (req *request.Request, output *CreateSimulationApplicationVersionOutput)
CreateSimulationApplicationVersionRequest generates a "aws/request.Request" representing the client's request for the CreateSimulationApplicationVersion operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateSimulationApplicationVersion for more information on using the CreateSimulationApplicationVersion API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateSimulationApplicationVersionRequest method. req, resp := client.CreateSimulationApplicationVersionRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplicationVersion
func (c *RoboMaker) CreateSimulationApplicationVersionWithContext(ctx aws.Context, input *CreateSimulationApplicationVersionInput, opts ...request.Option) (*CreateSimulationApplicationVersionOutput, error)
CreateSimulationApplicationVersionWithContext is the same as CreateSimulationApplicationVersion with the addition of the ability to pass a context and additional request options.
See CreateSimulationApplicationVersion 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 (c *RoboMaker) CreateSimulationApplicationWithContext(ctx aws.Context, input *CreateSimulationApplicationInput, opts ...request.Option) (*CreateSimulationApplicationOutput, error)
CreateSimulationApplicationWithContext is the same as CreateSimulationApplication with the addition of the ability to pass a context and additional request options.
See CreateSimulationApplication 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 (c *RoboMaker) CreateSimulationJob(input *CreateSimulationJobInput) (*CreateSimulationJobOutput, error)
CreateSimulationJob API operation for AWS RoboMaker.
Creates a simulation job.
After 90 days, simulation jobs expire and will be deleted. They will no longer be accessible.
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 RoboMaker's API operation CreateSimulationJob for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
LimitExceededException The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.
IdempotentParameterMismatchException The request uses the same client token as a previous, but non-identical request. Do not reuse a client token with different requests, unless the requests are identical.
ServiceUnavailableException The request has failed due to a temporary failure of the server.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationJob
func (c *RoboMaker) CreateSimulationJobRequest(input *CreateSimulationJobInput) (req *request.Request, output *CreateSimulationJobOutput)
CreateSimulationJobRequest generates a "aws/request.Request" representing the client's request for the CreateSimulationJob operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateSimulationJob for more information on using the CreateSimulationJob API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateSimulationJobRequest method. req, resp := client.CreateSimulationJobRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationJob
func (c *RoboMaker) CreateSimulationJobWithContext(ctx aws.Context, input *CreateSimulationJobInput, opts ...request.Option) (*CreateSimulationJobOutput, error)
CreateSimulationJobWithContext is the same as CreateSimulationJob with the addition of the ability to pass a context and additional request options.
See CreateSimulationJob 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 (c *RoboMaker) CreateWorldExportJob(input *CreateWorldExportJobInput) (*CreateWorldExportJobOutput, error)
CreateWorldExportJob API operation for AWS RoboMaker.
Creates a world export job.
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 RoboMaker's API operation CreateWorldExportJob for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
IdempotentParameterMismatchException The request uses the same client token as a previous, but non-identical request. Do not reuse a client token with different requests, unless the requests are identical.
ServiceUnavailableException The request has failed due to a temporary failure of the server.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldExportJob
func (c *RoboMaker) CreateWorldExportJobRequest(input *CreateWorldExportJobInput) (req *request.Request, output *CreateWorldExportJobOutput)
CreateWorldExportJobRequest generates a "aws/request.Request" representing the client's request for the CreateWorldExportJob operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateWorldExportJob for more information on using the CreateWorldExportJob API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateWorldExportJobRequest method. req, resp := client.CreateWorldExportJobRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldExportJob
func (c *RoboMaker) CreateWorldExportJobWithContext(ctx aws.Context, input *CreateWorldExportJobInput, opts ...request.Option) (*CreateWorldExportJobOutput, error)
CreateWorldExportJobWithContext is the same as CreateWorldExportJob with the addition of the ability to pass a context and additional request options.
See CreateWorldExportJob 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 (c *RoboMaker) CreateWorldGenerationJob(input *CreateWorldGenerationJobInput) (*CreateWorldGenerationJobOutput, error)
CreateWorldGenerationJob API operation for AWS RoboMaker.
Creates worlds using the specified template.
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 RoboMaker's API operation CreateWorldGenerationJob for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
LimitExceededException The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.
IdempotentParameterMismatchException The request uses the same client token as a previous, but non-identical request. Do not reuse a client token with different requests, unless the requests are identical.
ServiceUnavailableException The request has failed due to a temporary failure of the server.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldGenerationJob
func (c *RoboMaker) CreateWorldGenerationJobRequest(input *CreateWorldGenerationJobInput) (req *request.Request, output *CreateWorldGenerationJobOutput)
CreateWorldGenerationJobRequest generates a "aws/request.Request" representing the client's request for the CreateWorldGenerationJob operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateWorldGenerationJob for more information on using the CreateWorldGenerationJob API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateWorldGenerationJobRequest method. req, resp := client.CreateWorldGenerationJobRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldGenerationJob
func (c *RoboMaker) CreateWorldGenerationJobWithContext(ctx aws.Context, input *CreateWorldGenerationJobInput, opts ...request.Option) (*CreateWorldGenerationJobOutput, error)
CreateWorldGenerationJobWithContext is the same as CreateWorldGenerationJob with the addition of the ability to pass a context and additional request options.
See CreateWorldGenerationJob 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 (c *RoboMaker) CreateWorldTemplate(input *CreateWorldTemplateInput) (*CreateWorldTemplateOutput, error)
CreateWorldTemplate API operation for AWS RoboMaker.
Creates a world template.
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 RoboMaker's API operation CreateWorldTemplate for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ResourceAlreadyExistsException The specified resource already exists.
ResourceNotFoundException The specified resource does not exist.
LimitExceededException The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldTemplate
func (c *RoboMaker) CreateWorldTemplateRequest(input *CreateWorldTemplateInput) (req *request.Request, output *CreateWorldTemplateOutput)
CreateWorldTemplateRequest generates a "aws/request.Request" representing the client's request for the CreateWorldTemplate operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateWorldTemplate for more information on using the CreateWorldTemplate API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateWorldTemplateRequest method. req, resp := client.CreateWorldTemplateRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldTemplate
func (c *RoboMaker) CreateWorldTemplateWithContext(ctx aws.Context, input *CreateWorldTemplateInput, opts ...request.Option) (*CreateWorldTemplateOutput, error)
CreateWorldTemplateWithContext is the same as CreateWorldTemplate with the addition of the ability to pass a context and additional request options.
See CreateWorldTemplate 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 (c *RoboMaker) DeleteFleet(input *DeleteFleetInput) (*DeleteFleetOutput, error)
DeleteFleet API operation for AWS RoboMaker.
Deletes a fleet.
This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.
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 RoboMaker's API operation DeleteFleet for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteFleet
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DeleteFleetRequest(input *DeleteFleetInput) (req *request.Request, output *DeleteFleetOutput)
DeleteFleetRequest generates a "aws/request.Request" representing the client's request for the DeleteFleet operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeleteFleet for more information on using the DeleteFleet API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeleteFleetRequest method. req, resp := client.DeleteFleetRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteFleet
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DeleteFleetWithContext(ctx aws.Context, input *DeleteFleetInput, opts ...request.Option) (*DeleteFleetOutput, error)
DeleteFleetWithContext is the same as DeleteFleet with the addition of the ability to pass a context and additional request options.
See DeleteFleet 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.
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DeleteRobot(input *DeleteRobotInput) (*DeleteRobotOutput, error)
DeleteRobot API operation for AWS RoboMaker.
Deletes a robot.
This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.
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 RoboMaker's API operation DeleteRobot for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobot
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DeleteRobotApplication(input *DeleteRobotApplicationInput) (*DeleteRobotApplicationOutput, error)
DeleteRobotApplication API operation for AWS RoboMaker.
Deletes a robot application.
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 RoboMaker's API operation DeleteRobotApplication for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobotApplication
func (c *RoboMaker) DeleteRobotApplicationRequest(input *DeleteRobotApplicationInput) (req *request.Request, output *DeleteRobotApplicationOutput)
DeleteRobotApplicationRequest generates a "aws/request.Request" representing the client's request for the DeleteRobotApplication operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeleteRobotApplication for more information on using the DeleteRobotApplication API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeleteRobotApplicationRequest method. req, resp := client.DeleteRobotApplicationRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobotApplication
func (c *RoboMaker) DeleteRobotApplicationWithContext(ctx aws.Context, input *DeleteRobotApplicationInput, opts ...request.Option) (*DeleteRobotApplicationOutput, error)
DeleteRobotApplicationWithContext is the same as DeleteRobotApplication with the addition of the ability to pass a context and additional request options.
See DeleteRobotApplication 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 (c *RoboMaker) DeleteRobotRequest(input *DeleteRobotInput) (req *request.Request, output *DeleteRobotOutput)
DeleteRobotRequest generates a "aws/request.Request" representing the client's request for the DeleteRobot operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeleteRobot for more information on using the DeleteRobot API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeleteRobotRequest method. req, resp := client.DeleteRobotRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobot
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DeleteRobotWithContext(ctx aws.Context, input *DeleteRobotInput, opts ...request.Option) (*DeleteRobotOutput, error)
DeleteRobotWithContext is the same as DeleteRobot with the addition of the ability to pass a context and additional request options.
See DeleteRobot 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.
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DeleteSimulationApplication(input *DeleteSimulationApplicationInput) (*DeleteSimulationApplicationOutput, error)
DeleteSimulationApplication API operation for AWS RoboMaker.
Deletes a simulation application.
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 RoboMaker's API operation DeleteSimulationApplication for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteSimulationApplication
func (c *RoboMaker) DeleteSimulationApplicationRequest(input *DeleteSimulationApplicationInput) (req *request.Request, output *DeleteSimulationApplicationOutput)
DeleteSimulationApplicationRequest generates a "aws/request.Request" representing the client's request for the DeleteSimulationApplication operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeleteSimulationApplication for more information on using the DeleteSimulationApplication API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeleteSimulationApplicationRequest method. req, resp := client.DeleteSimulationApplicationRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteSimulationApplication
func (c *RoboMaker) DeleteSimulationApplicationWithContext(ctx aws.Context, input *DeleteSimulationApplicationInput, opts ...request.Option) (*DeleteSimulationApplicationOutput, error)
DeleteSimulationApplicationWithContext is the same as DeleteSimulationApplication with the addition of the ability to pass a context and additional request options.
See DeleteSimulationApplication 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 (c *RoboMaker) DeleteWorldTemplate(input *DeleteWorldTemplateInput) (*DeleteWorldTemplateOutput, error)
DeleteWorldTemplate API operation for AWS RoboMaker.
Deletes a world template.
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 RoboMaker's API operation DeleteWorldTemplate for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ResourceNotFoundException The specified resource does not exist.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteWorldTemplate
func (c *RoboMaker) DeleteWorldTemplateRequest(input *DeleteWorldTemplateInput) (req *request.Request, output *DeleteWorldTemplateOutput)
DeleteWorldTemplateRequest generates a "aws/request.Request" representing the client's request for the DeleteWorldTemplate operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeleteWorldTemplate for more information on using the DeleteWorldTemplate API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeleteWorldTemplateRequest method. req, resp := client.DeleteWorldTemplateRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteWorldTemplate
func (c *RoboMaker) DeleteWorldTemplateWithContext(ctx aws.Context, input *DeleteWorldTemplateInput, opts ...request.Option) (*DeleteWorldTemplateOutput, error)
DeleteWorldTemplateWithContext is the same as DeleteWorldTemplate with the addition of the ability to pass a context and additional request options.
See DeleteWorldTemplate 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 (c *RoboMaker) DeregisterRobot(input *DeregisterRobotInput) (*DeregisterRobotOutput, error)
DeregisterRobot API operation for AWS RoboMaker.
Deregisters a robot.
This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.
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 RoboMaker's API operation DeregisterRobot for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
ResourceNotFoundException The specified resource does not exist.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeregisterRobot
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DeregisterRobotRequest(input *DeregisterRobotInput) (req *request.Request, output *DeregisterRobotOutput)
DeregisterRobotRequest generates a "aws/request.Request" representing the client's request for the DeregisterRobot operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeregisterRobot for more information on using the DeregisterRobot API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeregisterRobotRequest method. req, resp := client.DeregisterRobotRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeregisterRobot
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DeregisterRobotWithContext(ctx aws.Context, input *DeregisterRobotInput, opts ...request.Option) (*DeregisterRobotOutput, error)
DeregisterRobotWithContext is the same as DeregisterRobot with the addition of the ability to pass a context and additional request options.
See DeregisterRobot 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.
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DescribeDeploymentJob(input *DescribeDeploymentJobInput) (*DescribeDeploymentJobOutput, error)
DescribeDeploymentJob API operation for AWS RoboMaker.
Describes a deployment job.
This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.
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 RoboMaker's API operation DescribeDeploymentJob for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeDeploymentJob
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DescribeDeploymentJobRequest(input *DescribeDeploymentJobInput) (req *request.Request, output *DescribeDeploymentJobOutput)
DescribeDeploymentJobRequest generates a "aws/request.Request" representing the client's request for the DescribeDeploymentJob operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeDeploymentJob for more information on using the DescribeDeploymentJob API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeDeploymentJobRequest method. req, resp := client.DescribeDeploymentJobRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeDeploymentJob
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DescribeDeploymentJobWithContext(ctx aws.Context, input *DescribeDeploymentJobInput, opts ...request.Option) (*DescribeDeploymentJobOutput, error)
DescribeDeploymentJobWithContext is the same as DescribeDeploymentJob with the addition of the ability to pass a context and additional request options.
See DescribeDeploymentJob 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.
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DescribeFleet(input *DescribeFleetInput) (*DescribeFleetOutput, error)
DescribeFleet API operation for AWS RoboMaker.
Describes a fleet.
This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.
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 RoboMaker's API operation DescribeFleet for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeFleet
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DescribeFleetRequest(input *DescribeFleetInput) (req *request.Request, output *DescribeFleetOutput)
DescribeFleetRequest generates a "aws/request.Request" representing the client's request for the DescribeFleet operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeFleet for more information on using the DescribeFleet API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeFleetRequest method. req, resp := client.DescribeFleetRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeFleet
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DescribeFleetWithContext(ctx aws.Context, input *DescribeFleetInput, opts ...request.Option) (*DescribeFleetOutput, error)
DescribeFleetWithContext is the same as DescribeFleet with the addition of the ability to pass a context and additional request options.
See DescribeFleet 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.
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DescribeRobot(input *DescribeRobotInput) (*DescribeRobotOutput, error)
DescribeRobot API operation for AWS RoboMaker.
Describes a robot.
This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.
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 RoboMaker's API operation DescribeRobot for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobot
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DescribeRobotApplication(input *DescribeRobotApplicationInput) (*DescribeRobotApplicationOutput, error)
DescribeRobotApplication API operation for AWS RoboMaker.
Describes a robot application.
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 RoboMaker's API operation DescribeRobotApplication for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ResourceNotFoundException The specified resource does not exist.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotApplication
func (c *RoboMaker) DescribeRobotApplicationRequest(input *DescribeRobotApplicationInput) (req *request.Request, output *DescribeRobotApplicationOutput)
DescribeRobotApplicationRequest generates a "aws/request.Request" representing the client's request for the DescribeRobotApplication operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeRobotApplication for more information on using the DescribeRobotApplication API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeRobotApplicationRequest method. req, resp := client.DescribeRobotApplicationRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotApplication
func (c *RoboMaker) DescribeRobotApplicationWithContext(ctx aws.Context, input *DescribeRobotApplicationInput, opts ...request.Option) (*DescribeRobotApplicationOutput, error)
DescribeRobotApplicationWithContext is the same as DescribeRobotApplication with the addition of the ability to pass a context and additional request options.
See DescribeRobotApplication 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 (c *RoboMaker) DescribeRobotRequest(input *DescribeRobotInput) (req *request.Request, output *DescribeRobotOutput)
DescribeRobotRequest generates a "aws/request.Request" representing the client's request for the DescribeRobot operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeRobot for more information on using the DescribeRobot API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeRobotRequest method. req, resp := client.DescribeRobotRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobot
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DescribeRobotWithContext(ctx aws.Context, input *DescribeRobotInput, opts ...request.Option) (*DescribeRobotOutput, error)
DescribeRobotWithContext is the same as DescribeRobot with the addition of the ability to pass a context and additional request options.
See DescribeRobot 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.
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) DescribeSimulationApplication(input *DescribeSimulationApplicationInput) (*DescribeSimulationApplicationOutput, error)
DescribeSimulationApplication API operation for AWS RoboMaker.
Describes a simulation application.
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 RoboMaker's API operation DescribeSimulationApplication for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ResourceNotFoundException The specified resource does not exist.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationApplication
func (c *RoboMaker) DescribeSimulationApplicationRequest(input *DescribeSimulationApplicationInput) (req *request.Request, output *DescribeSimulationApplicationOutput)
DescribeSimulationApplicationRequest generates a "aws/request.Request" representing the client's request for the DescribeSimulationApplication operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeSimulationApplication for more information on using the DescribeSimulationApplication API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeSimulationApplicationRequest method. req, resp := client.DescribeSimulationApplicationRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationApplication
func (c *RoboMaker) DescribeSimulationApplicationWithContext(ctx aws.Context, input *DescribeSimulationApplicationInput, opts ...request.Option) (*DescribeSimulationApplicationOutput, error)
DescribeSimulationApplicationWithContext is the same as DescribeSimulationApplication with the addition of the ability to pass a context and additional request options.
See DescribeSimulationApplication 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 (c *RoboMaker) DescribeSimulationJob(input *DescribeSimulationJobInput) (*DescribeSimulationJobOutput, error)
DescribeSimulationJob API operation for AWS RoboMaker.
Describes a simulation job.
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 RoboMaker's API operation DescribeSimulationJob for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJob
func (c *RoboMaker) DescribeSimulationJobBatch(input *DescribeSimulationJobBatchInput) (*DescribeSimulationJobBatchOutput, error)
DescribeSimulationJobBatch API operation for AWS RoboMaker.
Describes a simulation job batch.
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 RoboMaker's API operation DescribeSimulationJobBatch for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobBatch
func (c *RoboMaker) DescribeSimulationJobBatchRequest(input *DescribeSimulationJobBatchInput) (req *request.Request, output *DescribeSimulationJobBatchOutput)
DescribeSimulationJobBatchRequest generates a "aws/request.Request" representing the client's request for the DescribeSimulationJobBatch operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeSimulationJobBatch for more information on using the DescribeSimulationJobBatch API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeSimulationJobBatchRequest method. req, resp := client.DescribeSimulationJobBatchRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobBatch
func (c *RoboMaker) DescribeSimulationJobBatchWithContext(ctx aws.Context, input *DescribeSimulationJobBatchInput, opts ...request.Option) (*DescribeSimulationJobBatchOutput, error)
DescribeSimulationJobBatchWithContext is the same as DescribeSimulationJobBatch with the addition of the ability to pass a context and additional request options.
See DescribeSimulationJobBatch 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 (c *RoboMaker) DescribeSimulationJobRequest(input *DescribeSimulationJobInput) (req *request.Request, output *DescribeSimulationJobOutput)
DescribeSimulationJobRequest generates a "aws/request.Request" representing the client's request for the DescribeSimulationJob operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeSimulationJob for more information on using the DescribeSimulationJob API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeSimulationJobRequest method. req, resp := client.DescribeSimulationJobRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJob
func (c *RoboMaker) DescribeSimulationJobWithContext(ctx aws.Context, input *DescribeSimulationJobInput, opts ...request.Option) (*DescribeSimulationJobOutput, error)
DescribeSimulationJobWithContext is the same as DescribeSimulationJob with the addition of the ability to pass a context and additional request options.
See DescribeSimulationJob 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 (c *RoboMaker) DescribeWorld(input *DescribeWorldInput) (*DescribeWorldOutput, error)
DescribeWorld API operation for AWS RoboMaker.
Describes a world.
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 RoboMaker's API operation DescribeWorld for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ResourceNotFoundException The specified resource does not exist.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorld
func (c *RoboMaker) DescribeWorldExportJob(input *DescribeWorldExportJobInput) (*DescribeWorldExportJobOutput, error)
DescribeWorldExportJob API operation for AWS RoboMaker.
Describes a world export job.
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 RoboMaker's API operation DescribeWorldExportJob for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldExportJob
func (c *RoboMaker) DescribeWorldExportJobRequest(input *DescribeWorldExportJobInput) (req *request.Request, output *DescribeWorldExportJobOutput)
DescribeWorldExportJobRequest generates a "aws/request.Request" representing the client's request for the DescribeWorldExportJob operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeWorldExportJob for more information on using the DescribeWorldExportJob API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeWorldExportJobRequest method. req, resp := client.DescribeWorldExportJobRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldExportJob
func (c *RoboMaker) DescribeWorldExportJobWithContext(ctx aws.Context, input *DescribeWorldExportJobInput, opts ...request.Option) (*DescribeWorldExportJobOutput, error)
DescribeWorldExportJobWithContext is the same as DescribeWorldExportJob with the addition of the ability to pass a context and additional request options.
See DescribeWorldExportJob 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 (c *RoboMaker) DescribeWorldGenerationJob(input *DescribeWorldGenerationJobInput) (*DescribeWorldGenerationJobOutput, error)
DescribeWorldGenerationJob API operation for AWS RoboMaker.
Describes a world generation job.
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 RoboMaker's API operation DescribeWorldGenerationJob for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldGenerationJob
func (c *RoboMaker) DescribeWorldGenerationJobRequest(input *DescribeWorldGenerationJobInput) (req *request.Request, output *DescribeWorldGenerationJobOutput)
DescribeWorldGenerationJobRequest generates a "aws/request.Request" representing the client's request for the DescribeWorldGenerationJob operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeWorldGenerationJob for more information on using the DescribeWorldGenerationJob API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeWorldGenerationJobRequest method. req, resp := client.DescribeWorldGenerationJobRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldGenerationJob
func (c *RoboMaker) DescribeWorldGenerationJobWithContext(ctx aws.Context, input *DescribeWorldGenerationJobInput, opts ...request.Option) (*DescribeWorldGenerationJobOutput, error)
DescribeWorldGenerationJobWithContext is the same as DescribeWorldGenerationJob with the addition of the ability to pass a context and additional request options.
See DescribeWorldGenerationJob 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 (c *RoboMaker) DescribeWorldRequest(input *DescribeWorldInput) (req *request.Request, output *DescribeWorldOutput)
DescribeWorldRequest generates a "aws/request.Request" representing the client's request for the DescribeWorld operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeWorld for more information on using the DescribeWorld API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeWorldRequest method. req, resp := client.DescribeWorldRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorld
func (c *RoboMaker) DescribeWorldTemplate(input *DescribeWorldTemplateInput) (*DescribeWorldTemplateOutput, error)
DescribeWorldTemplate API operation for AWS RoboMaker.
Describes a world template.
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 RoboMaker's API operation DescribeWorldTemplate for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ResourceNotFoundException The specified resource does not exist.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldTemplate
func (c *RoboMaker) DescribeWorldTemplateRequest(input *DescribeWorldTemplateInput) (req *request.Request, output *DescribeWorldTemplateOutput)
DescribeWorldTemplateRequest generates a "aws/request.Request" representing the client's request for the DescribeWorldTemplate operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeWorldTemplate for more information on using the DescribeWorldTemplate API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeWorldTemplateRequest method. req, resp := client.DescribeWorldTemplateRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldTemplate
func (c *RoboMaker) DescribeWorldTemplateWithContext(ctx aws.Context, input *DescribeWorldTemplateInput, opts ...request.Option) (*DescribeWorldTemplateOutput, error)
DescribeWorldTemplateWithContext is the same as DescribeWorldTemplate with the addition of the ability to pass a context and additional request options.
See DescribeWorldTemplate 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 (c *RoboMaker) DescribeWorldWithContext(ctx aws.Context, input *DescribeWorldInput, opts ...request.Option) (*DescribeWorldOutput, error)
DescribeWorldWithContext is the same as DescribeWorld with the addition of the ability to pass a context and additional request options.
See DescribeWorld 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 (c *RoboMaker) GetWorldTemplateBody(input *GetWorldTemplateBodyInput) (*GetWorldTemplateBodyOutput, error)
GetWorldTemplateBody API operation for AWS RoboMaker.
Gets the world template body.
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 RoboMaker's API operation GetWorldTemplateBody for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ResourceNotFoundException The specified resource does not exist.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/GetWorldTemplateBody
func (c *RoboMaker) GetWorldTemplateBodyRequest(input *GetWorldTemplateBodyInput) (req *request.Request, output *GetWorldTemplateBodyOutput)
GetWorldTemplateBodyRequest generates a "aws/request.Request" representing the client's request for the GetWorldTemplateBody operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See GetWorldTemplateBody for more information on using the GetWorldTemplateBody API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the GetWorldTemplateBodyRequest method. req, resp := client.GetWorldTemplateBodyRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/GetWorldTemplateBody
func (c *RoboMaker) GetWorldTemplateBodyWithContext(ctx aws.Context, input *GetWorldTemplateBodyInput, opts ...request.Option) (*GetWorldTemplateBodyOutput, error)
GetWorldTemplateBodyWithContext is the same as GetWorldTemplateBody with the addition of the ability to pass a context and additional request options.
See GetWorldTemplateBody 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 (c *RoboMaker) ListDeploymentJobs(input *ListDeploymentJobsInput) (*ListDeploymentJobsOutput, error)
ListDeploymentJobs API operation for AWS RoboMaker.
Returns a list of deployment jobs for a fleet. You can optionally provide filters to retrieve specific deployment jobs.
This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.
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 RoboMaker's API operation ListDeploymentJobs for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListDeploymentJobs
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListDeploymentJobsPages(input *ListDeploymentJobsInput, fn func(*ListDeploymentJobsOutput, bool) bool) error
ListDeploymentJobsPages iterates over the pages of a ListDeploymentJobs operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListDeploymentJobs 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 ListDeploymentJobs operation. pageNum := 0 err := client.ListDeploymentJobsPages(params, func(page *robomaker.ListDeploymentJobsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListDeploymentJobsPagesWithContext(ctx aws.Context, input *ListDeploymentJobsInput, fn func(*ListDeploymentJobsOutput, bool) bool, opts ...request.Option) error
ListDeploymentJobsPagesWithContext same as ListDeploymentJobsPages 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.
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListDeploymentJobsRequest(input *ListDeploymentJobsInput) (req *request.Request, output *ListDeploymentJobsOutput)
ListDeploymentJobsRequest generates a "aws/request.Request" representing the client's request for the ListDeploymentJobs operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ListDeploymentJobs for more information on using the ListDeploymentJobs API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ListDeploymentJobsRequest method. req, resp := client.ListDeploymentJobsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListDeploymentJobs
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListDeploymentJobsWithContext(ctx aws.Context, input *ListDeploymentJobsInput, opts ...request.Option) (*ListDeploymentJobsOutput, error)
ListDeploymentJobsWithContext is the same as ListDeploymentJobs with the addition of the ability to pass a context and additional request options.
See ListDeploymentJobs 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.
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListFleets(input *ListFleetsInput) (*ListFleetsOutput, error)
ListFleets API operation for AWS RoboMaker.
Returns a list of fleets. You can optionally provide filters to retrieve specific fleets.
This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.
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 RoboMaker's API operation ListFleets for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListFleets
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListFleetsPages(input *ListFleetsInput, fn func(*ListFleetsOutput, bool) bool) error
ListFleetsPages iterates over the pages of a ListFleets operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListFleets 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 ListFleets operation. pageNum := 0 err := client.ListFleetsPages(params, func(page *robomaker.ListFleetsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListFleetsPagesWithContext(ctx aws.Context, input *ListFleetsInput, fn func(*ListFleetsOutput, bool) bool, opts ...request.Option) error
ListFleetsPagesWithContext same as ListFleetsPages 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.
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListFleetsRequest(input *ListFleetsInput) (req *request.Request, output *ListFleetsOutput)
ListFleetsRequest generates a "aws/request.Request" representing the client's request for the ListFleets operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ListFleets for more information on using the ListFleets API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ListFleetsRequest method. req, resp := client.ListFleetsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListFleets
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListFleetsWithContext(ctx aws.Context, input *ListFleetsInput, opts ...request.Option) (*ListFleetsOutput, error)
ListFleetsWithContext is the same as ListFleets with the addition of the ability to pass a context and additional request options.
See ListFleets 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.
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListRobotApplications(input *ListRobotApplicationsInput) (*ListRobotApplicationsOutput, error)
ListRobotApplications API operation for AWS RoboMaker.
Returns a list of robot application. You can optionally provide filters to retrieve specific robot applications.
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 RoboMaker's API operation ListRobotApplications for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListRobotApplications
func (c *RoboMaker) ListRobotApplicationsPages(input *ListRobotApplicationsInput, fn func(*ListRobotApplicationsOutput, bool) bool) error
ListRobotApplicationsPages iterates over the pages of a ListRobotApplications operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListRobotApplications 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 ListRobotApplications operation. pageNum := 0 err := client.ListRobotApplicationsPages(params, func(page *robomaker.ListRobotApplicationsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *RoboMaker) ListRobotApplicationsPagesWithContext(ctx aws.Context, input *ListRobotApplicationsInput, fn func(*ListRobotApplicationsOutput, bool) bool, opts ...request.Option) error
ListRobotApplicationsPagesWithContext same as ListRobotApplicationsPages 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 (c *RoboMaker) ListRobotApplicationsRequest(input *ListRobotApplicationsInput) (req *request.Request, output *ListRobotApplicationsOutput)
ListRobotApplicationsRequest generates a "aws/request.Request" representing the client's request for the ListRobotApplications operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ListRobotApplications for more information on using the ListRobotApplications API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ListRobotApplicationsRequest method. req, resp := client.ListRobotApplicationsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListRobotApplications
func (c *RoboMaker) ListRobotApplicationsWithContext(ctx aws.Context, input *ListRobotApplicationsInput, opts ...request.Option) (*ListRobotApplicationsOutput, error)
ListRobotApplicationsWithContext is the same as ListRobotApplications with the addition of the ability to pass a context and additional request options.
See ListRobotApplications 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 (c *RoboMaker) ListRobots(input *ListRobotsInput) (*ListRobotsOutput, error)
ListRobots API operation for AWS RoboMaker.
Returns a list of robots. You can optionally provide filters to retrieve specific robots.
This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.
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 RoboMaker's API operation ListRobots for usage and error information.
Returned Error Types:
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListRobots
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListRobotsPages(input *ListRobotsInput, fn func(*ListRobotsOutput, bool) bool) error
ListRobotsPages iterates over the pages of a ListRobots operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListRobots 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 ListRobots operation. pageNum := 0 err := client.ListRobotsPages(params, func(page *robomaker.ListRobotsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListRobotsPagesWithContext(ctx aws.Context, input *ListRobotsInput, fn func(*ListRobotsOutput, bool) bool, opts ...request.Option) error
ListRobotsPagesWithContext same as ListRobotsPages 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.
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListRobotsRequest(input *ListRobotsInput) (req *request.Request, output *ListRobotsOutput)
ListRobotsRequest generates a "aws/request.Request" representing the client's request for the ListRobots operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ListRobots for more information on using the ListRobots API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ListRobotsRequest method. req, resp := client.ListRobotsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListRobots
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListRobotsWithContext(ctx aws.Context, input *ListRobotsInput, opts ...request.Option) (*ListRobotsOutput, error)
ListRobotsWithContext is the same as ListRobots with the addition of the ability to pass a context and additional request options.
See ListRobots 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.
Deprecated: Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html.
func (c *RoboMaker) ListSimulationApplications(input *ListSimulationApplicationsInput) (*ListSimulationApplicationsOutput, error)
ListSimulationApplications API operation for AWS RoboMaker.
Returns a list of simulation applications. You can optionally provide filters to retrieve specific simulation applications.
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 RoboMaker's API operation ListSimulationApplications for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationApplications
func (c *RoboMaker) ListSimulationApplicationsPages(input *ListSimulationApplicationsInput, fn func(*ListSimulationApplicationsOutput, bool) bool) error
ListSimulationApplicationsPages iterates over the pages of a ListSimulationApplications operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListSimulationApplications 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 ListSimulationApplications operation. pageNum := 0 err := client.ListSimulationApplicationsPages(params, func(page *robomaker.ListSimulationApplicationsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *RoboMaker) ListSimulationApplicationsPagesWithContext(ctx aws.Context, input *ListSimulationApplicationsInput, fn func(*ListSimulationApplicationsOutput, bool) bool, opts ...request.Option) error
ListSimulationApplicationsPagesWithContext same as ListSimulationApplicationsPages 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 (c *RoboMaker) ListSimulationApplicationsRequest(input *ListSimulationApplicationsInput) (req *request.Request, output *ListSimulationApplicationsOutput)
ListSimulationApplicationsRequest generates a "aws/request.Request" representing the client's request for the ListSimulationApplications operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ListSimulationApplications for more information on using the ListSimulationApplications API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ListSimulationApplicationsRequest method. req, resp := client.ListSimulationApplicationsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationApplications
func (c *RoboMaker) ListSimulationApplicationsWithContext(ctx aws.Context, input *ListSimulationApplicationsInput, opts ...request.Option) (*ListSimulationApplicationsOutput, error)
ListSimulationApplicationsWithContext is the same as ListSimulationApplications with the addition of the ability to pass a context and additional request options.
See ListSimulationApplications 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 (c *RoboMaker) ListSimulationJobBatches(input *ListSimulationJobBatchesInput) (*ListSimulationJobBatchesOutput, error)
ListSimulationJobBatches API operation for AWS RoboMaker.
Returns a list simulation job batches. You can optionally provide filters to retrieve specific simulation batch jobs.
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 RoboMaker's API operation ListSimulationJobBatches for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationJobBatches
func (c *RoboMaker) ListSimulationJobBatchesPages(input *ListSimulationJobBatchesInput, fn func(*ListSimulationJobBatchesOutput, bool) bool) error
ListSimulationJobBatchesPages iterates over the pages of a ListSimulationJobBatches operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListSimulationJobBatches 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 ListSimulationJobBatches operation. pageNum := 0 err := client.ListSimulationJobBatchesPages(params, func(page *robomaker.ListSimulationJobBatchesOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *RoboMaker) ListSimulationJobBatchesPagesWithContext(ctx aws.Context, input *ListSimulationJobBatchesInput, fn func(*ListSimulationJobBatchesOutput, bool) bool, opts ...request.Option) error
ListSimulationJobBatchesPagesWithContext same as ListSimulationJobBatchesPages 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 (c *RoboMaker) ListSimulationJobBatchesRequest(input *ListSimulationJobBatchesInput) (req *request.Request, output *ListSimulationJobBatchesOutput)
ListSimulationJobBatchesRequest generates a "aws/request.Request" representing the client's request for the ListSimulationJobBatches operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ListSimulationJobBatches for more information on using the ListSimulationJobBatches API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ListSimulationJobBatchesRequest method. req, resp := client.ListSimulationJobBatchesRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationJobBatches
func (c *RoboMaker) ListSimulationJobBatchesWithContext(ctx aws.Context, input *ListSimulationJobBatchesInput, opts ...request.Option) (*ListSimulationJobBatchesOutput, error)
ListSimulationJobBatchesWithContext is the same as ListSimulationJobBatches with the addition of the ability to pass a context and additional request options.
See ListSimulationJobBatches 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 (c *RoboMaker) ListSimulationJobs(input *ListSimulationJobsInput) (*ListSimulationJobsOutput, error)
ListSimulationJobs API operation for AWS RoboMaker.
Returns a list of simulation jobs. You can optionally provide filters to retrieve specific simulation jobs.
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 RoboMaker's API operation ListSimulationJobs for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationJobs
func (c *RoboMaker) ListSimulationJobsPages(input *ListSimulationJobsInput, fn func(*ListSimulationJobsOutput, bool) bool) error
ListSimulationJobsPages iterates over the pages of a ListSimulationJobs operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListSimulationJobs 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 ListSimulationJobs operation. pageNum := 0 err := client.ListSimulationJobsPages(params, func(page *robomaker.ListSimulationJobsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *RoboMaker) ListSimulationJobsPagesWithContext(ctx aws.Context, input *ListSimulationJobsInput, fn func(*ListSimulationJobsOutput, bool) bool, opts ...request.Option) error
ListSimulationJobsPagesWithContext same as ListSimulationJobsPages 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 (c *RoboMaker) ListSimulationJobsRequest(input *ListSimulationJobsInput) (req *request.Request, output *ListSimulationJobsOutput)
ListSimulationJobsRequest generates a "aws/request.Request" representing the client's request for the ListSimulationJobs operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ListSimulationJobs for more information on using the ListSimulationJobs API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ListSimulationJobsRequest method. req, resp := client.ListSimulationJobsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationJobs
func (c *RoboMaker) ListSimulationJobsWithContext(ctx aws.Context, input *ListSimulationJobsInput, opts ...request.Option) (*ListSimulationJobsOutput, error)
ListSimulationJobsWithContext is the same as ListSimulationJobs with the addition of the ability to pass a context and additional request options.
See ListSimulationJobs 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 (c *RoboMaker) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)
ListTagsForResource API operation for AWS RoboMaker.
Lists all tags on a AWS RoboMaker resource.
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 RoboMaker's API operation ListTagsForResource for usage and error information.
Returned Error Types:
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ResourceNotFoundException The specified resource does not exist.
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListTagsForResource
func (c *RoboMaker) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput)
ListTagsForResourceRequest generates a "aws/request.Request" representing the client's request for the ListTagsForResource operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ListTagsForResource for more information on using the ListTagsForResource API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ListTagsForResourceRequest method. req, resp := client.ListTagsForResourceRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListTagsForResource
func (c *RoboMaker) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)
ListTagsForResourceWithContext is the same as ListTagsForResource with the addition of the ability to pass a context and additional request options.
See ListTagsForResource 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 (c *RoboMaker) ListWorldExportJobs(input *ListWorldExportJobsInput) (*ListWorldExportJobsOutput, error)
ListWorldExportJobs API operation for AWS RoboMaker.
Lists world export jobs.
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 RoboMaker's API operation ListWorldExportJobs for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldExportJobs
func (c *RoboMaker) ListWorldExportJobsPages(input *ListWorldExportJobsInput, fn func(*ListWorldExportJobsOutput, bool) bool) error
ListWorldExportJobsPages iterates over the pages of a ListWorldExportJobs operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListWorldExportJobs 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 ListWorldExportJobs operation. pageNum := 0 err := client.ListWorldExportJobsPages(params, func(page *robomaker.ListWorldExportJobsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *RoboMaker) ListWorldExportJobsPagesWithContext(ctx aws.Context, input *ListWorldExportJobsInput, fn func(*ListWorldExportJobsOutput, bool) bool, opts ...request.Option) error
ListWorldExportJobsPagesWithContext same as ListWorldExportJobsPages 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 (c *RoboMaker) ListWorldExportJobsRequest(input *ListWorldExportJobsInput) (req *request.Request, output *ListWorldExportJobsOutput)
ListWorldExportJobsRequest generates a "aws/request.Request" representing the client's request for the ListWorldExportJobs operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ListWorldExportJobs for more information on using the ListWorldExportJobs API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ListWorldExportJobsRequest method. req, resp := client.ListWorldExportJobsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldExportJobs
func (c *RoboMaker) ListWorldExportJobsWithContext(ctx aws.Context, input *ListWorldExportJobsInput, opts ...request.Option) (*ListWorldExportJobsOutput, error)
ListWorldExportJobsWithContext is the same as ListWorldExportJobs with the addition of the ability to pass a context and additional request options.
See ListWorldExportJobs 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 (c *RoboMaker) ListWorldGenerationJobs(input *ListWorldGenerationJobsInput) (*ListWorldGenerationJobsOutput, error)
ListWorldGenerationJobs API operation for AWS RoboMaker.
Lists world generator jobs.
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 RoboMaker's API operation ListWorldGenerationJobs for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldGenerationJobs
func (c *RoboMaker) ListWorldGenerationJobsPages(input *ListWorldGenerationJobsInput, fn func(*ListWorldGenerationJobsOutput, bool) bool) error
ListWorldGenerationJobsPages iterates over the pages of a ListWorldGenerationJobs operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListWorldGenerationJobs 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 ListWorldGenerationJobs operation. pageNum := 0 err := client.ListWorldGenerationJobsPages(params, func(page *robomaker.ListWorldGenerationJobsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *RoboMaker) ListWorldGenerationJobsPagesWithContext(ctx aws.Context, input *ListWorldGenerationJobsInput, fn func(*ListWorldGenerationJobsOutput, bool) bool, opts ...request.Option) error
ListWorldGenerationJobsPagesWithContext same as ListWorldGenerationJobsPages 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 (c *RoboMaker) ListWorldGenerationJobsRequest(input *ListWorldGenerationJobsInput) (req *request.Request, output *ListWorldGenerationJobsOutput)
ListWorldGenerationJobsRequest generates a "aws/request.Request" representing the client's request for the ListWorldGenerationJobs operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ListWorldGenerationJobs for more information on using the ListWorldGenerationJobs API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ListWorldGenerationJobsRequest method. req, resp := client.ListWorldGenerationJobsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldGenerationJobs
func (c *RoboMaker) ListWorldGenerationJobsWithContext(ctx aws.Context, input *ListWorldGenerationJobsInput, opts ...request.Option) (*ListWorldGenerationJobsOutput, error)
ListWorldGenerationJobsWithContext is the same as ListWorldGenerationJobs with the addition of the ability to pass a context and additional request options.
See ListWorldGenerationJobs 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 (c *RoboMaker) ListWorldTemplates(input *ListWorldTemplatesInput) (*ListWorldTemplatesOutput, error)
ListWorldTemplates API operation for AWS RoboMaker.
Lists world templates.
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 RoboMaker's API operation ListWorldTemplates for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldTemplates
func (c *RoboMaker) ListWorldTemplatesPages(input *ListWorldTemplatesInput, fn func(*ListWorldTemplatesOutput, bool) bool) error
ListWorldTemplatesPages iterates over the pages of a ListWorldTemplates operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListWorldTemplates 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 ListWorldTemplates operation. pageNum := 0 err := client.ListWorldTemplatesPages(params, func(page *robomaker.ListWorldTemplatesOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *RoboMaker) ListWorldTemplatesPagesWithContext(ctx aws.Context, input *ListWorldTemplatesInput, fn func(*ListWorldTemplatesOutput, bool) bool, opts ...request.Option) error
ListWorldTemplatesPagesWithContext same as ListWorldTemplatesPages 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 (c *RoboMaker) ListWorldTemplatesRequest(input *ListWorldTemplatesInput) (req *request.Request, output *ListWorldTemplatesOutput)
ListWorldTemplatesRequest generates a "aws/request.Request" representing the client's request for the ListWorldTemplates operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ListWorldTemplates for more information on using the ListWorldTemplates API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ListWorldTemplatesRequest method. req, resp := client.ListWorldTemplatesRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldTemplates
func (c *RoboMaker) ListWorldTemplatesWithContext(ctx aws.Context, input *ListWorldTemplatesInput, opts ...request.Option) (*ListWorldTemplatesOutput, error)
ListWorldTemplatesWithContext is the same as ListWorldTemplates with the addition of the ability to pass a context and additional request options.
See ListWorldTemplates 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 (c *RoboMaker) ListWorlds(input *ListWorldsInput) (*ListWorldsOutput, error)
ListWorlds API operation for AWS RoboMaker.
Lists worlds.
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 RoboMaker's API operation ListWorlds for usage and error information.
Returned Error Types:
InvalidParameterException A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ThrottlingException AWS RoboMaker is temporarily unable to process the request. Try your call again.
InternalServerException AWS RoboMaker experienced a service issue. Try your call again.
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorlds
func (c *RoboMaker) ListWorldsPages(input *ListWorldsInput, fn func(*ListWorldsOutput, bool) bool) error
ListWorldsPages iterates over the pages of a ListWorlds operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See ListWorlds 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 ListWorlds operation. pageNum := 0 err := client.ListWorldsPages(params, func(page *robomaker.ListWorldsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *RoboMaker) ListWorldsPagesWithContext(ctx aws.Context, input *ListWorldsInput, fn func(*ListWorldsOutput, bool) bool, opts ...request.Option) error
ListWorldsPagesWithContext same as ListWorldsPages 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 (c *RoboMaker) ListWorldsRequest(input *ListWorldsInput) (req *request.Request, output *ListWorldsOutput)
ListWorldsRequest generates a "aws/request.Request" representing the client's request for the ListWorlds operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ListWorlds for more information on using the ListWorlds API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ListWorldsRequest method. req, resp := client.ListWorldsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorlds
func (c *RoboMaker) ListWorldsWithContext(ctx aws.Context, input *ListWorldsInput, opts ...request.Option) (*ListWorldsOutput, error)
ListWorldsWithContext is the same as ListWorlds with the addition of the ability to pass a context and additional request options.
See ListWorlds 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 (c *RoboMaker) RegisterRobot(input *RegisterRobotInput) (*RegisterRobotOutput, error)
RegisterRobot API operation for AWS RoboMaker.
Registers a robot wit