Outposts

This page documents function available when using the Outposts module, created with @service Outposts.

Index

Documentation

Main.Outposts.create_outpostMethod
create_outpost(name, site_id)
create_outpost(name, site_id, params::Dict{String,<:Any})

Creates an Outpost.

Arguments

  • name:
  • site_id:

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "AvailabilityZone":
  • "AvailabilityZoneId":
  • "Description":
  • "Tags": The tags to apply to the Outpost.
source
Main.Outposts.get_outpostMethod
get_outpost(outpost_id)
get_outpost(outpost_id, params::Dict{String,<:Any})

Gets information about the specified Outpost.

Arguments

  • outpost_id:
source
Main.Outposts.get_outpost_instance_typesMethod
get_outpost_instance_types(outpost_id)
get_outpost_instance_types(outpost_id, params::Dict{String,<:Any})

Lists the instance types for the specified Outpost.

Arguments

  • outpost_id:

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "MaxResults":
  • "NextToken":
source
Main.Outposts.list_outpostsMethod
list_outposts()
list_outposts(params::Dict{String,<:Any})

List the Outposts for your AWS account.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "MaxResults":
  • "NextToken":
source
Main.Outposts.list_sitesMethod
list_sites()
list_sites(params::Dict{String,<:Any})

Lists the sites for the specified AWS account.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "MaxResults":
  • "NextToken":
source
Main.Outposts.list_tags_for_resourceMethod
list_tags_for_resource(resource_arn)
list_tags_for_resource(resource_arn, params::Dict{String,<:Any})

Lists the tags for the specified resource.

Arguments

  • resource_arn: The Amazon Resource Name (ARN) of the resource.
source
Main.Outposts.tag_resourceMethod
tag_resource(resource_arn, tags)
tag_resource(resource_arn, tags, params::Dict{String,<:Any})

Adds tags to the specified resource.

Arguments

  • resource_arn: The Amazon Resource Name (ARN) of the resource.
  • tags: The tags to add to the resource.
source
Main.Outposts.untag_resourceMethod
untag_resource(resource_arn, tag_keys)
untag_resource(resource_arn, tag_keys, params::Dict{String,<:Any})

Removes tags from the specified resource.

Arguments

  • resource_arn: The Amazon Resource Name (ARN) of the resource.
  • tag_keys: The tag keys.
source