Batch Get Blueprints
| glue_batch_get_blueprints | R Documentation | 
Retrieves information about a list of blueprints¶
Description¶
Retrieves information about a list of blueprints.
Usage¶
glue_batch_get_blueprints(Names, IncludeBlueprint, IncludeParameterSpec)
Arguments¶
Names | 
[required] A list of blueprint names.  | 
IncludeBlueprint | 
Specifies whether or not to include the blueprint in the response.  | 
IncludeParameterSpec | 
Specifies whether or not to include the parameters, as a JSON string, for the blueprint in the response.  | 
Value¶
A list with the following syntax:
list(
  Blueprints = list(
    list(
      Name = "string",
      Description = "string",
      CreatedOn = as.POSIXct(
        "2015-01-01"
      ),
      LastModifiedOn = as.POSIXct(
        "2015-01-01"
      ),
      ParameterSpec = "string",
      BlueprintLocation = "string",
      BlueprintServiceLocation = "string",
      Status = "CREATING"|"ACTIVE"|"UPDATING"|"FAILED",
      ErrorMessage = "string",
      LastActiveDefinition = list(
        Description = "string",
        LastModifiedOn = as.POSIXct(
          "2015-01-01"
        ),
        ParameterSpec = "string",
        BlueprintLocation = "string",
        BlueprintServiceLocation = "string"
      )
    )
  ),
  MissingBlueprints = list(
    "string"
  )
)
Request syntax¶
svc$batch_get_blueprints(
  Names = list(
    "string"
  ),
  IncludeBlueprint = TRUE|FALSE,
  IncludeParameterSpec = TRUE|FALSE
)