Documentation ¶
Overview ¶
Package simspaceweaver provides the API client, operations, and parameter types for AWS SimSpace Weaver.
SimSpace Weaver (SimSpace Weaver) is a service that you can use to build and run large-scale spatial simulations in the Amazon Web Services Cloud. For example, you can create crowd simulations, large real-world environments, and immersive and interactive experiences. For more information about SimSpace Weaver, see the SimSpace Weaver User Guide.
This API reference describes the API operations and data types that you can use to communicate directly with SimSpace Weaver.
SimSpace Weaver also provides the SimSpace Weaver app SDK, which you use for app development. The SimSpace Weaver app SDK API reference is included in the SimSpace Weaver app SDK documentation. This documentation is part of the SimSpace Weaver app SDK distributable package.
Index ¶
- Constants
- func NewDefaultEndpointResolver() *internalendpoints.Resolver
- func WithAPIOptions(optFns ...func(*middleware.Stack) error) func(*Options)
- func WithEndpointResolver(v EndpointResolver) func(*Options)deprecated
- func WithEndpointResolverV2(v EndpointResolverV2) func(*Options)
- func WithSigV4SigningName(name string) func(*Options)
- func WithSigV4SigningRegion(region string) func(*Options)
- type AuthResolverParameters
- type AuthSchemeResolver
- type Client
- func (c *Client) CreateSnapshot(ctx context.Context, params *CreateSnapshotInput, optFns ...func(*Options)) (*CreateSnapshotOutput, error)
- func (c *Client) DeleteApp(ctx context.Context, params *DeleteAppInput, optFns ...func(*Options)) (*DeleteAppOutput, error)
- func (c *Client) DeleteSimulation(ctx context.Context, params *DeleteSimulationInput, optFns ...func(*Options)) (*DeleteSimulationOutput, error)
- func (c *Client) DescribeApp(ctx context.Context, params *DescribeAppInput, optFns ...func(*Options)) (*DescribeAppOutput, error)
- func (c *Client) DescribeSimulation(ctx context.Context, params *DescribeSimulationInput, optFns ...func(*Options)) (*DescribeSimulationOutput, error)
- func (c *Client) ListApps(ctx context.Context, params *ListAppsInput, optFns ...func(*Options)) (*ListAppsOutput, error)
- func (c *Client) ListSimulations(ctx context.Context, params *ListSimulationsInput, optFns ...func(*Options)) (*ListSimulationsOutput, error)
- func (c *Client) ListTagsForResource(ctx context.Context, params *ListTagsForResourceInput, ...) (*ListTagsForResourceOutput, error)
- func (c *Client) Options() Options
- func (c *Client) StartApp(ctx context.Context, params *StartAppInput, optFns ...func(*Options)) (*StartAppOutput, error)
- func (c *Client) StartClock(ctx context.Context, params *StartClockInput, optFns ...func(*Options)) (*StartClockOutput, error)
- func (c *Client) StartSimulation(ctx context.Context, params *StartSimulationInput, optFns ...func(*Options)) (*StartSimulationOutput, error)
- func (c *Client) StopApp(ctx context.Context, params *StopAppInput, optFns ...func(*Options)) (*StopAppOutput, error)
- func (c *Client) StopClock(ctx context.Context, params *StopClockInput, optFns ...func(*Options)) (*StopClockOutput, error)
- func (c *Client) StopSimulation(ctx context.Context, params *StopSimulationInput, optFns ...func(*Options)) (*StopSimulationOutput, error)
- func (c *Client) TagResource(ctx context.Context, params *TagResourceInput, optFns ...func(*Options)) (*TagResourceOutput, error)
- func (c *Client) UntagResource(ctx context.Context, params *UntagResourceInput, optFns ...func(*Options)) (*UntagResourceOutput, error)
- type CreateSnapshotInput
- type CreateSnapshotOutput
- type DeleteAppInput
- type DeleteAppOutput
- type DeleteSimulationInput
- type DeleteSimulationOutput
- type DescribeAppInput
- type DescribeAppOutput
- type DescribeSimulationInput
- type DescribeSimulationOutput
- type EndpointParameters
- type EndpointResolver
- type EndpointResolverFunc
- type EndpointResolverOptions
- type EndpointResolverV2
- type HTTPClient
- type HTTPSignerV4
- type IdempotencyTokenProvider
- type ListAppsAPIClient
- type ListAppsInput
- type ListAppsOutput
- type ListAppsPaginator
- type ListAppsPaginatorOptions
- type ListSimulationsAPIClient
- type ListSimulationsInput
- type ListSimulationsOutput
- type ListSimulationsPaginator
- type ListSimulationsPaginatorOptions
- type ListTagsForResourceInput
- type ListTagsForResourceOutput
- type Options
- type ResolveEndpoint
- type StartAppInput
- type StartAppOutput
- type StartClockInput
- type StartClockOutput
- type StartSimulationInput
- type StartSimulationOutput
- type StopAppInput
- type StopAppOutput
- type StopClockInput
- type StopClockOutput
- type StopSimulationInput
- type StopSimulationOutput
- type TagResourceInput
- type TagResourceOutput
- type UntagResourceInput
- type UntagResourceOutput
Constants ¶
const ServiceAPIVersion = "2022-10-28"
const ServiceID = "SimSpaceWeaver"
Variables ¶
This section is empty.
Functions ¶
func NewDefaultEndpointResolver ¶
func NewDefaultEndpointResolver() *internalendpoints.Resolver
NewDefaultEndpointResolver constructs a new service endpoint resolver
func WithAPIOptions ¶
func WithAPIOptions(optFns ...func(*middleware.Stack) error) func(*Options)
WithAPIOptions returns a functional option for setting the Client's APIOptions option.
func WithEndpointResolver
deprecated
func WithEndpointResolver(v EndpointResolver) func(*Options)
Deprecated: EndpointResolver and WithEndpointResolver. Providing a value for this field will likely prevent you from using any endpoint-related service features released after the introduction of EndpointResolverV2 and BaseEndpoint.
To migrate an EndpointResolver implementation that uses a custom endpoint, set the client option BaseEndpoint instead.
func WithEndpointResolverV2 ¶ added in v1.4.0
func WithEndpointResolverV2(v EndpointResolverV2) func(*Options)
WithEndpointResolverV2 returns a functional option for setting the Client's EndpointResolverV2 option.
func WithSigV4SigningName ¶ added in v1.7.2
WithSigV4SigningName applies an override to the authentication workflow to use the given signing name for SigV4-authenticated operations.
This is an advanced setting. The value here is FINAL, taking precedence over the resolved signing name from both auth scheme resolution and endpoint resolution.
func WithSigV4SigningRegion ¶ added in v1.7.2
WithSigV4SigningRegion applies an override to the authentication workflow to use the given signing region for SigV4-authenticated operations.
This is an advanced setting. The value here is FINAL, taking precedence over the resolved signing region from both auth scheme resolution and endpoint resolution.
Types ¶
type AuthResolverParameters ¶ added in v1.7.2
type AuthResolverParameters struct { // The name of the operation being invoked. Operation string // The region in which the operation is being invoked. Region string }
AuthResolverParameters contains the set of inputs necessary for auth scheme resolution.
type AuthSchemeResolver ¶ added in v1.7.2
type AuthSchemeResolver interface {
ResolveAuthSchemes(context.Context, *AuthResolverParameters) ([]*smithyauth.Option, error)
}
AuthSchemeResolver returns a set of possible authentication options for an operation.
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client provides the API client to make operations call for AWS SimSpace Weaver.
func New ¶
New returns an initialized Client based on the functional options. Provide additional functional options to further configure the behavior of the client, such as changing the client's endpoint or adding custom middleware behavior.
func NewFromConfig ¶
NewFromConfig returns a new client from the provided config.
func (*Client) CreateSnapshot ¶ added in v1.2.0
func (c *Client) CreateSnapshot(ctx context.Context, params *CreateSnapshotInput, optFns ...func(*Options)) (*CreateSnapshotOutput, error)
Creates a snapshot of the specified simulation. A snapshot is a file that contains simulation state data at a specific time. The state data saved in a snapshot includes entity data from the State Fabric, the simulation configuration specified in the schema, and the clock tick number. You can use the snapshot to initialize a new simulation. For more information about snapshots, see Snapshotsin the SimSpace Weaver User Guide.
You specify a Destination when you create a snapshot. The Destination is the name of an Amazon S3 bucket and an optional ObjectKeyPrefix . The ObjectKeyPrefix is usually the name of a folder in the bucket. SimSpace Weaver creates a snapshot folder inside the Destination and places the snapshot file there.
The snapshot file is an Amazon S3 object. It has an object key with the form: object-key-prefix/snapshot/simulation-name-YYMMdd-HHmm-ss.zip , where:
YY is the 2-digit year
MM is the 2-digit month
dd is the 2-digit day of the month
HH is the 2-digit hour (24-hour clock)
mm is the 2-digit minutes
ss is the 2-digit seconds
func (*Client) DeleteApp ¶
func (c *Client) DeleteApp(ctx context.Context, params *DeleteAppInput, optFns ...func(*Options)) (*DeleteAppOutput, error)
Deletes the instance of the given custom app.
func (*Client) DeleteSimulation ¶
func (c *Client) DeleteSimulation(ctx context.Context, params *DeleteSimulationInput, optFns ...func(*Options)) (*DeleteSimulationOutput, error)
Deletes all SimSpace Weaver resources assigned to the given simulation.
Your simulation uses resources in other Amazon Web Services. This API operation doesn't delete resources in other Amazon Web Services.
func (*Client) DescribeApp ¶
func (c *Client) DescribeApp(ctx context.Context, params *DescribeAppInput, optFns ...func(*Options)) (*DescribeAppOutput, error)
Returns the state of the given custom app.
func (*Client) DescribeSimulation ¶
func (c *Client) DescribeSimulation(ctx context.Context, params *DescribeSimulationInput, optFns ...func(*Options)) (*DescribeSimulationOutput, error)
Returns the current state of the given simulation.
func (*Client) ListApps ¶
func (c *Client) ListApps(ctx context.Context, params *ListAppsInput, optFns ...func(*Options)) (*ListAppsOutput, error)
Lists all custom apps or service apps for the given simulation and domain.
func (*Client) ListSimulations ¶
func (c *Client) ListSimulations(ctx context.Context, params *ListSimulationsInput, optFns ...func(*Options)) (*ListSimulationsOutput, error)
Lists the SimSpace Weaver simulations in the Amazon Web Services account used to make the API call.
func (*Client) ListTagsForResource ¶
func (c *Client) ListTagsForResource(ctx context.Context, params *ListTagsForResourceInput, optFns ...func(*Options)) (*ListTagsForResourceOutput, error)
Lists all tags on a SimSpace Weaver resource.
func (*Client) Options ¶ added in v1.8.0
Options returns a copy of the client configuration.
Callers SHOULD NOT perform mutations on any inner structures within client config. Config overrides should instead be made on a per-operation basis through functional options.
func (*Client) StartApp ¶
func (c *Client) StartApp(ctx context.Context, params *StartAppInput, optFns ...func(*Options)) (*StartAppOutput, error)
Starts a custom app with the configuration specified in the simulation schema.
func (*Client) StartClock ¶
func (c *Client) StartClock(ctx context.Context, params *StartClockInput, optFns ...func(*Options)) (*StartClockOutput, error)
Starts the simulation clock.
func (*Client) StartSimulation ¶
func (c *Client) StartSimulation(ctx context.Context, params *StartSimulationInput, optFns ...func(*Options)) (*StartSimulationOutput, error)
Starts a simulation with the given name. You must choose to start your simulation from a schema or from a snapshot. For more information about the schema, see the schema referencein the SimSpace Weaver User Guide. For more information about snapshots, see Snapshotsin the SimSpace Weaver User Guide.
func (*Client) StopApp ¶
func (c *Client) StopApp(ctx context.Context, params *StopAppInput, optFns ...func(*Options)) (*StopAppOutput, error)
Stops the given custom app and shuts down all of its allocated compute resources.
func (*Client) StopClock ¶
func (c *Client) StopClock(ctx context.Context, params *StopClockInput, optFns ...func(*Options)) (*StopClockOutput, error)
Stops the simulation clock.
func (*Client) StopSimulation ¶
func (c *Client) StopSimulation(ctx context.Context, params *StopSimulationInput, optFns ...func(*Options)) (*StopSimulationOutput, error)
Stops the given simulation.
You can't restart a simulation after you stop it. If you want to restart a simulation, then you must stop it, delete it, and start a new instance of it.
func (*Client) TagResource ¶
func (c *Client) TagResource(ctx context.Context, params *TagResourceInput, optFns ...func(*Options)) (*TagResourceOutput, error)
Adds tags to a SimSpace Weaver resource. For more information about tags, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference.
func (*Client) UntagResource ¶
func (c *Client) UntagResource(ctx context.Context, params *UntagResourceInput, optFns ...func(*Options)) (*UntagResourceOutput, error)
Removes tags from a SimSpace Weaver resource. For more information about tags, see Tagging Amazon Web Services resourcesin the Amazon Web Services General Reference.
type CreateSnapshotInput ¶ added in v1.2.0
type CreateSnapshotInput struct { // The Amazon S3 bucket and optional folder (object key prefix) where SimSpace // Weaver creates the snapshot file. // // The Amazon S3 bucket must be in the same Amazon Web Services Region as the // simulation. // // This member is required. Destination *types.S3Destination // The name of the simulation. // // This member is required. Simulation *string // contains filtered or unexported fields }
type CreateSnapshotOutput ¶ added in v1.2.0
type CreateSnapshotOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DeleteAppInput ¶
type DeleteAppInput struct { // The name of the app. // // This member is required. App *string // The name of the domain of the app. // // This member is required. Domain *string // The name of the simulation of the app. // // This member is required. Simulation *string // contains filtered or unexported fields }
type DeleteAppOutput ¶
type DeleteAppOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DeleteSimulationInput ¶
type DeleteSimulationInput struct { // The name of the simulation. // // This member is required. Simulation *string // contains filtered or unexported fields }
type DeleteSimulationOutput ¶
type DeleteSimulationOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DescribeAppInput ¶
type DescribeAppInput struct { // The name of the app. // // This member is required. App *string // The name of the domain of the app. // // This member is required. Domain *string // The name of the simulation of the app. // // This member is required. Simulation *string // contains filtered or unexported fields }
type DescribeAppOutput ¶
type DescribeAppOutput struct { // The description of the app. Description *string // The name of the domain of the app. Domain *string // Information about the network endpoint for the custom app. You can use the // endpoint to connect to the custom app. EndpointInfo *types.SimulationAppEndpointInfo // Options that apply when the app starts. These options override default behavior. LaunchOverrides *types.LaunchOverrides // The name of the app. Name *string // The name of the simulation of the app. Simulation *string // The current lifecycle state of the custom app. Status types.SimulationAppStatus // The desired lifecycle state of the custom app. TargetStatus types.SimulationAppTargetStatus // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DescribeSimulationInput ¶
type DescribeSimulationInput struct { // The name of the simulation. // // This member is required. Simulation *string // contains filtered or unexported fields }
type DescribeSimulationOutput ¶
type DescribeSimulationOutput struct { // The Amazon Resource Name (ARN) of the simulation. For more information about // ARNs, see [Amazon Resource Names (ARNs)]in the Amazon Web Services General Reference. // // [Amazon Resource Names (ARNs)]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html Arn *string // The time when the simulation was created, expressed as the number of seconds // and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970). CreationTime *time.Time // The description of the simulation. Description *string // A universally unique identifier (UUID) for this simulation. ExecutionId *string // A collection of additional state information, such as domain and clock // configuration. LiveSimulationState *types.LiveSimulationState // Settings that control how SimSpace Weaver handles your simulation log data. LoggingConfiguration *types.LoggingConfiguration // The maximum running time of the simulation, specified as a number of minutes (m // or M), hours (h or H), or days (d or D). The simulation stops when it reaches // this limit. The maximum value is 14D , or its equivalent in the other units. The // default value is 14D . A value equivalent to 0 makes the simulation immediately // transition to Stopping as soon as it reaches Started . MaximumDuration *string // The name of the simulation. Name *string // The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role // that the simulation assumes to perform actions. For more information about ARNs, // see [Amazon Resource Names (ARNs)]in the Amazon Web Services General Reference. For more information about // IAM roles, see [IAM roles]in the Identity and Access Management User Guide. // // [IAM roles]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html // [Amazon Resource Names (ARNs)]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html RoleArn *string // An error message that SimSpace Weaver returns only if there is a problem with // the simulation schema. // // Deprecated: SchemaError is no longer used, check StartError instead. SchemaError *string // The location of the simulation schema in Amazon Simple Storage Service (Amazon // S3). For more information about Amazon S3, see the [Amazon Simple Storage Service User Guide]. // // [Amazon Simple Storage Service User Guide]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html SchemaS3Location *types.S3Location // A location in Amazon Simple Storage Service (Amazon S3) where SimSpace Weaver // stores simulation data, such as your app .zip files and schema file. For more // information about Amazon S3, see the [Amazon Simple Storage Service User Guide]. // // [Amazon Simple Storage Service User Guide]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html SnapshotS3Location *types.S3Location // An error message that SimSpace Weaver returns only if a problem occurs when the // simulation is in the STARTING state. StartError *string // The current lifecycle state of the simulation. Status types.SimulationStatus // The desired lifecycle state of the simulation. TargetStatus types.SimulationTargetStatus // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type EndpointParameters ¶ added in v1.4.0
type EndpointParameters struct { // The AWS region used to dispatch the request. // // Parameter is // required. // // AWS::Region Region *string // When true, use the dual-stack endpoint. If the configured endpoint does not // support dual-stack, dispatching the request MAY return an error. // // Defaults to // false if no value is provided. // // AWS::UseDualStack UseDualStack *bool // When true, send this request to the FIPS-compliant regional endpoint. If the // configured endpoint does not have a FIPS compliant endpoint, dispatching the // request will return an error. // // Defaults to false if no value is // provided. // // AWS::UseFIPS UseFIPS *bool // Override the endpoint used to send this request // // Parameter is // required. // // SDK::Endpoint Endpoint *string }
EndpointParameters provides the parameters that influence how endpoints are resolved.
func (EndpointParameters) ValidateRequired ¶ added in v1.4.0
func (p EndpointParameters) ValidateRequired() error
ValidateRequired validates required parameters are set.
func (EndpointParameters) WithDefaults ¶ added in v1.4.0
func (p EndpointParameters) WithDefaults() EndpointParameters
WithDefaults returns a shallow copy of EndpointParameterswith default values applied to members where applicable.
type EndpointResolver ¶
type EndpointResolver interface {
ResolveEndpoint(region string, options EndpointResolverOptions) (aws.Endpoint, error)
}
EndpointResolver interface for resolving service endpoints.
func EndpointResolverFromURL ¶
func EndpointResolverFromURL(url string, optFns ...func(*aws.Endpoint)) EndpointResolver
EndpointResolverFromURL returns an EndpointResolver configured using the provided endpoint url. By default, the resolved endpoint resolver uses the client region as signing region, and the endpoint source is set to EndpointSourceCustom.You can provide functional options to configure endpoint values for the resolved endpoint.
type EndpointResolverFunc ¶
type EndpointResolverFunc func(region string, options EndpointResolverOptions) (aws.Endpoint, error)
EndpointResolverFunc is a helper utility that wraps a function so it satisfies the EndpointResolver interface. This is useful when you want to add additional endpoint resolving logic, or stub out specific endpoints with custom values.
func (EndpointResolverFunc) ResolveEndpoint ¶
func (fn EndpointResolverFunc) ResolveEndpoint(region string, options EndpointResolverOptions) (endpoint aws.Endpoint, err error)
type EndpointResolverOptions ¶
type EndpointResolverOptions = internalendpoints.Options
EndpointResolverOptions is the service endpoint resolver options
type EndpointResolverV2 ¶ added in v1.4.0
type EndpointResolverV2 interface { // ResolveEndpoint attempts to resolve the endpoint with the provided options, // returning the endpoint if found. Otherwise an error is returned. ResolveEndpoint(ctx context.Context, params EndpointParameters) ( smithyendpoints.Endpoint, error, ) }
EndpointResolverV2 provides the interface for resolving service endpoints.
func NewDefaultEndpointResolverV2 ¶ added in v1.4.0
func NewDefaultEndpointResolverV2() EndpointResolverV2
type HTTPSignerV4 ¶
type IdempotencyTokenProvider ¶
IdempotencyTokenProvider interface for providing idempotency token
type ListAppsAPIClient ¶
type ListAppsAPIClient interface {
ListApps(context.Context, *ListAppsInput, ...func(*Options)) (*ListAppsOutput, error)
}
ListAppsAPIClient is a client that implements the ListApps operation.
type ListAppsInput ¶
type ListAppsInput struct { // The name of the simulation that you want to list apps for. // // This member is required. Simulation *string // The name of the domain that you want to list apps for. Domain *string // The maximum number of apps to list. MaxResults *int32 // If SimSpace Weaver returns nextToken , then there are more results available. // The value of nextToken is a unique pagination token for each page. To retrieve // the next page, call the operation again using the returned token. Keep all other // arguments unchanged. If no results remain, then nextToken is set to null . Each // pagination token expires after 24 hours. If you provide a token that isn't // valid, then you receive an HTTP 400 ValidationException error. NextToken *string // contains filtered or unexported fields }
type ListAppsOutput ¶
type ListAppsOutput struct { // The list of apps for the given simulation and domain. Apps []types.SimulationAppMetadata // If SimSpace Weaver returns nextToken , then there are more results available. // The value of nextToken is a unique pagination token for each page. To retrieve // the next page, call the operation again using the returned token. Keep all other // arguments unchanged. If no results remain, then nextToken is set to null . Each // pagination token expires after 24 hours. If you provide a token that isn't // valid, then you receive an HTTP 400 ValidationException error. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ListAppsPaginator ¶
type ListAppsPaginator struct {
// contains filtered or unexported fields
}
ListAppsPaginator is a paginator for ListApps
func NewListAppsPaginator ¶
func NewListAppsPaginator(client ListAppsAPIClient, params *ListAppsInput, optFns ...func(*ListAppsPaginatorOptions)) *ListAppsPaginator
NewListAppsPaginator returns a new ListAppsPaginator
func (*ListAppsPaginator) HasMorePages ¶
func (p *ListAppsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListAppsPaginator) NextPage ¶
func (p *ListAppsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListAppsOutput, error)
NextPage retrieves the next ListApps page.
type ListAppsPaginatorOptions ¶
type ListAppsPaginatorOptions struct { // The maximum number of apps to list. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListAppsPaginatorOptions is the paginator options for ListApps
type ListSimulationsAPIClient ¶
type ListSimulationsAPIClient interface {
ListSimulations(context.Context, *ListSimulationsInput, ...func(*Options)) (*ListSimulationsOutput, error)
}
ListSimulationsAPIClient is a client that implements the ListSimulations operation.
type ListSimulationsInput ¶
type ListSimulationsInput struct { // The maximum number of simulations to list. MaxResults *int32 // If SimSpace Weaver returns nextToken , then there are more results available. // The value of nextToken is a unique pagination token for each page. To retrieve // the next page, call the operation again using the returned token. Keep all other // arguments unchanged. If no results remain, then nextToken is set to null . Each // pagination token expires after 24 hours. If you provide a token that isn't // valid, then you receive an HTTP 400 ValidationException error. NextToken *string // contains filtered or unexported fields }
type ListSimulationsOutput ¶
type ListSimulationsOutput struct { // If SimSpace Weaver returns nextToken , then there are more results available. // The value of nextToken is a unique pagination token for each page. To retrieve // the next page, call the operation again using the returned token. Keep all other // arguments unchanged. If no results remain, then nextToken is set to null . Each // pagination token expires after 24 hours. If you provide a token that isn't // valid, then you receive an HTTP 400 ValidationException error. NextToken *string // The list of simulations. Simulations []types.SimulationMetadata // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ListSimulationsPaginator ¶
type ListSimulationsPaginator struct {
// contains filtered or unexported fields
}
ListSimulationsPaginator is a paginator for ListSimulations
func NewListSimulationsPaginator ¶
func NewListSimulationsPaginator(client ListSimulationsAPIClient, params *ListSimulationsInput, optFns ...func(*ListSimulationsPaginatorOptions)) *ListSimulationsPaginator
NewListSimulationsPaginator returns a new ListSimulationsPaginator
func (*ListSimulationsPaginator) HasMorePages ¶
func (p *ListSimulationsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListSimulationsPaginator) NextPage ¶
func (p *ListSimulationsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListSimulationsOutput, error)
NextPage retrieves the next ListSimulations page.
type ListSimulationsPaginatorOptions ¶
type ListSimulationsPaginatorOptions struct { // The maximum number of simulations to list. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListSimulationsPaginatorOptions is the paginator options for ListSimulations
type ListTagsForResourceInput ¶
type ListTagsForResourceInput struct { // The Amazon Resource Name (ARN) of the resource. For more information about // ARNs, see [Amazon Resource Names (ARNs)]in the Amazon Web Services General Reference. // // [Amazon Resource Names (ARNs)]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html // // This member is required. ResourceArn *string // contains filtered or unexported fields }
type ListTagsForResourceOutput ¶
type ListTagsForResourceOutput struct { // The list of tags for the resource. Tags map[string]string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type Options ¶
type Options struct { // Set of options to modify how an operation is invoked. These apply to all // operations invoked for this client. Use functional options on operation call to // modify this list for per operation behavior. APIOptions []func(*middleware.Stack) error // The optional application specific identifier appended to the User-Agent header. AppID string // This endpoint will be given as input to an EndpointResolverV2. It is used for // providing a custom base endpoint that is subject to modifications by the // processing EndpointResolverV2. BaseEndpoint *string // Configures the events that will be sent to the configured logger. ClientLogMode aws.ClientLogMode // The credentials object to use when signing requests. Credentials aws.CredentialsProvider // The configuration DefaultsMode that the SDK should use when constructing the // clients initial default settings. DefaultsMode aws.DefaultsMode // The endpoint options to be used when attempting to resolve an endpoint. EndpointOptions EndpointResolverOptions // The service endpoint resolver. // // Deprecated: Deprecated: EndpointResolver and WithEndpointResolver. Providing a // value for this field will likely prevent you from using any endpoint-related // service features released after the introduction of EndpointResolverV2 and // BaseEndpoint. // // To migrate an EndpointResolver implementation that uses a custom endpoint, set // the client option BaseEndpoint instead. EndpointResolver EndpointResolver // Resolves the endpoint used for a particular service operation. This should be // used over the deprecated EndpointResolver. EndpointResolverV2 EndpointResolverV2 // Signature Version 4 (SigV4) Signer HTTPSignerV4 HTTPSignerV4 // Provides idempotency tokens values that will be automatically populated into // idempotent API operations. IdempotencyTokenProvider IdempotencyTokenProvider // The logger writer interface to write logging messages to. Logger logging.Logger // The client meter provider. MeterProvider metrics.MeterProvider // The region to send requests to. (Required) Region string // RetryMaxAttempts specifies the maximum number attempts an API client will call // an operation that fails with a retryable error. A value of 0 is ignored, and // will not be used to configure the API client created default retryer, or modify // per operation call's retry max attempts. // // If specified in an operation call's functional options with a value that is // different than the constructed client's Options, the Client's Retryer will be // wrapped to use the operation's specific RetryMaxAttempts value. RetryMaxAttempts int // RetryMode specifies the retry mode the API client will be created with, if // Retryer option is not also specified. // // When creating a new API Clients this member will only be used if the Retryer // Options member is nil. This value will be ignored if Retryer is not nil. // // Currently does not support per operation call overrides, may in the future. RetryMode aws.RetryMode // Retryer guides how HTTP requests should be retried in case of recoverable // failures. When nil the API client will use a default retryer. The kind of // default retry created by the API client can be changed with the RetryMode // option. Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig . You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The client tracer provider. TracerProvider tracing.TracerProvider // The HTTP client to invoke API calls with. Defaults to client's default HTTP // implementation if nil. HTTPClient HTTPClient // The auth scheme resolver which determines how to authenticate for each // operation. AuthSchemeResolver AuthSchemeResolver // The list of auth schemes supported by the client. AuthSchemes []smithyhttp.AuthScheme // contains filtered or unexported fields }
func (Options) GetIdentityResolver ¶ added in v1.7.2
func (o Options) GetIdentityResolver(schemeID string) smithyauth.IdentityResolver
type ResolveEndpoint ¶
type ResolveEndpoint struct { Resolver EndpointResolver Options EndpointResolverOptions }
func (*ResolveEndpoint) HandleSerialize ¶
func (m *ResolveEndpoint) HandleSerialize(ctx context.Context, in middleware.SerializeInput, next middleware.SerializeHandler) ( out middleware.SerializeOutput, metadata middleware.Metadata, err error, )
func (*ResolveEndpoint) ID ¶
func (*ResolveEndpoint) ID() string
type StartAppInput ¶
type StartAppInput struct { // The name of the domain of the app. // // This member is required. Domain *string // The name of the app. // // This member is required. Name *string // The name of the simulation of the app. // // This member is required. Simulation *string // A value that you provide to ensure that repeated calls to this API operation // using the same parameters complete only once. A ClientToken is also known as an // idempotency token. A ClientToken expires after 24 hours. ClientToken *string // The description of the app. Description *string // Options that apply when the app starts. These options override default behavior. LaunchOverrides *types.LaunchOverrides // contains filtered or unexported fields }
type StartAppOutput ¶
type StartAppOutput struct { // The name of the domain of the app. Domain *string // The name of the app. Name *string // The name of the simulation of the app. Simulation *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type StartClockInput ¶
type StartClockInput struct { // The name of the simulation. // // This member is required. Simulation *string // contains filtered or unexported fields }
type StartClockOutput ¶
type StartClockOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type StartSimulationInput ¶
type StartSimulationInput struct { // The name of the simulation. // // This member is required. Name *string // The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role // that the simulation assumes to perform actions. For more information about ARNs, // see [Amazon Resource Names (ARNs)]in the Amazon Web Services General Reference. For more information about // IAM roles, see [IAM roles]in the Identity and Access Management User Guide. // // [IAM roles]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html // [Amazon Resource Names (ARNs)]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html // // This member is required. RoleArn *string // A value that you provide to ensure that repeated calls to this API operation // using the same parameters complete only once. A ClientToken is also known as an // idempotency token. A ClientToken expires after 24 hours. ClientToken *string // The description of the simulation. Description *string // The maximum running time of the simulation, specified as a number of minutes (m // or M), hours (h or H), or days (d or D). The simulation stops when it reaches // this limit. The maximum value is 14D , or its equivalent in the other units. The // default value is 14D . A value equivalent to 0 makes the simulation immediately // transition to Stopping as soon as it reaches Started . MaximumDuration *string // The location of the simulation schema in Amazon Simple Storage Service (Amazon // S3). For more information about Amazon S3, see the [Amazon Simple Storage Service User Guide]. // // Provide a SchemaS3Location to start your simulation from a schema. // // If you provide a SchemaS3Location then you can't provide a SnapshotS3Location . // // [Amazon Simple Storage Service User Guide]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html SchemaS3Location *types.S3Location // The location of the snapshot .zip file in Amazon Simple Storage Service (Amazon // S3). For more information about Amazon S3, see the [Amazon Simple Storage Service User Guide]. // // Provide a SnapshotS3Location to start your simulation from a snapshot. // // The Amazon S3 bucket must be in the same Amazon Web Services Region as the // simulation. // // If you provide a SnapshotS3Location then you can't provide a SchemaS3Location . // // [Amazon Simple Storage Service User Guide]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html SnapshotS3Location *types.S3Location // A list of tags for the simulation. For more information about tags, see [Tagging Amazon Web Services resources] in the // Amazon Web Services General Reference. // // [Tagging Amazon Web Services resources]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html Tags map[string]string // contains filtered or unexported fields }
type StartSimulationOutput ¶
type StartSimulationOutput struct { // The Amazon Resource Name (ARN) of the simulation. For more information about // ARNs, see [Amazon Resource Names (ARNs)]in the Amazon Web Services General Reference. // // [Amazon Resource Names (ARNs)]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html Arn *string // The time when the simulation was created, expressed as the number of seconds // and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970). CreationTime *time.Time // A universally unique identifier (UUID) for this simulation. ExecutionId *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type StopAppInput ¶
type StopAppInput struct { // The name of the app. // // This member is required. App *string // The name of the domain of the app. // // This member is required. Domain *string // The name of the simulation of the app. // // This member is required. Simulation *string // contains filtered or unexported fields }
type StopAppOutput ¶
type StopAppOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type StopClockInput ¶
type StopClockInput struct { // The name of the simulation. // // This member is required. Simulation *string // contains filtered or unexported fields }
type StopClockOutput ¶
type StopClockOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type StopSimulationInput ¶
type StopSimulationInput struct { // The name of the simulation. // // This member is required. Simulation *string // contains filtered or unexported fields }
type StopSimulationOutput ¶
type StopSimulationOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type TagResourceInput ¶
type TagResourceInput struct { // The Amazon Resource Name (ARN) of the resource that you want to add tags to. // For more information about ARNs, see [Amazon Resource Names (ARNs)]in the Amazon Web Services General // Reference. // // [Amazon Resource Names (ARNs)]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html // // This member is required. ResourceArn *string // A list of tags to apply to the resource. // // This member is required. Tags map[string]string // contains filtered or unexported fields }
type TagResourceOutput ¶
type TagResourceOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type UntagResourceInput ¶
type UntagResourceInput struct { // The Amazon Resource Name (ARN) of the resource that you want to remove tags // from. For more information about ARNs, see [Amazon Resource Names (ARNs)]in the Amazon Web Services General // Reference. // // [Amazon Resource Names (ARNs)]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html // // This member is required. ResourceArn *string // A list of tag keys to remove from the resource. // // This member is required. TagKeys []string // contains filtered or unexported fields }
type UntagResourceOutput ¶
type UntagResourceOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
Source Files ¶
- api_client.go
- api_op_CreateSnapshot.go
- api_op_DeleteApp.go
- api_op_DeleteSimulation.go
- api_op_DescribeApp.go
- api_op_DescribeSimulation.go
- api_op_ListApps.go
- api_op_ListSimulations.go
- api_op_ListTagsForResource.go
- api_op_StartApp.go
- api_op_StartClock.go
- api_op_StartSimulation.go
- api_op_StopApp.go
- api_op_StopClock.go
- api_op_StopSimulation.go
- api_op_TagResource.go
- api_op_UntagResource.go
- auth.go
- deserializers.go
- doc.go
- endpoints.go
- go_module_metadata.go
- options.go
- serializers.go
- validators.go