Documentation ¶
Overview ¶
Package cloudhsm provides the API client, operations, and parameter types for Amazon CloudHSM.
AWS CloudHSM Service ¶
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
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 AddTagsToResourceInput
- type AddTagsToResourceOutput
- type AuthResolverParameters
- type AuthSchemeResolver
- type Client
- func (c *Client) AddTagsToResource(ctx context.Context, params *AddTagsToResourceInput, optFns ...func(*Options)) (*AddTagsToResourceOutput, error)deprecated
- func (c *Client) CreateHapg(ctx context.Context, params *CreateHapgInput, optFns ...func(*Options)) (*CreateHapgOutput, error)deprecated
- func (c *Client) CreateHsm(ctx context.Context, params *CreateHsmInput, optFns ...func(*Options)) (*CreateHsmOutput, error)deprecated
- func (c *Client) CreateLunaClient(ctx context.Context, params *CreateLunaClientInput, optFns ...func(*Options)) (*CreateLunaClientOutput, error)deprecated
- func (c *Client) DeleteHapg(ctx context.Context, params *DeleteHapgInput, optFns ...func(*Options)) (*DeleteHapgOutput, error)deprecated
- func (c *Client) DeleteHsm(ctx context.Context, params *DeleteHsmInput, optFns ...func(*Options)) (*DeleteHsmOutput, error)deprecated
- func (c *Client) DeleteLunaClient(ctx context.Context, params *DeleteLunaClientInput, optFns ...func(*Options)) (*DeleteLunaClientOutput, error)deprecated
- func (c *Client) DescribeHapg(ctx context.Context, params *DescribeHapgInput, optFns ...func(*Options)) (*DescribeHapgOutput, error)deprecated
- func (c *Client) DescribeHsm(ctx context.Context, params *DescribeHsmInput, optFns ...func(*Options)) (*DescribeHsmOutput, error)deprecated
- func (c *Client) DescribeLunaClient(ctx context.Context, params *DescribeLunaClientInput, optFns ...func(*Options)) (*DescribeLunaClientOutput, error)deprecated
- func (c *Client) GetConfig(ctx context.Context, params *GetConfigInput, optFns ...func(*Options)) (*GetConfigOutput, error)deprecated
- func (c *Client) ListAvailableZones(ctx context.Context, params *ListAvailableZonesInput, optFns ...func(*Options)) (*ListAvailableZonesOutput, error)deprecated
- func (c *Client) ListHapgs(ctx context.Context, params *ListHapgsInput, optFns ...func(*Options)) (*ListHapgsOutput, error)deprecated
- func (c *Client) ListHsms(ctx context.Context, params *ListHsmsInput, optFns ...func(*Options)) (*ListHsmsOutput, error)deprecated
- func (c *Client) ListLunaClients(ctx context.Context, params *ListLunaClientsInput, optFns ...func(*Options)) (*ListLunaClientsOutput, error)deprecated
- func (c *Client) ListTagsForResource(ctx context.Context, params *ListTagsForResourceInput, ...) (*ListTagsForResourceOutput, error)deprecated
- func (c *Client) ModifyHapg(ctx context.Context, params *ModifyHapgInput, optFns ...func(*Options)) (*ModifyHapgOutput, error)deprecated
- func (c *Client) ModifyHsm(ctx context.Context, params *ModifyHsmInput, optFns ...func(*Options)) (*ModifyHsmOutput, error)deprecated
- func (c *Client) ModifyLunaClient(ctx context.Context, params *ModifyLunaClientInput, optFns ...func(*Options)) (*ModifyLunaClientOutput, error)deprecated
- func (c *Client) Options() Options
- func (c *Client) RemoveTagsFromResource(ctx context.Context, params *RemoveTagsFromResourceInput, ...) (*RemoveTagsFromResourceOutput, error)deprecated
- type CreateHapgInput
- type CreateHapgOutput
- type CreateHsmInput
- type CreateHsmOutput
- type CreateLunaClientInput
- type CreateLunaClientOutput
- type DeleteHapgInput
- type DeleteHapgOutput
- type DeleteHsmInput
- type DeleteHsmOutput
- type DeleteLunaClientInput
- type DeleteLunaClientOutput
- type DescribeHapgInput
- type DescribeHapgOutput
- type DescribeHsmInput
- type DescribeHsmOutput
- type DescribeLunaClientInput
- type DescribeLunaClientOutput
- type EndpointParameters
- type EndpointResolver
- type EndpointResolverFunc
- type EndpointResolverOptions
- type EndpointResolverV2
- type GetConfigInput
- type GetConfigOutput
- type HTTPClient
- type HTTPSignerV4
- type ListAvailableZonesInput
- type ListAvailableZonesOutput
- type ListHapgsInput
- type ListHapgsOutput
- type ListHsmsInput
- type ListHsmsOutput
- type ListLunaClientsInput
- type ListLunaClientsOutput
- type ListTagsForResourceInput
- type ListTagsForResourceOutput
- type ModifyHapgInput
- type ModifyHapgOutput
- type ModifyHsmInput
- type ModifyHsmOutput
- type ModifyLunaClientInput
- type ModifyLunaClientOutput
- type Options
- type RemoveTagsFromResourceInput
- type RemoveTagsFromResourceOutput
- type ResolveEndpoint
Constants ¶
const ServiceAPIVersion = "2014-05-30"
const ServiceID = "CloudHSM"
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 ¶
func WithEndpointResolverV2(v EndpointResolverV2) func(*Options)
WithEndpointResolverV2 returns a functional option for setting the Client's EndpointResolverV2 option.
func WithSigV4SigningName ¶
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 ¶
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 AddTagsToResourceInput ¶
type AddTagsToResourceOutput ¶
type AddTagsToResourceOutput struct { // The status of the operation. // // This member is required. Status *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type AuthResolverParameters ¶
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 ¶
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 Amazon CloudHSM.
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) AddTagsToResource
deprecated
func (c *Client) AddTagsToResource(ctx context.Context, params *AddTagsToResourceInput, optFns ...func(*Options)) (*AddTagsToResourceOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Adds or overwrites one or more tags for the specified AWS CloudHSM resource.
Each tag consists of a key and a value. Tag keys must be unique to each resource.
Deprecated: This API is deprecated.
func (*Client) CreateHapg
deprecated
func (c *Client) CreateHapg(ctx context.Context, params *CreateHapgInput, optFns ...func(*Options)) (*CreateHapgOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Creates a high-availability partition group. A high-availability partition group is a group of partitions that spans multiple physical HSMs.
Deprecated: This API is deprecated.
func (*Client) CreateHsm
deprecated
func (c *Client) CreateHsm(ctx context.Context, params *CreateHsmInput, optFns ...func(*Options)) (*CreateHsmOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Creates an uninitialized HSM instance.
There is an upfront fee charged for each HSM instance that you create with the CreateHsm operation. If you accidentally provision an HSM and want to request a refund, delete the instance using the DeleteHsmoperation, go to the AWS Support Center, create a new case, and select Account and Billing Support.
It can take up to 20 minutes to create and provision an HSM. You can monitor the status of the HSM with the DescribeHsmoperation. The HSM is ready to be initialized when the status changes to RUNNING .
Deprecated: This API is deprecated.
func (*Client) CreateLunaClient
deprecated
func (c *Client) CreateLunaClient(ctx context.Context, params *CreateLunaClientInput, optFns ...func(*Options)) (*CreateLunaClientOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Creates an HSM client.
Deprecated: This API is deprecated.
func (*Client) DeleteHapg
deprecated
func (c *Client) DeleteHapg(ctx context.Context, params *DeleteHapgInput, optFns ...func(*Options)) (*DeleteHapgOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Deletes a high-availability partition group.
Deprecated: This API is deprecated.
func (*Client) DeleteHsm
deprecated
func (c *Client) DeleteHsm(ctx context.Context, params *DeleteHsmInput, optFns ...func(*Options)) (*DeleteHsmOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Deletes an HSM. After completion, this operation cannot be undone and your key material cannot be recovered.
Deprecated: This API is deprecated.
func (*Client) DeleteLunaClient
deprecated
func (c *Client) DeleteLunaClient(ctx context.Context, params *DeleteLunaClientInput, optFns ...func(*Options)) (*DeleteLunaClientOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Deletes a client.
Deprecated: This API is deprecated.
func (*Client) DescribeHapg
deprecated
func (c *Client) DescribeHapg(ctx context.Context, params *DescribeHapgInput, optFns ...func(*Options)) (*DescribeHapgOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Retrieves information about a high-availability partition group.
Deprecated: This API is deprecated.
func (*Client) DescribeHsm
deprecated
func (c *Client) DescribeHsm(ctx context.Context, params *DescribeHsmInput, optFns ...func(*Options)) (*DescribeHsmOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Retrieves information about an HSM. You can identify the HSM by its ARN or its serial number.
Deprecated: This API is deprecated.
func (*Client) DescribeLunaClient
deprecated
func (c *Client) DescribeLunaClient(ctx context.Context, params *DescribeLunaClientInput, optFns ...func(*Options)) (*DescribeLunaClientOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Retrieves information about an HSM client.
Deprecated: This API is deprecated.
func (*Client) GetConfig
deprecated
func (c *Client) GetConfig(ctx context.Context, params *GetConfigInput, optFns ...func(*Options)) (*GetConfigOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Gets the configuration files necessary to connect to all high availability partition groups the client is associated with.
Deprecated: This API is deprecated.
func (*Client) ListAvailableZones
deprecated
func (c *Client) ListAvailableZones(ctx context.Context, params *ListAvailableZonesInput, optFns ...func(*Options)) (*ListAvailableZonesOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Lists the Availability Zones that have available AWS CloudHSM capacity.
Deprecated: This API is deprecated.
func (*Client) ListHapgs
deprecated
func (c *Client) ListHapgs(ctx context.Context, params *ListHapgsInput, optFns ...func(*Options)) (*ListHapgsOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Lists the high-availability partition groups for the account.
This operation supports pagination with the use of the NextToken member. If more results are available, the NextToken member of the response contains a token that you pass in the next call to ListHapgs to retrieve the next set of items.
Deprecated: This API is deprecated.
func (*Client) ListHsms
deprecated
func (c *Client) ListHsms(ctx context.Context, params *ListHsmsInput, optFns ...func(*Options)) (*ListHsmsOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Retrieves the identifiers of all of the HSMs provisioned for the current customer.
This operation supports pagination with the use of the NextToken member. If more results are available, the NextToken member of the response contains a token that you pass in the next call to ListHsms to retrieve the next set of items.
Deprecated: This API is deprecated.
func (*Client) ListLunaClients
deprecated
func (c *Client) ListLunaClients(ctx context.Context, params *ListLunaClientsInput, optFns ...func(*Options)) (*ListLunaClientsOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Lists all of the clients.
This operation supports pagination with the use of the NextToken member. If more results are available, the NextToken member of the response contains a token that you pass in the next call to ListLunaClients to retrieve the next set of items.
Deprecated: This API is deprecated.
func (*Client) ListTagsForResource
deprecated
func (c *Client) ListTagsForResource(ctx context.Context, params *ListTagsForResourceInput, optFns ...func(*Options)) (*ListTagsForResourceOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Returns a list of all tags for the specified AWS CloudHSM resource.
Deprecated: This API is deprecated.
func (*Client) ModifyHapg
deprecated
func (c *Client) ModifyHapg(ctx context.Context, params *ModifyHapgInput, optFns ...func(*Options)) (*ModifyHapgOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Modifies an existing high-availability partition group.
Deprecated: This API is deprecated.
func (*Client) ModifyHsm
deprecated
func (c *Client) ModifyHsm(ctx context.Context, params *ModifyHsmInput, optFns ...func(*Options)) (*ModifyHsmOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Modifies an HSM.
This operation can result in the HSM being offline for up to 15 minutes while the AWS CloudHSM service is reconfigured. If you are modifying a production HSM, you should ensure that your AWS CloudHSM service is configured for high availability, and consider executing this operation during a maintenance window.
Deprecated: This API is deprecated.
func (*Client) ModifyLunaClient
deprecated
func (c *Client) ModifyLunaClient(ctx context.Context, params *ModifyLunaClientInput, optFns ...func(*Options)) (*ModifyLunaClientOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Modifies the certificate used by the client.
This action can potentially start a workflow to install the new certificate on the client's HSMs.
Deprecated: This API is deprecated.
func (*Client) Options ¶
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) RemoveTagsFromResource
deprecated
func (c *Client) RemoveTagsFromResource(ctx context.Context, params *RemoveTagsFromResourceInput, optFns ...func(*Options)) (*RemoveTagsFromResourceOutput, error)
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide , and the AWS CloudHSM Classic API Reference.
For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference.
Removes one or more tags from the specified AWS CloudHSM resource.
To remove a tag, specify only the tag key to remove (not the value). To overwrite the value for an existing tag, use AddTagsToResource.
Deprecated: This API is deprecated.
type CreateHapgInput ¶
type CreateHapgInput struct { // The label of the new high-availability partition group. // // This member is required. Label *string // contains filtered or unexported fields }
Contains the inputs for the CreateHapgRequest action.
type CreateHapgOutput ¶
type CreateHapgOutput struct { // The ARN of the high-availability partition group. HapgArn *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
Contains the output of the CreateHAPartitionGroup action.
type CreateHsmInput ¶
type CreateHsmInput struct { // The ARN of an IAM role to enable the AWS CloudHSM service to allocate an ENI on // your behalf. // // This member is required. IamRoleArn *string // The SSH public key to install on the HSM. // // This member is required. SshKey *string // The identifier of the subnet in your VPC in which to place the HSM. // // This member is required. SubnetId *string // Specifies the type of subscription for the HSM. // // - PRODUCTION - The HSM is being used in a production environment. // // - TRIAL - The HSM is being used in a product trial. // // This member is required. SubscriptionType types.SubscriptionType // A user-defined token to ensure idempotence. Subsequent calls to this operation // with the same token will be ignored. ClientToken *string // The IP address to assign to the HSM's ENI. // // If an IP address is not specified, an IP address will be randomly chosen from // the CIDR range of the subnet. EniIp *string // The external ID from IamRoleArn , if present. ExternalId *string // The IP address for the syslog monitoring server. The AWS CloudHSM service only // supports one syslog monitoring server. SyslogIp *string // contains filtered or unexported fields }
Contains the inputs for the CreateHsm operation.
type CreateHsmOutput ¶
type CreateHsmOutput struct { // The ARN of the HSM. HsmArn *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
Contains the output of the CreateHsm operation.
type CreateLunaClientInput ¶
type CreateLunaClientInput struct { // The contents of a Base64-Encoded X.509 v3 certificate to be installed on the // HSMs used by this client. // // This member is required. Certificate *string // The label for the client. Label *string // contains filtered or unexported fields }
Contains the inputs for the CreateLunaClient action.
type CreateLunaClientOutput ¶
type CreateLunaClientOutput struct { // The ARN of the client. ClientArn *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
Contains the output of the CreateLunaClient action.
type DeleteHapgInput ¶
type DeleteHapgInput struct { // The ARN of the high-availability partition group to delete. // // This member is required. HapgArn *string // contains filtered or unexported fields }
Contains the inputs for the DeleteHapg action.
type DeleteHapgOutput ¶
type DeleteHapgOutput struct { // The status of the action. // // This member is required. Status *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
Contains the output of the DeleteHapg action.
type DeleteHsmInput ¶
type DeleteHsmInput struct { // The ARN of the HSM to delete. // // This member is required. HsmArn *string // contains filtered or unexported fields }
Contains the inputs for the DeleteHsm operation.
type DeleteHsmOutput ¶
type DeleteHsmOutput struct { // The status of the operation. // // This member is required. Status *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
Contains the output of the DeleteHsm operation.
type DeleteLunaClientInput ¶
type DeleteLunaClientInput struct { // The ARN of the client to delete. // // This member is required. ClientArn *string // contains filtered or unexported fields }
type DeleteLunaClientOutput ¶
type DeleteLunaClientOutput struct { // The status of the action. // // This member is required. Status *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DescribeHapgInput ¶
type DescribeHapgInput struct { // The ARN of the high-availability partition group to describe. // // This member is required. HapgArn *string // contains filtered or unexported fields }
Contains the inputs for the DescribeHapg action.
type DescribeHapgOutput ¶
type DescribeHapgOutput struct { // The ARN of the high-availability partition group. HapgArn *string // The serial number of the high-availability partition group. HapgSerial *string // HsmsLastActionFailed []string // HsmsPendingDeletion []string // HsmsPendingRegistration []string // The label for the high-availability partition group. Label *string // The date and time the high-availability partition group was last modified. LastModifiedTimestamp *string // The list of partition serial numbers that belong to the high-availability // partition group. PartitionSerialList []string // The state of the high-availability partition group. State types.CloudHsmObjectState // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
Contains the output of the DescribeHapg action.
type DescribeHsmInput ¶
type DescribeHsmInput struct { // The ARN of the HSM. Either the HsmArn or the SerialNumber parameter must be // specified. HsmArn *string // The serial number of the HSM. Either the HsmArn or the HsmSerialNumber // parameter must be specified. HsmSerialNumber *string // contains filtered or unexported fields }
Contains the inputs for the DescribeHsm operation.
type DescribeHsmOutput ¶
type DescribeHsmOutput struct { // The Availability Zone that the HSM is in. AvailabilityZone *string // The identifier of the elastic network interface (ENI) attached to the HSM. EniId *string // The IP address assigned to the HSM's ENI. EniIp *string // The ARN of the HSM. HsmArn *string // The HSM model type. HsmType *string // The ARN of the IAM role assigned to the HSM. IamRoleArn *string // The list of partitions on the HSM. Partitions []string // The serial number of the HSM. SerialNumber *string // The date and time that the server certificate was last updated. ServerCertLastUpdated *string // The URI of the certificate server. ServerCertUri *string // The HSM software version. SoftwareVersion *string // The date and time that the SSH key was last updated. SshKeyLastUpdated *string // The public SSH key. SshPublicKey *string // The status of the HSM. Status types.HsmStatus // Contains additional information about the status of the HSM. StatusDetails *string // The identifier of the subnet that the HSM is in. SubnetId *string // The subscription end date. SubscriptionEndDate *string // The subscription start date. SubscriptionStartDate *string // Specifies the type of subscription for the HSM. // // - PRODUCTION - The HSM is being used in a production environment. // // - TRIAL - The HSM is being used in a product trial. SubscriptionType types.SubscriptionType // The name of the HSM vendor. VendorName *string // The identifier of the VPC that the HSM is in. VpcId *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
Contains the output of the DescribeHsm operation.
type DescribeLunaClientInput ¶
type DescribeLunaClientOutput ¶
type DescribeLunaClientOutput struct { // The certificate installed on the HSMs used by this client. Certificate *string // The certificate fingerprint. CertificateFingerprint *string // The ARN of the client. ClientArn *string // The label of the client. Label *string // The date and time the client was last modified. LastModifiedTimestamp *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type EndpointParameters ¶
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 ¶
func (p EndpointParameters) ValidateRequired() error
ValidateRequired validates required parameters are set.
func (EndpointParameters) WithDefaults ¶
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 ¶
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 ¶
func NewDefaultEndpointResolverV2() EndpointResolverV2
type GetConfigInput ¶
type GetConfigInput struct { // The ARN of the client. // // This member is required. ClientArn *string // The client version. // // This member is required. ClientVersion types.ClientVersion // A list of ARNs that identify the high-availability partition groups that are // associated with the client. // // This member is required. HapgList []string // contains filtered or unexported fields }
type GetConfigOutput ¶
type GetConfigOutput struct { // The certificate file containing the server.pem files of the HSMs. ConfigCred *string // The chrystoki.conf configuration file. ConfigFile *string // The type of credentials. ConfigType *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type HTTPSignerV4 ¶
type ListAvailableZonesInput ¶
type ListAvailableZonesInput struct {
// contains filtered or unexported fields
}
Contains the inputs for the ListAvailableZones action.
type ListAvailableZonesOutput ¶
type ListAvailableZonesOutput struct { // The list of Availability Zones that have available AWS CloudHSM capacity. AZList []string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ListHapgsInput ¶
type ListHapgsInput struct { // The NextToken value from a previous call to ListHapgs . Pass null if this is the // first call. NextToken *string // contains filtered or unexported fields }
type ListHapgsOutput ¶
type ListHapgsOutput struct { // The list of high-availability partition groups. // // This member is required. HapgList []string // If not null, more results are available. Pass this value to ListHapgs to // retrieve the next set of items. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ListHsmsInput ¶
type ListHsmsInput struct { // The NextToken value from a previous call to ListHsms . Pass null if this is the // first call. NextToken *string // contains filtered or unexported fields }
type ListHsmsOutput ¶
type ListHsmsOutput struct { // The list of ARNs that identify the HSMs. HsmList []string // If not null, more results are available. Pass this value to ListHsms to // retrieve the next set of items. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
Contains the output of the ListHsms operation.
type ListLunaClientsInput ¶
type ListLunaClientsInput struct { // The NextToken value from a previous call to ListLunaClients . Pass null if this // is the first call. NextToken *string // contains filtered or unexported fields }
type ListLunaClientsOutput ¶
type ListLunaClientsOutput struct { // The list of clients. // // This member is required. ClientList []string // If not null, more results are available. Pass this to ListLunaClients to // retrieve the next set of items. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ListTagsForResourceInput ¶
type ListTagsForResourceInput struct { // The Amazon Resource Name (ARN) of the AWS CloudHSM resource. // // This member is required. ResourceArn *string // contains filtered or unexported fields }
type ListTagsForResourceOutput ¶
type ListTagsForResourceOutput struct { // One or more tags. // // This member is required. TagList []types.Tag // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ModifyHapgInput ¶
type ModifyHapgInput struct { // The ARN of the high-availability partition group to modify. // // This member is required. HapgArn *string // The new label for the high-availability partition group. Label *string // The list of partition serial numbers to make members of the high-availability // partition group. PartitionSerialList []string // contains filtered or unexported fields }
type ModifyHapgOutput ¶
type ModifyHapgOutput struct { // The ARN of the high-availability partition group. HapgArn *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ModifyHsmInput ¶
type ModifyHsmInput struct { // The ARN of the HSM to modify. // // This member is required. HsmArn *string // The new IP address for the elastic network interface (ENI) attached to the HSM. // // If the HSM is moved to a different subnet, and an IP address is not specified, // an IP address will be randomly chosen from the CIDR range of the new subnet. EniIp *string // The new external ID. ExternalId *string // The new IAM role ARN. IamRoleArn *string // The new identifier of the subnet that the HSM is in. The new subnet must be in // the same Availability Zone as the current subnet. SubnetId *string // The new IP address for the syslog monitoring server. The AWS CloudHSM service // only supports one syslog monitoring server. SyslogIp *string // contains filtered or unexported fields }
Contains the inputs for the ModifyHsm operation.
type ModifyHsmOutput ¶
type ModifyHsmOutput struct { // The ARN of the HSM. HsmArn *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
Contains the output of the ModifyHsm operation.
type ModifyLunaClientInput ¶
type ModifyLunaClientOutput ¶
type ModifyLunaClientOutput struct { // The ARN of the client. ClientArn *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 // The logger writer interface to write logging messages to. Logger logging.Logger // 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 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) Copy ¶
Copy creates a clone where the APIOptions list is deep copied.
func (Options) GetIdentityResolver ¶
func (o Options) GetIdentityResolver(schemeID string) smithyauth.IdentityResolver
type RemoveTagsFromResourceInput ¶
type RemoveTagsFromResourceInput struct { // The Amazon Resource Name (ARN) of the AWS CloudHSM resource. // // This member is required. ResourceArn *string // The tag key or keys to remove. // // Specify only the tag key to remove (not the value). To overwrite the value for // an existing tag, use AddTagsToResource. // // This member is required. TagKeyList []string // contains filtered or unexported fields }
type RemoveTagsFromResourceOutput ¶
type RemoveTagsFromResourceOutput struct { // The status of the operation. // // This member is required. Status *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
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
Source Files ¶
- api_client.go
- api_op_AddTagsToResource.go
- api_op_CreateHapg.go
- api_op_CreateHsm.go
- api_op_CreateLunaClient.go
- api_op_DeleteHapg.go
- api_op_DeleteHsm.go
- api_op_DeleteLunaClient.go
- api_op_DescribeHapg.go
- api_op_DescribeHsm.go
- api_op_DescribeLunaClient.go
- api_op_GetConfig.go
- api_op_ListAvailableZones.go
- api_op_ListHapgs.go
- api_op_ListHsms.go
- api_op_ListLunaClients.go
- api_op_ListTagsForResource.go
- api_op_ModifyHapg.go
- api_op_ModifyHsm.go
- api_op_ModifyLunaClient.go
- api_op_RemoveTagsFromResource.go
- auth.go
- deserializers.go
- doc.go
- endpoints.go
- go_module_metadata.go
- options.go
- serializers.go
- validators.go