cloudhsm

package
v1.7.10-0...-5b99715 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 17, 2017 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Overview

Package cloudhsm provides a client for Amazon CloudHSM.

Index

Examples

Constants

View Source
const (
	// ClientVersion51 is a ClientVersion enum value
	ClientVersion51 = "5.1"

	// ClientVersion53 is a ClientVersion enum value
	ClientVersion53 = "5.3"
)
View Source
const (
	// CloudHsmObjectStateReady is a CloudHsmObjectState enum value
	CloudHsmObjectStateReady = "READY"

	// CloudHsmObjectStateUpdating is a CloudHsmObjectState enum value
	CloudHsmObjectStateUpdating = "UPDATING"

	// CloudHsmObjectStateDegraded is a CloudHsmObjectState enum value
	CloudHsmObjectStateDegraded = "DEGRADED"
)
View Source
const (
	// HsmStatusPending is a HsmStatus enum value
	HsmStatusPending = "PENDING"

	// HsmStatusRunning is a HsmStatus enum value
	HsmStatusRunning = "RUNNING"

	// HsmStatusUpdating is a HsmStatus enum value
	HsmStatusUpdating = "UPDATING"

	// HsmStatusSuspended is a HsmStatus enum value
	HsmStatusSuspended = "SUSPENDED"

	// HsmStatusTerminating is a HsmStatus enum value
	HsmStatusTerminating = "TERMINATING"

	// HsmStatusTerminated is a HsmStatus enum value
	HsmStatusTerminated = "TERMINATED"

	// HsmStatusDegraded is a HsmStatus enum value
	HsmStatusDegraded = "DEGRADED"
)
View Source
const (

	// ErrCodeCloudHsmInternalException for service response error code
	// "CloudHsmInternalException".
	//
	// Indicates that an internal error occurred.
	ErrCodeCloudHsmInternalException = "CloudHsmInternalException"

	// ErrCodeCloudHsmServiceException for service response error code
	// "CloudHsmServiceException".
	//
	// Indicates that an exception occurred in the AWS CloudHSM service.
	ErrCodeCloudHsmServiceException = "CloudHsmServiceException"

	// ErrCodeInvalidRequestException for service response error code
	// "InvalidRequestException".
	//
	// Indicates that one or more of the request parameters are not valid.
	ErrCodeInvalidRequestException = "InvalidRequestException"
)
View Source
const (
	ServiceName = "cloudhsm"  // Service endpoint prefix API calls made to.
	EndpointsID = ServiceName // Service ID for Regions and Endpoints metadata.
)

Service information constants

View Source
const (
	// SubscriptionTypeProduction is a SubscriptionType enum value
	SubscriptionTypeProduction = "PRODUCTION"
)

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.

Variables

This section is empty.

Functions

This section is empty.

Types

type AddTagsToResourceInput

type AddTagsToResourceInput struct {

	// The Amazon Resource Name (ARN) of the AWS CloudHSM resource to tag.
	//
	// ResourceArn is a required field
	ResourceArn *string `type:"string" required:"true"`

	// One or more tags.
	//
	// TagList is a required field
	TagList []*Tag `type:"list" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/AddTagsToResourceRequest

func (AddTagsToResourceInput) GoString

func (s AddTagsToResourceInput) GoString() string

GoString returns the string representation

func (*AddTagsToResourceInput) SetResourceArn

SetResourceArn sets the ResourceArn field's value.

func (*AddTagsToResourceInput) SetTagList

func (s *AddTagsToResourceInput) SetTagList(v []*Tag) *AddTagsToResourceInput

SetTagList sets the TagList field's value.

func (AddTagsToResourceInput) String

func (s AddTagsToResourceInput) String() string

String returns the string representation

func (*AddTagsToResourceInput) Validate

func (s *AddTagsToResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AddTagsToResourceOutput

type AddTagsToResourceOutput struct {

	// The status of the operation.
	//
	// Status is a required field
	Status *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/AddTagsToResourceResponse

func (AddTagsToResourceOutput) GoString

func (s AddTagsToResourceOutput) GoString() string

GoString returns the string representation

func (*AddTagsToResourceOutput) SetStatus

SetStatus sets the Status field's value.

func (AddTagsToResourceOutput) String

func (s AddTagsToResourceOutput) String() string

String returns the string representation

type CloudHSM

type CloudHSM struct {
	*client.Client
}

The service client's operations are safe to be used concurrently. It is not safe to mutate any of the client's properties though. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30

func New

func New(p client.ConfigProvider, cfgs ...*aws.Config) *CloudHSM

New creates a new instance of the CloudHSM 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:

// Create a CloudHSM client from just a session.
svc := cloudhsm.New(mySession)

// Create a CloudHSM client with additional configuration
svc := cloudhsm.New(mySession, aws.NewConfig().WithRegion("us-west-2"))

func (*CloudHSM) AddTagsToResource

func (c *CloudHSM) AddTagsToResource(input *AddTagsToResourceInput) (*AddTagsToResourceOutput, error)

AddTagsToResource API operation for Amazon CloudHSM.

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.

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 Amazon CloudHSM's API operation AddTagsToResource for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/AddTagsToResource

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.AddTagsToResourceInput{
		ResourceArn: aws.String("String"), // Required
		TagList: []*cloudhsm.Tag{ // Required
			{ // Required
				Key:   aws.String("TagKey"),   // Required
				Value: aws.String("TagValue"), // Required
			},
			// More values...
		},
	}
	resp, err := svc.AddTagsToResource(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) AddTagsToResourceRequest

func (c *CloudHSM) AddTagsToResourceRequest(input *AddTagsToResourceInput) (req *request.Request, output *AddTagsToResourceOutput)

AddTagsToResourceRequest generates a "aws/request.Request" representing the client's request for the AddTagsToResource operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AddTagsToResource for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AddTagsToResource method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AddTagsToResourceRequest method.
req, resp := client.AddTagsToResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/AddTagsToResource

func (*CloudHSM) CreateHapg

func (c *CloudHSM) CreateHapg(input *CreateHapgInput) (*CreateHapgOutput, error)

CreateHapg API operation for Amazon CloudHSM.

Creates a high-availability partition group. A high-availability partition group is a group of partitions that spans multiple physical HSMs.

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 Amazon CloudHSM's API operation CreateHapg for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/CreateHapg

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.CreateHapgInput{
		Label: aws.String("Label"), // Required
	}
	resp, err := svc.CreateHapg(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) CreateHapgRequest

func (c *CloudHSM) CreateHapgRequest(input *CreateHapgInput) (req *request.Request, output *CreateHapgOutput)

CreateHapgRequest generates a "aws/request.Request" representing the client's request for the CreateHapg operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateHapg for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateHapg method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateHapgRequest method.
req, resp := client.CreateHapgRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/CreateHapg

func (*CloudHSM) CreateHsm

func (c *CloudHSM) CreateHsm(input *CreateHsmInput) (*CreateHsmOutput, error)

CreateHsm API operation for Amazon CloudHSM.

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 DeleteHsm operation, go to the AWS Support Center (https://console.aws.amazon.com/support/home#/), 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 DescribeHsm operation. The HSM is ready to be initialized when the status changes to RUNNING.

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 Amazon CloudHSM's API operation CreateHsm for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/CreateHsm

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.CreateHsmInput{
		IamRoleArn:       aws.String("IamRoleArn"),       // Required
		SshKey:           aws.String("SshKey"),           // Required
		SubnetId:         aws.String("SubnetId"),         // Required
		SubscriptionType: aws.String("SubscriptionType"), // Required
		ClientToken:      aws.String("ClientToken"),
		EniIp:            aws.String("IpAddress"),
		ExternalId:       aws.String("ExternalId"),
		SyslogIp:         aws.String("IpAddress"),
	}
	resp, err := svc.CreateHsm(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) CreateHsmRequest

func (c *CloudHSM) CreateHsmRequest(input *CreateHsmInput) (req *request.Request, output *CreateHsmOutput)

CreateHsmRequest generates a "aws/request.Request" representing the client's request for the CreateHsm operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateHsm for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateHsm method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateHsmRequest method.
req, resp := client.CreateHsmRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/CreateHsm

func (*CloudHSM) CreateLunaClient

func (c *CloudHSM) CreateLunaClient(input *CreateLunaClientInput) (*CreateLunaClientOutput, error)

CreateLunaClient API operation for Amazon CloudHSM.

Creates an HSM client.

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 Amazon CloudHSM's API operation CreateLunaClient for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/CreateLunaClient

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.CreateLunaClientInput{
		Certificate: aws.String("Certificate"), // Required
		Label:       aws.String("ClientLabel"),
	}
	resp, err := svc.CreateLunaClient(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) CreateLunaClientRequest

func (c *CloudHSM) CreateLunaClientRequest(input *CreateLunaClientInput) (req *request.Request, output *CreateLunaClientOutput)

CreateLunaClientRequest generates a "aws/request.Request" representing the client's request for the CreateLunaClient operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateLunaClient for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateLunaClient method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateLunaClientRequest method.
req, resp := client.CreateLunaClientRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/CreateLunaClient

func (*CloudHSM) DeleteHapg

func (c *CloudHSM) DeleteHapg(input *DeleteHapgInput) (*DeleteHapgOutput, error)

DeleteHapg API operation for Amazon CloudHSM.

Deletes a high-availability partition group.

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 Amazon CloudHSM's API operation DeleteHapg for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DeleteHapg

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.DeleteHapgInput{
		HapgArn: aws.String("HapgArn"), // Required
	}
	resp, err := svc.DeleteHapg(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) DeleteHapgRequest

func (c *CloudHSM) DeleteHapgRequest(input *DeleteHapgInput) (req *request.Request, output *DeleteHapgOutput)

DeleteHapgRequest generates a "aws/request.Request" representing the client's request for the DeleteHapg operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteHapg for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteHapg method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteHapgRequest method.
req, resp := client.DeleteHapgRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DeleteHapg

func (*CloudHSM) DeleteHsm

func (c *CloudHSM) DeleteHsm(input *DeleteHsmInput) (*DeleteHsmOutput, error)

DeleteHsm API operation for Amazon CloudHSM.

Deletes an HSM. After completion, this operation cannot be undone and your key material cannot be recovered.

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 Amazon CloudHSM's API operation DeleteHsm for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DeleteHsm

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.DeleteHsmInput{
		HsmArn: aws.String("HsmArn"), // Required
	}
	resp, err := svc.DeleteHsm(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) DeleteHsmRequest

func (c *CloudHSM) DeleteHsmRequest(input *DeleteHsmInput) (req *request.Request, output *DeleteHsmOutput)

DeleteHsmRequest generates a "aws/request.Request" representing the client's request for the DeleteHsm operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteHsm for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteHsm method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteHsmRequest method.
req, resp := client.DeleteHsmRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DeleteHsm

func (*CloudHSM) DeleteLunaClient

func (c *CloudHSM) DeleteLunaClient(input *DeleteLunaClientInput) (*DeleteLunaClientOutput, error)

DeleteLunaClient API operation for Amazon CloudHSM.

Deletes a client.

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 Amazon CloudHSM's API operation DeleteLunaClient for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DeleteLunaClient

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.DeleteLunaClientInput{
		ClientArn: aws.String("ClientArn"), // Required
	}
	resp, err := svc.DeleteLunaClient(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) DeleteLunaClientRequest

func (c *CloudHSM) DeleteLunaClientRequest(input *DeleteLunaClientInput) (req *request.Request, output *DeleteLunaClientOutput)

DeleteLunaClientRequest generates a "aws/request.Request" representing the client's request for the DeleteLunaClient operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteLunaClient for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteLunaClient method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteLunaClientRequest method.
req, resp := client.DeleteLunaClientRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DeleteLunaClient

func (*CloudHSM) DescribeHapg

func (c *CloudHSM) DescribeHapg(input *DescribeHapgInput) (*DescribeHapgOutput, error)

DescribeHapg API operation for Amazon CloudHSM.

Retrieves information about a high-availability partition group.

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 Amazon CloudHSM's API operation DescribeHapg for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DescribeHapg

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.DescribeHapgInput{
		HapgArn: aws.String("HapgArn"), // Required
	}
	resp, err := svc.DescribeHapg(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) DescribeHapgRequest

func (c *CloudHSM) DescribeHapgRequest(input *DescribeHapgInput) (req *request.Request, output *DescribeHapgOutput)

DescribeHapgRequest generates a "aws/request.Request" representing the client's request for the DescribeHapg operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeHapg for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeHapg method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeHapgRequest method.
req, resp := client.DescribeHapgRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DescribeHapg

func (*CloudHSM) DescribeHsm

func (c *CloudHSM) DescribeHsm(input *DescribeHsmInput) (*DescribeHsmOutput, error)

DescribeHsm API operation for Amazon CloudHSM.

Retrieves information about an HSM. You can identify the HSM by its ARN or its serial number.

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 Amazon CloudHSM's API operation DescribeHsm for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DescribeHsm

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.DescribeHsmInput{
		HsmArn:          aws.String("HsmArn"),
		HsmSerialNumber: aws.String("HsmSerialNumber"),
	}
	resp, err := svc.DescribeHsm(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) DescribeHsmRequest

func (c *CloudHSM) DescribeHsmRequest(input *DescribeHsmInput) (req *request.Request, output *DescribeHsmOutput)

DescribeHsmRequest generates a "aws/request.Request" representing the client's request for the DescribeHsm operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeHsm for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeHsm method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeHsmRequest method.
req, resp := client.DescribeHsmRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DescribeHsm

func (*CloudHSM) DescribeLunaClient

func (c *CloudHSM) DescribeLunaClient(input *DescribeLunaClientInput) (*DescribeLunaClientOutput, error)

DescribeLunaClient API operation for Amazon CloudHSM.

Retrieves information about an HSM client.

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 Amazon CloudHSM's API operation DescribeLunaClient for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DescribeLunaClient

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.DescribeLunaClientInput{
		CertificateFingerprint: aws.String("CertificateFingerprint"),
		ClientArn:              aws.String("ClientArn"),
	}
	resp, err := svc.DescribeLunaClient(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) DescribeLunaClientRequest

func (c *CloudHSM) DescribeLunaClientRequest(input *DescribeLunaClientInput) (req *request.Request, output *DescribeLunaClientOutput)

DescribeLunaClientRequest generates a "aws/request.Request" representing the client's request for the DescribeLunaClient operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeLunaClient for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeLunaClient method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeLunaClientRequest method.
req, resp := client.DescribeLunaClientRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DescribeLunaClient

func (*CloudHSM) GetConfig

func (c *CloudHSM) GetConfig(input *GetConfigInput) (*GetConfigOutput, error)

GetConfig API operation for Amazon CloudHSM.

Gets the configuration files necessary to connect to all high availability partition groups the client is associated with.

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 Amazon CloudHSM's API operation GetConfig for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/GetConfig

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.GetConfigInput{
		ClientArn:     aws.String("ClientArn"),     // Required
		ClientVersion: aws.String("ClientVersion"), // Required
		HapgList: []*string{ // Required
			aws.String("HapgArn"), // Required
			// More values...
		},
	}
	resp, err := svc.GetConfig(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) GetConfigRequest

func (c *CloudHSM) GetConfigRequest(input *GetConfigInput) (req *request.Request, output *GetConfigOutput)

GetConfigRequest generates a "aws/request.Request" representing the client's request for the GetConfig operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetConfig for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetConfig method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetConfigRequest method.
req, resp := client.GetConfigRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/GetConfig

func (*CloudHSM) ListAvailableZones

func (c *CloudHSM) ListAvailableZones(input *ListAvailableZonesInput) (*ListAvailableZonesOutput, error)

ListAvailableZones API operation for Amazon CloudHSM.

Lists the Availability Zones that have available AWS CloudHSM capacity.

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 Amazon CloudHSM's API operation ListAvailableZones for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListAvailableZones

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	var params *cloudhsm.ListAvailableZonesInput
	resp, err := svc.ListAvailableZones(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) ListAvailableZonesRequest

func (c *CloudHSM) ListAvailableZonesRequest(input *ListAvailableZonesInput) (req *request.Request, output *ListAvailableZonesOutput)

ListAvailableZonesRequest generates a "aws/request.Request" representing the client's request for the ListAvailableZones operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListAvailableZones for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListAvailableZones method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListAvailableZonesRequest method.
req, resp := client.ListAvailableZonesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListAvailableZones

func (*CloudHSM) ListHapgs

func (c *CloudHSM) ListHapgs(input *ListHapgsInput) (*ListHapgsOutput, error)

ListHapgs API operation for Amazon CloudHSM.

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.

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 Amazon CloudHSM's API operation ListHapgs for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListHapgs

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.ListHapgsInput{
		NextToken: aws.String("PaginationToken"),
	}
	resp, err := svc.ListHapgs(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) ListHapgsRequest

func (c *CloudHSM) ListHapgsRequest(input *ListHapgsInput) (req *request.Request, output *ListHapgsOutput)

ListHapgsRequest generates a "aws/request.Request" representing the client's request for the ListHapgs operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListHapgs for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListHapgs method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListHapgsRequest method.
req, resp := client.ListHapgsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListHapgs

func (*CloudHSM) ListHsms

func (c *CloudHSM) ListHsms(input *ListHsmsInput) (*ListHsmsOutput, error)

ListHsms API operation for Amazon CloudHSM.

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.

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 Amazon CloudHSM's API operation ListHsms for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListHsms

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.ListHsmsInput{
		NextToken: aws.String("PaginationToken"),
	}
	resp, err := svc.ListHsms(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) ListHsmsRequest

func (c *CloudHSM) ListHsmsRequest(input *ListHsmsInput) (req *request.Request, output *ListHsmsOutput)

ListHsmsRequest generates a "aws/request.Request" representing the client's request for the ListHsms operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListHsms for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListHsms method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListHsmsRequest method.
req, resp := client.ListHsmsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListHsms

func (*CloudHSM) ListLunaClients

func (c *CloudHSM) ListLunaClients(input *ListLunaClientsInput) (*ListLunaClientsOutput, error)

ListLunaClients API operation for Amazon CloudHSM.

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.

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 Amazon CloudHSM's API operation ListLunaClients for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListLunaClients

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.ListLunaClientsInput{
		NextToken: aws.String("PaginationToken"),
	}
	resp, err := svc.ListLunaClients(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) ListLunaClientsRequest

func (c *CloudHSM) ListLunaClientsRequest(input *ListLunaClientsInput) (req *request.Request, output *ListLunaClientsOutput)

ListLunaClientsRequest generates a "aws/request.Request" representing the client's request for the ListLunaClients operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ListLunaClients for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListLunaClients method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ListLunaClientsRequest method.
req, resp := client.ListLunaClientsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListLunaClients

func (*CloudHSM) ListTagsForResource

func (c *CloudHSM) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)

ListTagsForResource API operation for Amazon CloudHSM.

Returns a list of all tags for the specified AWS CloudHSM 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 Amazon CloudHSM's API operation ListTagsForResource for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListTagsForResource

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.ListTagsForResourceInput{
		ResourceArn: aws.String("String"), // Required
	}
	resp, err := svc.ListTagsForResource(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) ListTagsForResourceRequest

func (c *CloudHSM) 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 can be used to capture response data after the request's "Send" method is called.

See ListTagsForResource for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ListTagsForResource method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// 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)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListTagsForResource

func (*CloudHSM) ModifyHapg

func (c *CloudHSM) ModifyHapg(input *ModifyHapgInput) (*ModifyHapgOutput, error)

ModifyHapg API operation for Amazon CloudHSM.

Modifies an existing high-availability partition group.

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 Amazon CloudHSM's API operation ModifyHapg for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ModifyHapg

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.ModifyHapgInput{
		HapgArn: aws.String("HapgArn"), // Required
		Label:   aws.String("Label"),
		PartitionSerialList: []*string{
			aws.String("PartitionSerial"), // Required
			// More values...
		},
	}
	resp, err := svc.ModifyHapg(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) ModifyHapgRequest

func (c *CloudHSM) ModifyHapgRequest(input *ModifyHapgInput) (req *request.Request, output *ModifyHapgOutput)

ModifyHapgRequest generates a "aws/request.Request" representing the client's request for the ModifyHapg operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyHapg for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyHapg method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyHapgRequest method.
req, resp := client.ModifyHapgRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ModifyHapg

func (*CloudHSM) ModifyHsm

func (c *CloudHSM) ModifyHsm(input *ModifyHsmInput) (*ModifyHsmOutput, error)

ModifyHsm API operation for Amazon CloudHSM.

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.

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 Amazon CloudHSM's API operation ModifyHsm for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ModifyHsm

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.ModifyHsmInput{
		HsmArn:     aws.String("HsmArn"), // Required
		EniIp:      aws.String("IpAddress"),
		ExternalId: aws.String("ExternalId"),
		IamRoleArn: aws.String("IamRoleArn"),
		SubnetId:   aws.String("SubnetId"),
		SyslogIp:   aws.String("IpAddress"),
	}
	resp, err := svc.ModifyHsm(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) ModifyHsmRequest

func (c *CloudHSM) ModifyHsmRequest(input *ModifyHsmInput) (req *request.Request, output *ModifyHsmOutput)

ModifyHsmRequest generates a "aws/request.Request" representing the client's request for the ModifyHsm operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyHsm for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyHsm method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyHsmRequest method.
req, resp := client.ModifyHsmRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ModifyHsm

func (*CloudHSM) ModifyLunaClient

func (c *CloudHSM) ModifyLunaClient(input *ModifyLunaClientInput) (*ModifyLunaClientOutput, error)

ModifyLunaClient API operation for Amazon CloudHSM.

Modifies the certificate used by the client.

This action can potentially start a workflow to install the new certificate on the client's HSMs.

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 Amazon CloudHSM's API operation ModifyLunaClient for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ModifyLunaClient

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.ModifyLunaClientInput{
		Certificate: aws.String("Certificate"), // Required
		ClientArn:   aws.String("ClientArn"),   // Required
	}
	resp, err := svc.ModifyLunaClient(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) ModifyLunaClientRequest

func (c *CloudHSM) ModifyLunaClientRequest(input *ModifyLunaClientInput) (req *request.Request, output *ModifyLunaClientOutput)

ModifyLunaClientRequest generates a "aws/request.Request" representing the client's request for the ModifyLunaClient operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyLunaClient for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyLunaClient method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyLunaClientRequest method.
req, resp := client.ModifyLunaClientRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ModifyLunaClient

func (*CloudHSM) RemoveTagsFromResource

func (c *CloudHSM) RemoveTagsFromResource(input *RemoveTagsFromResourceInput) (*RemoveTagsFromResourceOutput, error)

RemoveTagsFromResource API operation for Amazon CloudHSM.

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.

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 Amazon CloudHSM's API operation RemoveTagsFromResource for usage and error information.

Returned Error Codes:

  • ErrCodeCloudHsmServiceException "CloudHsmServiceException" Indicates that an exception occurred in the AWS CloudHSM service.

  • ErrCodeCloudHsmInternalException "CloudHsmInternalException" Indicates that an internal error occurred.

  • ErrCodeInvalidRequestException "InvalidRequestException" Indicates that one or more of the request parameters are not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/RemoveTagsFromResource

Example
package main

import (
	"fmt"

	"github.com/aws/aws-sdk-go/aws"
	"github.com/aws/aws-sdk-go/aws/session"
	"github.com/aws/aws-sdk-go/service/cloudhsm"
)

func main() {
	sess := session.Must(session.NewSession())

	svc := cloudhsm.New(sess)

	params := &cloudhsm.RemoveTagsFromResourceInput{
		ResourceArn: aws.String("String"), // Required
		TagKeyList: []*string{ // Required
			aws.String("TagKey"), // Required
			// More values...
		},
	}
	resp, err := svc.RemoveTagsFromResource(params)

	if err != nil {
		// Print the error, cast err to awserr.Error to get the Code and
		// Message from an error.
		fmt.Println(err.Error())
		return
	}

	// Pretty-print the response data.
	fmt.Println(resp)
}
Output:

func (*CloudHSM) RemoveTagsFromResourceRequest

func (c *CloudHSM) RemoveTagsFromResourceRequest(input *RemoveTagsFromResourceInput) (req *request.Request, output *RemoveTagsFromResourceOutput)

RemoveTagsFromResourceRequest generates a "aws/request.Request" representing the client's request for the RemoveTagsFromResource operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See RemoveTagsFromResource for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the RemoveTagsFromResource method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the RemoveTagsFromResourceRequest method.
req, resp := client.RemoveTagsFromResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/RemoveTagsFromResource

type CreateHapgInput

type CreateHapgInput struct {

	// The label of the new high-availability partition group.
	//
	// Label is a required field
	Label *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Contains the inputs for the CreateHapgRequest action. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/CreateHapgRequest

func (CreateHapgInput) GoString

func (s CreateHapgInput) GoString() string

GoString returns the string representation

func (*CreateHapgInput) SetLabel

func (s *CreateHapgInput) SetLabel(v string) *CreateHapgInput

SetLabel sets the Label field's value.

func (CreateHapgInput) String

func (s CreateHapgInput) String() string

String returns the string representation

func (*CreateHapgInput) Validate

func (s *CreateHapgInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateHapgOutput

type CreateHapgOutput struct {

	// The ARN of the high-availability partition group.
	HapgArn *string `type:"string"`
	// contains filtered or unexported fields
}

Contains the output of the CreateHAPartitionGroup action. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/CreateHapgResponse

func (CreateHapgOutput) GoString

func (s CreateHapgOutput) GoString() string

GoString returns the string representation

func (*CreateHapgOutput) SetHapgArn

func (s *CreateHapgOutput) SetHapgArn(v string) *CreateHapgOutput

SetHapgArn sets the HapgArn field's value.

func (CreateHapgOutput) String

func (s CreateHapgOutput) String() string

String returns the string representation

type CreateHsmInput

type CreateHsmInput struct {

	// A user-defined token to ensure idempotence. Subsequent calls to this operation
	// with the same token will be ignored.
	ClientToken *string `locationName:"ClientToken" type:"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 `locationName:"EniIp" type:"string"`

	// The external ID from IamRoleArn, if present.
	ExternalId *string `locationName:"ExternalId" type:"string"`

	// The ARN of an IAM role to enable the AWS CloudHSM service to allocate an
	// ENI on your behalf.
	//
	// IamRoleArn is a required field
	IamRoleArn *string `locationName:"IamRoleArn" type:"string" required:"true"`

	// The SSH public key to install on the HSM.
	//
	// SshKey is a required field
	SshKey *string `locationName:"SshKey" type:"string" required:"true"`

	// The identifier of the subnet in your VPC in which to place the HSM.
	//
	// SubnetId is a required field
	SubnetId *string `locationName:"SubnetId" type:"string" required:"true"`

	// 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 is a required field
	SubscriptionType *string `locationName:"SubscriptionType" type:"string" required:"true" enum:"SubscriptionType"`

	// The IP address for the syslog monitoring server. The AWS CloudHSM service
	// only supports one syslog monitoring server.
	SyslogIp *string `locationName:"SyslogIp" type:"string"`
	// contains filtered or unexported fields
}

Contains the inputs for the CreateHsm operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/CreateHsmRequest

func (CreateHsmInput) GoString

func (s CreateHsmInput) GoString() string

GoString returns the string representation

func (*CreateHsmInput) SetClientToken

func (s *CreateHsmInput) SetClientToken(v string) *CreateHsmInput

SetClientToken sets the ClientToken field's value.

func (*CreateHsmInput) SetEniIp

func (s *CreateHsmInput) SetEniIp(v string) *CreateHsmInput

SetEniIp sets the EniIp field's value.

func (*CreateHsmInput) SetExternalId

func (s *CreateHsmInput) SetExternalId(v string) *CreateHsmInput

SetExternalId sets the ExternalId field's value.

func (*CreateHsmInput) SetIamRoleArn

func (s *CreateHsmInput) SetIamRoleArn(v string) *CreateHsmInput

SetIamRoleArn sets the IamRoleArn field's value.

func (*CreateHsmInput) SetSshKey

func (s *CreateHsmInput) SetSshKey(v string) *CreateHsmInput

SetSshKey sets the SshKey field's value.

func (*CreateHsmInput) SetSubnetId

func (s *CreateHsmInput) SetSubnetId(v string) *CreateHsmInput

SetSubnetId sets the SubnetId field's value.

func (*CreateHsmInput) SetSubscriptionType

func (s *CreateHsmInput) SetSubscriptionType(v string) *CreateHsmInput

SetSubscriptionType sets the SubscriptionType field's value.

func (*CreateHsmInput) SetSyslogIp

func (s *CreateHsmInput) SetSyslogIp(v string) *CreateHsmInput

SetSyslogIp sets the SyslogIp field's value.

func (CreateHsmInput) String

func (s CreateHsmInput) String() string

String returns the string representation

func (*CreateHsmInput) Validate

func (s *CreateHsmInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateHsmOutput

type CreateHsmOutput struct {

	// The ARN of the HSM.
	HsmArn *string `type:"string"`
	// contains filtered or unexported fields
}

Contains the output of the CreateHsm operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/CreateHsmResponse

func (CreateHsmOutput) GoString

func (s CreateHsmOutput) GoString() string

GoString returns the string representation

func (*CreateHsmOutput) SetHsmArn

func (s *CreateHsmOutput) SetHsmArn(v string) *CreateHsmOutput

SetHsmArn sets the HsmArn field's value.

func (CreateHsmOutput) String

func (s CreateHsmOutput) String() string

String returns the string representation

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.
	//
	// Certificate is a required field
	Certificate *string `min:"600" type:"string" required:"true"`

	// The label for the client.
	Label *string `type:"string"`
	// contains filtered or unexported fields
}

Contains the inputs for the CreateLunaClient action. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/CreateLunaClientRequest

func (CreateLunaClientInput) GoString

func (s CreateLunaClientInput) GoString() string

GoString returns the string representation

func (*CreateLunaClientInput) SetCertificate

func (s *CreateLunaClientInput) SetCertificate(v string) *CreateLunaClientInput

SetCertificate sets the Certificate field's value.

func (*CreateLunaClientInput) SetLabel

SetLabel sets the Label field's value.

func (CreateLunaClientInput) String

func (s CreateLunaClientInput) String() string

String returns the string representation

func (*CreateLunaClientInput) Validate

func (s *CreateLunaClientInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateLunaClientOutput

type CreateLunaClientOutput struct {

	// The ARN of the client.
	ClientArn *string `type:"string"`
	// contains filtered or unexported fields
}

Contains the output of the CreateLunaClient action. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/CreateLunaClientResponse

func (CreateLunaClientOutput) GoString

func (s CreateLunaClientOutput) GoString() string

GoString returns the string representation

func (*CreateLunaClientOutput) SetClientArn

SetClientArn sets the ClientArn field's value.

func (CreateLunaClientOutput) String

func (s CreateLunaClientOutput) String() string

String returns the string representation

type DeleteHapgInput

type DeleteHapgInput struct {

	// The ARN of the high-availability partition group to delete.
	//
	// HapgArn is a required field
	HapgArn *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Contains the inputs for the DeleteHapg action. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DeleteHapgRequest

func (DeleteHapgInput) GoString

func (s DeleteHapgInput) GoString() string

GoString returns the string representation

func (*DeleteHapgInput) SetHapgArn

func (s *DeleteHapgInput) SetHapgArn(v string) *DeleteHapgInput

SetHapgArn sets the HapgArn field's value.

func (DeleteHapgInput) String

func (s DeleteHapgInput) String() string

String returns the string representation

func (*DeleteHapgInput) Validate

func (s *DeleteHapgInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteHapgOutput

type DeleteHapgOutput struct {

	// The status of the action.
	//
	// Status is a required field
	Status *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Contains the output of the DeleteHapg action. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DeleteHapgResponse

func (DeleteHapgOutput) GoString

func (s DeleteHapgOutput) GoString() string

GoString returns the string representation

func (*DeleteHapgOutput) SetStatus

func (s *DeleteHapgOutput) SetStatus(v string) *DeleteHapgOutput

SetStatus sets the Status field's value.

func (DeleteHapgOutput) String

func (s DeleteHapgOutput) String() string

String returns the string representation

type DeleteHsmInput

type DeleteHsmInput struct {

	// The ARN of the HSM to delete.
	//
	// HsmArn is a required field
	HsmArn *string `locationName:"HsmArn" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Contains the inputs for the DeleteHsm operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DeleteHsmRequest

func (DeleteHsmInput) GoString

func (s DeleteHsmInput) GoString() string

GoString returns the string representation

func (*DeleteHsmInput) SetHsmArn

func (s *DeleteHsmInput) SetHsmArn(v string) *DeleteHsmInput

SetHsmArn sets the HsmArn field's value.

func (DeleteHsmInput) String

func (s DeleteHsmInput) String() string

String returns the string representation

func (*DeleteHsmInput) Validate

func (s *DeleteHsmInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteHsmOutput

type DeleteHsmOutput struct {

	// The status of the operation.
	//
	// Status is a required field
	Status *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Contains the output of the DeleteHsm operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DeleteHsmResponse

func (DeleteHsmOutput) GoString

func (s DeleteHsmOutput) GoString() string

GoString returns the string representation

func (*DeleteHsmOutput) SetStatus

func (s *DeleteHsmOutput) SetStatus(v string) *DeleteHsmOutput

SetStatus sets the Status field's value.

func (DeleteHsmOutput) String

func (s DeleteHsmOutput) String() string

String returns the string representation

type DeleteLunaClientInput

type DeleteLunaClientInput struct {

	// The ARN of the client to delete.
	//
	// ClientArn is a required field
	ClientArn *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DeleteLunaClientRequest

func (DeleteLunaClientInput) GoString

func (s DeleteLunaClientInput) GoString() string

GoString returns the string representation

func (*DeleteLunaClientInput) SetClientArn

SetClientArn sets the ClientArn field's value.

func (DeleteLunaClientInput) String

func (s DeleteLunaClientInput) String() string

String returns the string representation

func (*DeleteLunaClientInput) Validate

func (s *DeleteLunaClientInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteLunaClientOutput

type DeleteLunaClientOutput struct {

	// The status of the action.
	//
	// Status is a required field
	Status *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DeleteLunaClientResponse

func (DeleteLunaClientOutput) GoString

func (s DeleteLunaClientOutput) GoString() string

GoString returns the string representation

func (*DeleteLunaClientOutput) SetStatus

SetStatus sets the Status field's value.

func (DeleteLunaClientOutput) String

func (s DeleteLunaClientOutput) String() string

String returns the string representation

type DescribeHapgInput

type DescribeHapgInput struct {

	// The ARN of the high-availability partition group to describe.
	//
	// HapgArn is a required field
	HapgArn *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Contains the inputs for the DescribeHapg action. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DescribeHapgRequest

func (DescribeHapgInput) GoString

func (s DescribeHapgInput) GoString() string

GoString returns the string representation

func (*DescribeHapgInput) SetHapgArn

func (s *DescribeHapgInput) SetHapgArn(v string) *DescribeHapgInput

SetHapgArn sets the HapgArn field's value.

func (DescribeHapgInput) String

func (s DescribeHapgInput) String() string

String returns the string representation

func (*DescribeHapgInput) Validate

func (s *DescribeHapgInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeHapgOutput

type DescribeHapgOutput struct {

	// The ARN of the high-availability partition group.
	HapgArn *string `type:"string"`

	// The serial number of the high-availability partition group.
	HapgSerial *string `type:"string"`

	// Contains a list of ARNs that identify the HSMs.
	HsmsLastActionFailed []*string `type:"list"`

	// Contains a list of ARNs that identify the HSMs.
	HsmsPendingDeletion []*string `type:"list"`

	// Contains a list of ARNs that identify the HSMs.
	HsmsPendingRegistration []*string `type:"list"`

	// The label for the high-availability partition group.
	Label *string `type:"string"`

	// The date and time the high-availability partition group was last modified.
	LastModifiedTimestamp *string `type:"string"`

	// The list of partition serial numbers that belong to the high-availability
	// partition group.
	PartitionSerialList []*string `type:"list"`

	// The state of the high-availability partition group.
	State *string `type:"string" enum:"CloudHsmObjectState"`
	// contains filtered or unexported fields
}

Contains the output of the DescribeHapg action. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DescribeHapgResponse

func (DescribeHapgOutput) GoString

func (s DescribeHapgOutput) GoString() string

GoString returns the string representation

func (*DescribeHapgOutput) SetHapgArn

func (s *DescribeHapgOutput) SetHapgArn(v string) *DescribeHapgOutput

SetHapgArn sets the HapgArn field's value.

func (*DescribeHapgOutput) SetHapgSerial

func (s *DescribeHapgOutput) SetHapgSerial(v string) *DescribeHapgOutput

SetHapgSerial sets the HapgSerial field's value.

func (*DescribeHapgOutput) SetHsmsLastActionFailed

func (s *DescribeHapgOutput) SetHsmsLastActionFailed(v []*string) *DescribeHapgOutput

SetHsmsLastActionFailed sets the HsmsLastActionFailed field's value.

func (*DescribeHapgOutput) SetHsmsPendingDeletion

func (s *DescribeHapgOutput) SetHsmsPendingDeletion(v []*string) *DescribeHapgOutput

SetHsmsPendingDeletion sets the HsmsPendingDeletion field's value.

func (*DescribeHapgOutput) SetHsmsPendingRegistration

func (s *DescribeHapgOutput) SetHsmsPendingRegistration(v []*string) *DescribeHapgOutput

SetHsmsPendingRegistration sets the HsmsPendingRegistration field's value.

func (*DescribeHapgOutput) SetLabel

SetLabel sets the Label field's value.

func (*DescribeHapgOutput) SetLastModifiedTimestamp

func (s *DescribeHapgOutput) SetLastModifiedTimestamp(v string) *DescribeHapgOutput

SetLastModifiedTimestamp sets the LastModifiedTimestamp field's value.

func (*DescribeHapgOutput) SetPartitionSerialList

func (s *DescribeHapgOutput) SetPartitionSerialList(v []*string) *DescribeHapgOutput

SetPartitionSerialList sets the PartitionSerialList field's value.

func (*DescribeHapgOutput) SetState

SetState sets the State field's value.

func (DescribeHapgOutput) String

func (s DescribeHapgOutput) String() string

String returns the string representation

type DescribeHsmInput

type DescribeHsmInput struct {

	// The ARN of the HSM. Either the HsmArn or the SerialNumber parameter must
	// be specified.
	HsmArn *string `type:"string"`

	// The serial number of the HSM. Either the HsmArn or the HsmSerialNumber parameter
	// must be specified.
	HsmSerialNumber *string `type:"string"`
	// contains filtered or unexported fields
}

Contains the inputs for the DescribeHsm operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DescribeHsmRequest

func (DescribeHsmInput) GoString

func (s DescribeHsmInput) GoString() string

GoString returns the string representation

func (*DescribeHsmInput) SetHsmArn

func (s *DescribeHsmInput) SetHsmArn(v string) *DescribeHsmInput

SetHsmArn sets the HsmArn field's value.

func (*DescribeHsmInput) SetHsmSerialNumber

func (s *DescribeHsmInput) SetHsmSerialNumber(v string) *DescribeHsmInput

SetHsmSerialNumber sets the HsmSerialNumber field's value.

func (DescribeHsmInput) String

func (s DescribeHsmInput) String() string

String returns the string representation

type DescribeHsmOutput

type DescribeHsmOutput struct {

	// The Availability Zone that the HSM is in.
	AvailabilityZone *string `type:"string"`

	// The identifier of the elastic network interface (ENI) attached to the HSM.
	EniId *string `type:"string"`

	// The IP address assigned to the HSM's ENI.
	EniIp *string `type:"string"`

	// The ARN of the HSM.
	HsmArn *string `type:"string"`

	// The HSM model type.
	HsmType *string `type:"string"`

	// The ARN of the IAM role assigned to the HSM.
	IamRoleArn *string `type:"string"`

	// The list of partitions on the HSM.
	Partitions []*string `type:"list"`

	// The serial number of the HSM.
	SerialNumber *string `type:"string"`

	// The date and time that the server certificate was last updated.
	ServerCertLastUpdated *string `type:"string"`

	// The URI of the certificate server.
	ServerCertUri *string `type:"string"`

	// The HSM software version.
	SoftwareVersion *string `type:"string"`

	// The date and time that the SSH key was last updated.
	SshKeyLastUpdated *string `type:"string"`

	// The public SSH key.
	SshPublicKey *string `type:"string"`

	// The status of the HSM.
	Status *string `type:"string" enum:"HsmStatus"`

	// Contains additional information about the status of the HSM.
	StatusDetails *string `type:"string"`

	// The identifier of the subnet that the HSM is in.
	SubnetId *string `type:"string"`

	// The subscription end date.
	SubscriptionEndDate *string `type:"string"`

	// The subscription start date.
	SubscriptionStartDate *string `type:"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 *string `type:"string" enum:"SubscriptionType"`

	// The name of the HSM vendor.
	VendorName *string `type:"string"`

	// The identifier of the VPC that the HSM is in.
	VpcId *string `type:"string"`
	// contains filtered or unexported fields
}

Contains the output of the DescribeHsm operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DescribeHsmResponse

func (DescribeHsmOutput) GoString

func (s DescribeHsmOutput) GoString() string

GoString returns the string representation

func (*DescribeHsmOutput) SetAvailabilityZone

func (s *DescribeHsmOutput) SetAvailabilityZone(v string) *DescribeHsmOutput

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*DescribeHsmOutput) SetEniId

func (s *DescribeHsmOutput) SetEniId(v string) *DescribeHsmOutput

SetEniId sets the EniId field's value.

func (*DescribeHsmOutput) SetEniIp

func (s *DescribeHsmOutput) SetEniIp(v string) *DescribeHsmOutput

SetEniIp sets the EniIp field's value.

func (*DescribeHsmOutput) SetHsmArn

func (s *DescribeHsmOutput) SetHsmArn(v string) *DescribeHsmOutput

SetHsmArn sets the HsmArn field's value.

func (*DescribeHsmOutput) SetHsmType

func (s *DescribeHsmOutput) SetHsmType(v string) *DescribeHsmOutput

SetHsmType sets the HsmType field's value.

func (*DescribeHsmOutput) SetIamRoleArn

func (s *DescribeHsmOutput) SetIamRoleArn(v string) *DescribeHsmOutput

SetIamRoleArn sets the IamRoleArn field's value.

func (*DescribeHsmOutput) SetPartitions

func (s *DescribeHsmOutput) SetPartitions(v []*string) *DescribeHsmOutput

SetPartitions sets the Partitions field's value.

func (*DescribeHsmOutput) SetSerialNumber

func (s *DescribeHsmOutput) SetSerialNumber(v string) *DescribeHsmOutput

SetSerialNumber sets the SerialNumber field's value.

func (*DescribeHsmOutput) SetServerCertLastUpdated

func (s *DescribeHsmOutput) SetServerCertLastUpdated(v string) *DescribeHsmOutput

SetServerCertLastUpdated sets the ServerCertLastUpdated field's value.

func (*DescribeHsmOutput) SetServerCertUri

func (s *DescribeHsmOutput) SetServerCertUri(v string) *DescribeHsmOutput

SetServerCertUri sets the ServerCertUri field's value.

func (*DescribeHsmOutput) SetSoftwareVersion

func (s *DescribeHsmOutput) SetSoftwareVersion(v string) *DescribeHsmOutput

SetSoftwareVersion sets the SoftwareVersion field's value.

func (*DescribeHsmOutput) SetSshKeyLastUpdated

func (s *DescribeHsmOutput) SetSshKeyLastUpdated(v string) *DescribeHsmOutput

SetSshKeyLastUpdated sets the SshKeyLastUpdated field's value.

func (*DescribeHsmOutput) SetSshPublicKey

func (s *DescribeHsmOutput) SetSshPublicKey(v string) *DescribeHsmOutput

SetSshPublicKey sets the SshPublicKey field's value.

func (*DescribeHsmOutput) SetStatus

func (s *DescribeHsmOutput) SetStatus(v string) *DescribeHsmOutput

SetStatus sets the Status field's value.

func (*DescribeHsmOutput) SetStatusDetails

func (s *DescribeHsmOutput) SetStatusDetails(v string) *DescribeHsmOutput

SetStatusDetails sets the StatusDetails field's value.

func (*DescribeHsmOutput) SetSubnetId

func (s *DescribeHsmOutput) SetSubnetId(v string) *DescribeHsmOutput

SetSubnetId sets the SubnetId field's value.

func (*DescribeHsmOutput) SetSubscriptionEndDate

func (s *DescribeHsmOutput) SetSubscriptionEndDate(v string) *DescribeHsmOutput

SetSubscriptionEndDate sets the SubscriptionEndDate field's value.

func (*DescribeHsmOutput) SetSubscriptionStartDate

func (s *DescribeHsmOutput) SetSubscriptionStartDate(v string) *DescribeHsmOutput

SetSubscriptionStartDate sets the SubscriptionStartDate field's value.

func (*DescribeHsmOutput) SetSubscriptionType

func (s *DescribeHsmOutput) SetSubscriptionType(v string) *DescribeHsmOutput

SetSubscriptionType sets the SubscriptionType field's value.

func (*DescribeHsmOutput) SetVendorName

func (s *DescribeHsmOutput) SetVendorName(v string) *DescribeHsmOutput

SetVendorName sets the VendorName field's value.

func (*DescribeHsmOutput) SetVpcId

func (s *DescribeHsmOutput) SetVpcId(v string) *DescribeHsmOutput

SetVpcId sets the VpcId field's value.

func (DescribeHsmOutput) String

func (s DescribeHsmOutput) String() string

String returns the string representation

type DescribeLunaClientInput

type DescribeLunaClientInput struct {

	// The certificate fingerprint.
	CertificateFingerprint *string `type:"string"`

	// The ARN of the client.
	ClientArn *string `type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DescribeLunaClientRequest

func (DescribeLunaClientInput) GoString

func (s DescribeLunaClientInput) GoString() string

GoString returns the string representation

func (*DescribeLunaClientInput) SetCertificateFingerprint

func (s *DescribeLunaClientInput) SetCertificateFingerprint(v string) *DescribeLunaClientInput

SetCertificateFingerprint sets the CertificateFingerprint field's value.

func (*DescribeLunaClientInput) SetClientArn

SetClientArn sets the ClientArn field's value.

func (DescribeLunaClientInput) String

func (s DescribeLunaClientInput) String() string

String returns the string representation

type DescribeLunaClientOutput

type DescribeLunaClientOutput struct {

	// The certificate installed on the HSMs used by this client.
	Certificate *string `min:"600" type:"string"`

	// The certificate fingerprint.
	CertificateFingerprint *string `type:"string"`

	// The ARN of the client.
	ClientArn *string `type:"string"`

	// The label of the client.
	Label *string `type:"string"`

	// The date and time the client was last modified.
	LastModifiedTimestamp *string `type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/DescribeLunaClientResponse

func (DescribeLunaClientOutput) GoString

func (s DescribeLunaClientOutput) GoString() string

GoString returns the string representation

func (*DescribeLunaClientOutput) SetCertificate

SetCertificate sets the Certificate field's value.

func (*DescribeLunaClientOutput) SetCertificateFingerprint

func (s *DescribeLunaClientOutput) SetCertificateFingerprint(v string) *DescribeLunaClientOutput

SetCertificateFingerprint sets the CertificateFingerprint field's value.

func (*DescribeLunaClientOutput) SetClientArn

SetClientArn sets the ClientArn field's value.

func (*DescribeLunaClientOutput) SetLabel

SetLabel sets the Label field's value.

func (*DescribeLunaClientOutput) SetLastModifiedTimestamp

func (s *DescribeLunaClientOutput) SetLastModifiedTimestamp(v string) *DescribeLunaClientOutput

SetLastModifiedTimestamp sets the LastModifiedTimestamp field's value.

func (DescribeLunaClientOutput) String

func (s DescribeLunaClientOutput) String() string

String returns the string representation

type GetConfigInput

type GetConfigInput struct {

	// The ARN of the client.
	//
	// ClientArn is a required field
	ClientArn *string `type:"string" required:"true"`

	// The client version.
	//
	// ClientVersion is a required field
	ClientVersion *string `type:"string" required:"true" enum:"ClientVersion"`

	// A list of ARNs that identify the high-availability partition groups that
	// are associated with the client.
	//
	// HapgList is a required field
	HapgList []*string `type:"list" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/GetConfigRequest

func (GetConfigInput) GoString

func (s GetConfigInput) GoString() string

GoString returns the string representation

func (*GetConfigInput) SetClientArn

func (s *GetConfigInput) SetClientArn(v string) *GetConfigInput

SetClientArn sets the ClientArn field's value.

func (*GetConfigInput) SetClientVersion

func (s *GetConfigInput) SetClientVersion(v string) *GetConfigInput

SetClientVersion sets the ClientVersion field's value.

func (*GetConfigInput) SetHapgList

func (s *GetConfigInput) SetHapgList(v []*string) *GetConfigInput

SetHapgList sets the HapgList field's value.

func (GetConfigInput) String

func (s GetConfigInput) String() string

String returns the string representation

func (*GetConfigInput) Validate

func (s *GetConfigInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetConfigOutput

type GetConfigOutput struct {

	// The certificate file containing the server.pem files of the HSMs.
	ConfigCred *string `type:"string"`

	// The chrystoki.conf configuration file.
	ConfigFile *string `type:"string"`

	// The type of credentials.
	ConfigType *string `type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/GetConfigResponse

func (GetConfigOutput) GoString

func (s GetConfigOutput) GoString() string

GoString returns the string representation

func (*GetConfigOutput) SetConfigCred

func (s *GetConfigOutput) SetConfigCred(v string) *GetConfigOutput

SetConfigCred sets the ConfigCred field's value.

func (*GetConfigOutput) SetConfigFile

func (s *GetConfigOutput) SetConfigFile(v string) *GetConfigOutput

SetConfigFile sets the ConfigFile field's value.

func (*GetConfigOutput) SetConfigType

func (s *GetConfigOutput) SetConfigType(v string) *GetConfigOutput

SetConfigType sets the ConfigType field's value.

func (GetConfigOutput) String

func (s GetConfigOutput) String() string

String returns the string representation

type ListAvailableZonesInput

type ListAvailableZonesInput struct {
	// contains filtered or unexported fields
}

Contains the inputs for the ListAvailableZones action. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListAvailableZonesRequest

func (ListAvailableZonesInput) GoString

func (s ListAvailableZonesInput) GoString() string

GoString returns the string representation

func (ListAvailableZonesInput) String

func (s ListAvailableZonesInput) String() string

String returns the string representation

type ListAvailableZonesOutput

type ListAvailableZonesOutput struct {

	// The list of Availability Zones that have available AWS CloudHSM capacity.
	AZList []*string `type:"list"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListAvailableZonesResponse

func (ListAvailableZonesOutput) GoString

func (s ListAvailableZonesOutput) GoString() string

GoString returns the string representation

func (*ListAvailableZonesOutput) SetAZList

SetAZList sets the AZList field's value.

func (ListAvailableZonesOutput) String

func (s ListAvailableZonesOutput) String() string

String returns the string representation

type ListHapgsInput

type ListHapgsInput struct {

	// The NextToken value from a previous call to ListHapgs. Pass null if this
	// is the first call.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListHapgsRequest

func (ListHapgsInput) GoString

func (s ListHapgsInput) GoString() string

GoString returns the string representation

func (*ListHapgsInput) SetNextToken

func (s *ListHapgsInput) SetNextToken(v string) *ListHapgsInput

SetNextToken sets the NextToken field's value.

func (ListHapgsInput) String

func (s ListHapgsInput) String() string

String returns the string representation

type ListHapgsOutput

type ListHapgsOutput struct {

	// The list of high-availability partition groups.
	//
	// HapgList is a required field
	HapgList []*string `type:"list" required:"true"`

	// If not null, more results are available. Pass this value to ListHapgs to
	// retrieve the next set of items.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListHapgsResponse

func (ListHapgsOutput) GoString

func (s ListHapgsOutput) GoString() string

GoString returns the string representation

func (*ListHapgsOutput) SetHapgList

func (s *ListHapgsOutput) SetHapgList(v []*string) *ListHapgsOutput

SetHapgList sets the HapgList field's value.

func (*ListHapgsOutput) SetNextToken

func (s *ListHapgsOutput) SetNextToken(v string) *ListHapgsOutput

SetNextToken sets the NextToken field's value.

func (ListHapgsOutput) String

func (s ListHapgsOutput) String() string

String returns the string representation

type ListHsmsInput

type ListHsmsInput struct {

	// The NextToken value from a previous call to ListHsms. Pass null if this is
	// the first call.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListHsmsRequest

func (ListHsmsInput) GoString

func (s ListHsmsInput) GoString() string

GoString returns the string representation

func (*ListHsmsInput) SetNextToken

func (s *ListHsmsInput) SetNextToken(v string) *ListHsmsInput

SetNextToken sets the NextToken field's value.

func (ListHsmsInput) String

func (s ListHsmsInput) String() string

String returns the string representation

type ListHsmsOutput

type ListHsmsOutput struct {

	// The list of ARNs that identify the HSMs.
	HsmList []*string `type:"list"`

	// If not null, more results are available. Pass this value to ListHsms to retrieve
	// the next set of items.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

Contains the output of the ListHsms operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListHsmsResponse

func (ListHsmsOutput) GoString

func (s ListHsmsOutput) GoString() string

GoString returns the string representation

func (*ListHsmsOutput) SetHsmList

func (s *ListHsmsOutput) SetHsmList(v []*string) *ListHsmsOutput

SetHsmList sets the HsmList field's value.

func (*ListHsmsOutput) SetNextToken

func (s *ListHsmsOutput) SetNextToken(v string) *ListHsmsOutput

SetNextToken sets the NextToken field's value.

func (ListHsmsOutput) String

func (s ListHsmsOutput) String() string

String returns the string representation

type ListLunaClientsInput

type ListLunaClientsInput struct {

	// The NextToken value from a previous call to ListLunaClients. Pass null if
	// this is the first call.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListLunaClientsRequest

func (ListLunaClientsInput) GoString

func (s ListLunaClientsInput) GoString() string

GoString returns the string representation

func (*ListLunaClientsInput) SetNextToken

func (s *ListLunaClientsInput) SetNextToken(v string) *ListLunaClientsInput

SetNextToken sets the NextToken field's value.

func (ListLunaClientsInput) String

func (s ListLunaClientsInput) String() string

String returns the string representation

type ListLunaClientsOutput

type ListLunaClientsOutput struct {

	// The list of clients.
	//
	// ClientList is a required field
	ClientList []*string `type:"list" required:"true"`

	// If not null, more results are available. Pass this to ListLunaClients to
	// retrieve the next set of items.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListLunaClientsResponse

func (ListLunaClientsOutput) GoString

func (s ListLunaClientsOutput) GoString() string

GoString returns the string representation

func (*ListLunaClientsOutput) SetClientList

func (s *ListLunaClientsOutput) SetClientList(v []*string) *ListLunaClientsOutput

SetClientList sets the ClientList field's value.

func (*ListLunaClientsOutput) SetNextToken

SetNextToken sets the NextToken field's value.

func (ListLunaClientsOutput) String

func (s ListLunaClientsOutput) String() string

String returns the string representation

type ListTagsForResourceInput

type ListTagsForResourceInput struct {

	// The Amazon Resource Name (ARN) of the AWS CloudHSM resource.
	//
	// ResourceArn is a required field
	ResourceArn *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListTagsForResourceRequest

func (ListTagsForResourceInput) GoString

func (s ListTagsForResourceInput) GoString() string

GoString returns the string representation

func (*ListTagsForResourceInput) SetResourceArn

SetResourceArn sets the ResourceArn field's value.

func (ListTagsForResourceInput) String

func (s ListTagsForResourceInput) String() string

String returns the string representation

func (*ListTagsForResourceInput) Validate

func (s *ListTagsForResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListTagsForResourceOutput

type ListTagsForResourceOutput struct {

	// One or more tags.
	//
	// TagList is a required field
	TagList []*Tag `type:"list" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ListTagsForResourceResponse

func (ListTagsForResourceOutput) GoString

func (s ListTagsForResourceOutput) GoString() string

GoString returns the string representation

func (*ListTagsForResourceOutput) SetTagList

SetTagList sets the TagList field's value.

func (ListTagsForResourceOutput) String

func (s ListTagsForResourceOutput) String() string

String returns the string representation

type ModifyHapgInput

type ModifyHapgInput struct {

	// The ARN of the high-availability partition group to modify.
	//
	// HapgArn is a required field
	HapgArn *string `type:"string" required:"true"`

	// The new label for the high-availability partition group.
	Label *string `type:"string"`

	// The list of partition serial numbers to make members of the high-availability
	// partition group.
	PartitionSerialList []*string `type:"list"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ModifyHapgRequest

func (ModifyHapgInput) GoString

func (s ModifyHapgInput) GoString() string

GoString returns the string representation

func (*ModifyHapgInput) SetHapgArn

func (s *ModifyHapgInput) SetHapgArn(v string) *ModifyHapgInput

SetHapgArn sets the HapgArn field's value.

func (*ModifyHapgInput) SetLabel

func (s *ModifyHapgInput) SetLabel(v string) *ModifyHapgInput

SetLabel sets the Label field's value.

func (*ModifyHapgInput) SetPartitionSerialList

func (s *ModifyHapgInput) SetPartitionSerialList(v []*string) *ModifyHapgInput

SetPartitionSerialList sets the PartitionSerialList field's value.

func (ModifyHapgInput) String

func (s ModifyHapgInput) String() string

String returns the string representation

func (*ModifyHapgInput) Validate

func (s *ModifyHapgInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyHapgOutput

type ModifyHapgOutput struct {

	// The ARN of the high-availability partition group.
	HapgArn *string `type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ModifyHapgResponse

func (ModifyHapgOutput) GoString

func (s ModifyHapgOutput) GoString() string

GoString returns the string representation

func (*ModifyHapgOutput) SetHapgArn

func (s *ModifyHapgOutput) SetHapgArn(v string) *ModifyHapgOutput

SetHapgArn sets the HapgArn field's value.

func (ModifyHapgOutput) String

func (s ModifyHapgOutput) String() string

String returns the string representation

type ModifyHsmInput

type ModifyHsmInput struct {

	// 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 `locationName:"EniIp" type:"string"`

	// The new external ID.
	ExternalId *string `locationName:"ExternalId" type:"string"`

	// The ARN of the HSM to modify.
	//
	// HsmArn is a required field
	HsmArn *string `locationName:"HsmArn" type:"string" required:"true"`

	// The new IAM role ARN.
	IamRoleArn *string `locationName:"IamRoleArn" type:"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 `locationName:"SubnetId" type:"string"`

	// The new IP address for the syslog monitoring server. The AWS CloudHSM service
	// only supports one syslog monitoring server.
	SyslogIp *string `locationName:"SyslogIp" type:"string"`
	// contains filtered or unexported fields
}

Contains the inputs for the ModifyHsm operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ModifyHsmRequest

func (ModifyHsmInput) GoString

func (s ModifyHsmInput) GoString() string

GoString returns the string representation

func (*ModifyHsmInput) SetEniIp

func (s *ModifyHsmInput) SetEniIp(v string) *ModifyHsmInput

SetEniIp sets the EniIp field's value.

func (*ModifyHsmInput) SetExternalId

func (s *ModifyHsmInput) SetExternalId(v string) *ModifyHsmInput

SetExternalId sets the ExternalId field's value.

func (*ModifyHsmInput) SetHsmArn

func (s *ModifyHsmInput) SetHsmArn(v string) *ModifyHsmInput

SetHsmArn sets the HsmArn field's value.

func (*ModifyHsmInput) SetIamRoleArn

func (s *ModifyHsmInput) SetIamRoleArn(v string) *ModifyHsmInput

SetIamRoleArn sets the IamRoleArn field's value.

func (*ModifyHsmInput) SetSubnetId

func (s *ModifyHsmInput) SetSubnetId(v string) *ModifyHsmInput

SetSubnetId sets the SubnetId field's value.

func (*ModifyHsmInput) SetSyslogIp

func (s *ModifyHsmInput) SetSyslogIp(v string) *ModifyHsmInput

SetSyslogIp sets the SyslogIp field's value.

func (ModifyHsmInput) String

func (s ModifyHsmInput) String() string

String returns the string representation

func (*ModifyHsmInput) Validate

func (s *ModifyHsmInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyHsmOutput

type ModifyHsmOutput struct {

	// The ARN of the HSM.
	HsmArn *string `type:"string"`
	// contains filtered or unexported fields
}

Contains the output of the ModifyHsm operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ModifyHsmResponse

func (ModifyHsmOutput) GoString

func (s ModifyHsmOutput) GoString() string

GoString returns the string representation

func (*ModifyHsmOutput) SetHsmArn

func (s *ModifyHsmOutput) SetHsmArn(v string) *ModifyHsmOutput

SetHsmArn sets the HsmArn field's value.

func (ModifyHsmOutput) String

func (s ModifyHsmOutput) String() string

String returns the string representation

type ModifyLunaClientInput

type ModifyLunaClientInput struct {

	// The new certificate for the client.
	//
	// Certificate is a required field
	Certificate *string `min:"600" type:"string" required:"true"`

	// The ARN of the client.
	//
	// ClientArn is a required field
	ClientArn *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ModifyLunaClientRequest

func (ModifyLunaClientInput) GoString

func (s ModifyLunaClientInput) GoString() string

GoString returns the string representation

func (*ModifyLunaClientInput) SetCertificate

func (s *ModifyLunaClientInput) SetCertificate(v string) *ModifyLunaClientInput

SetCertificate sets the Certificate field's value.

func (*ModifyLunaClientInput) SetClientArn

SetClientArn sets the ClientArn field's value.

func (ModifyLunaClientInput) String

func (s ModifyLunaClientInput) String() string

String returns the string representation

func (*ModifyLunaClientInput) Validate

func (s *ModifyLunaClientInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyLunaClientOutput

type ModifyLunaClientOutput struct {

	// The ARN of the client.
	ClientArn *string `type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/ModifyLunaClientResponse

func (ModifyLunaClientOutput) GoString

func (s ModifyLunaClientOutput) GoString() string

GoString returns the string representation

func (*ModifyLunaClientOutput) SetClientArn

SetClientArn sets the ClientArn field's value.

func (ModifyLunaClientOutput) String

func (s ModifyLunaClientOutput) String() string

String returns the string representation

type RemoveTagsFromResourceInput

type RemoveTagsFromResourceInput struct {

	// The Amazon Resource Name (ARN) of the AWS CloudHSM resource.
	//
	// ResourceArn is a required field
	ResourceArn *string `type:"string" required:"true"`

	// 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.
	//
	// TagKeyList is a required field
	TagKeyList []*string `type:"list" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/RemoveTagsFromResourceRequest

func (RemoveTagsFromResourceInput) GoString

func (s RemoveTagsFromResourceInput) GoString() string

GoString returns the string representation

func (*RemoveTagsFromResourceInput) SetResourceArn

SetResourceArn sets the ResourceArn field's value.

func (*RemoveTagsFromResourceInput) SetTagKeyList

SetTagKeyList sets the TagKeyList field's value.

func (RemoveTagsFromResourceInput) String

String returns the string representation

func (*RemoveTagsFromResourceInput) Validate

func (s *RemoveTagsFromResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RemoveTagsFromResourceOutput

type RemoveTagsFromResourceOutput struct {

	// The status of the operation.
	//
	// Status is a required field
	Status *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/RemoveTagsFromResourceResponse

func (RemoveTagsFromResourceOutput) GoString

func (s RemoveTagsFromResourceOutput) GoString() string

GoString returns the string representation

func (*RemoveTagsFromResourceOutput) SetStatus

SetStatus sets the Status field's value.

func (RemoveTagsFromResourceOutput) String

String returns the string representation

type Tag

type Tag struct {

	// The key of the tag.
	//
	// Key is a required field
	Key *string `min:"1" type:"string" required:"true"`

	// The value of the tag.
	//
	// Value is a required field
	Value *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

A key-value pair that identifies or specifies metadata about an AWS CloudHSM resource. Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/Tag

func (Tag) GoString

func (s Tag) GoString() string

GoString returns the string representation

func (*Tag) SetKey

func (s *Tag) SetKey(v string) *Tag

SetKey sets the Key field's value.

func (*Tag) SetValue

func (s *Tag) SetValue(v string) *Tag

SetValue sets the Value field's value.

func (Tag) String

func (s Tag) String() string

String returns the string representation

func (*Tag) Validate

func (s *Tag) Validate() error

Validate inspects the fields of the type to determine if they are valid.

Directories

Path Synopsis
Package cloudhsmiface provides an interface to enable mocking the Amazon CloudHSM service client for testing your code.
Package cloudhsmiface provides an interface to enable mocking the Amazon CloudHSM service client for testing your code.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL