clouddirectory - ActiveState ActiveGo 1.8
...

Package clouddirectory

import "github.com/aws/aws-sdk-go/service/clouddirectory"
Overview
Index
Subdirectories

Overview ▾

Package clouddirectory provides the client and types for making API requests to Amazon CloudDirectory.

Amazon Cloud Directory is a component of the AWS Directory Service that simplifies the development and management of cloud-scale web, mobile, and IoT applications. This guide describes the Cloud Directory operations that you can call programmatically and includes detailed information on data types and errors. For information about AWS Directory Services features, see AWS Directory Service (https://aws.amazon.com/directoryservice/) and the AWS Directory Service Administration Guide (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/what_is.html).

See https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10 for more information on this service.

See clouddirectory package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/clouddirectory/

Using the Client

To use the client for Amazon CloudDirectory you will first need to create a new instance of it.

When creating a client for an AWS service you'll first need to have a Session already created. The Session provides configuration that can be shared between multiple service clients. Additional configuration can be applied to the Session and service's client when they are constructed. The aws package's Config type contains several fields such as Region for the AWS Region the client should make API requests too. The optional Config value can be provided as the variadic argument for Sessions and client creation.

Once the service's client is created you can use it to make API requests the AWS service. These clients are safe to use concurrently.

// Create a session to share configuration, and load external configuration.
sess := session.Must(session.NewSession())

// Create the service's client with the session.
svc := clouddirectory.New(sess)

See the SDK's documentation for more information on how to use service clients. https://docs.aws.amazon.com/sdk-for-go/api/

See aws package's Config type for more information on configuration options. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the Amazon CloudDirectory client CloudDirectory for more information on creating the service's client. https://docs.aws.amazon.com/sdk-for-go/api/service/clouddirectory/#New

Once the client is created you can make an API request to the service. Each API method takes a input parameter, and returns the service response and an error.

The API method will document which error codes the service can be returned by the operation if the service models the API operation's errors. These errors will also be available as const strings prefixed with "ErrCode".

result, err := svc.AddFacetToObject(params)
if err != nil {
    // Cast err to awserr.Error to handle specific error codes.
    aerr, ok := err.(awserr.Error)
    if ok && aerr.Code() == <error code to check for> {
        // Specific error code handling
    }
    return err
}

fmt.Println("AddFacetToObject result:")
fmt.Println(result)

Using the Client with Context

The service's client also provides methods to make API requests with a Context value. This allows you to control the timeout, and cancellation of pending requests. These methods also take request Option as variadic parameter to apply additional configuration to the API request.

ctx := context.Background()

result, err := svc.AddFacetToObjectWithContext(ctx, params)

See the request package documentation for more information on using Context pattern with the SDK. https://docs.aws.amazon.com/sdk-for-go/api/aws/request/

Index ▾

Constants
type AddFacetToObjectInput
    func (s AddFacetToObjectInput) GoString() string
    func (s *AddFacetToObjectInput) SetDirectoryArn(v string) *AddFacetToObjectInput
    func (s *AddFacetToObjectInput) SetObjectAttributeList(v []*AttributeKeyAndValue) *AddFacetToObjectInput
    func (s *AddFacetToObjectInput) SetObjectReference(v *ObjectReference) *AddFacetToObjectInput
    func (s *AddFacetToObjectInput) SetSchemaFacet(v *SchemaFacet) *AddFacetToObjectInput
    func (s AddFacetToObjectInput) String() string
    func (s *AddFacetToObjectInput) Validate() error
type AddFacetToObjectOutput
    func (s AddFacetToObjectOutput) GoString() string
    func (s AddFacetToObjectOutput) String() string
type ApplySchemaInput
    func (s ApplySchemaInput) GoString() string
    func (s *ApplySchemaInput) SetDirectoryArn(v string) *ApplySchemaInput
    func (s *ApplySchemaInput) SetPublishedSchemaArn(v string) *ApplySchemaInput
    func (s ApplySchemaInput) String() string
    func (s *ApplySchemaInput) Validate() error
type ApplySchemaOutput
    func (s ApplySchemaOutput) GoString() string
    func (s *ApplySchemaOutput) SetAppliedSchemaArn(v string) *ApplySchemaOutput
    func (s *ApplySchemaOutput) SetDirectoryArn(v string) *ApplySchemaOutput
    func (s ApplySchemaOutput) String() string
type AttachObjectInput
    func (s AttachObjectInput) GoString() string
    func (s *AttachObjectInput) SetChildReference(v *ObjectReference) *AttachObjectInput
    func (s *AttachObjectInput) SetDirectoryArn(v string) *AttachObjectInput
    func (s *AttachObjectInput) SetLinkName(v string) *AttachObjectInput
    func (s *AttachObjectInput) SetParentReference(v *ObjectReference) *AttachObjectInput
    func (s AttachObjectInput) String() string
    func (s *AttachObjectInput) Validate() error
type AttachObjectOutput
    func (s AttachObjectOutput) GoString() string
    func (s *AttachObjectOutput) SetAttachedObjectIdentifier(v string) *AttachObjectOutput
    func (s AttachObjectOutput) String() string
type AttachPolicyInput
    func (s AttachPolicyInput) GoString() string
    func (s *AttachPolicyInput) SetDirectoryArn(v string) *AttachPolicyInput
    func (s *AttachPolicyInput) SetObjectReference(v *ObjectReference) *AttachPolicyInput
    func (s *AttachPolicyInput) SetPolicyReference(v *ObjectReference) *AttachPolicyInput
    func (s AttachPolicyInput) String() string
    func (s *AttachPolicyInput) Validate() error
type AttachPolicyOutput
    func (s AttachPolicyOutput) GoString() string
    func (s AttachPolicyOutput) String() string
type AttachToIndexInput
    func (s AttachToIndexInput) GoString() string
    func (s *AttachToIndexInput) SetDirectoryArn(v string) *AttachToIndexInput
    func (s *AttachToIndexInput) SetIndexReference(v *ObjectReference) *AttachToIndexInput
    func (s *AttachToIndexInput) SetTargetReference(v *ObjectReference) *AttachToIndexInput
    func (s AttachToIndexInput) String() string
    func (s *AttachToIndexInput) Validate() error
type AttachToIndexOutput
    func (s AttachToIndexOutput) GoString() string
    func (s *AttachToIndexOutput) SetAttachedObjectIdentifier(v string) *AttachToIndexOutput
    func (s AttachToIndexOutput) String() string
type AttachTypedLinkInput
    func (s AttachTypedLinkInput) GoString() string
    func (s *AttachTypedLinkInput) SetAttributes(v []*AttributeNameAndValue) *AttachTypedLinkInput
    func (s *AttachTypedLinkInput) SetDirectoryArn(v string) *AttachTypedLinkInput
    func (s *AttachTypedLinkInput) SetSourceObjectReference(v *ObjectReference) *AttachTypedLinkInput
    func (s *AttachTypedLinkInput) SetTargetObjectReference(v *ObjectReference) *AttachTypedLinkInput
    func (s *AttachTypedLinkInput) SetTypedLinkFacet(v *TypedLinkSchemaAndFacetName) *AttachTypedLinkInput
    func (s AttachTypedLinkInput) String() string
    func (s *AttachTypedLinkInput) Validate() error
type AttachTypedLinkOutput
    func (s AttachTypedLinkOutput) GoString() string
    func (s *AttachTypedLinkOutput) SetTypedLinkSpecifier(v *TypedLinkSpecifier) *AttachTypedLinkOutput
    func (s AttachTypedLinkOutput) String() string
type AttributeKey
    func (s AttributeKey) GoString() string
    func (s *AttributeKey) SetFacetName(v string) *AttributeKey
    func (s *AttributeKey) SetName(v string) *AttributeKey
    func (s *AttributeKey) SetSchemaArn(v string) *AttributeKey
    func (s AttributeKey) String() string
    func (s *AttributeKey) Validate() error
type AttributeKeyAndValue
    func (s AttributeKeyAndValue) GoString() string
    func (s *AttributeKeyAndValue) SetKey(v *AttributeKey) *AttributeKeyAndValue
    func (s *AttributeKeyAndValue) SetValue(v *TypedAttributeValue) *AttributeKeyAndValue
    func (s AttributeKeyAndValue) String() string
    func (s *AttributeKeyAndValue) Validate() error
type AttributeNameAndValue
    func (s AttributeNameAndValue) GoString() string
    func (s *AttributeNameAndValue) SetAttributeName(v string) *AttributeNameAndValue
    func (s *AttributeNameAndValue) SetValue(v *TypedAttributeValue) *AttributeNameAndValue
    func (s AttributeNameAndValue) String() string
    func (s *AttributeNameAndValue) Validate() error
type BatchAddFacetToObject
    func (s BatchAddFacetToObject) GoString() string
    func (s *BatchAddFacetToObject) SetObjectAttributeList(v []*AttributeKeyAndValue) *BatchAddFacetToObject
    func (s *BatchAddFacetToObject) SetObjectReference(v *ObjectReference) *BatchAddFacetToObject
    func (s *BatchAddFacetToObject) SetSchemaFacet(v *SchemaFacet) *BatchAddFacetToObject
    func (s BatchAddFacetToObject) String() string
    func (s *BatchAddFacetToObject) Validate() error
type BatchAddFacetToObjectResponse
    func (s BatchAddFacetToObjectResponse) GoString() string
    func (s BatchAddFacetToObjectResponse) String() string
type BatchAttachObject
    func (s BatchAttachObject) GoString() string
    func (s *BatchAttachObject) SetChildReference(v *ObjectReference) *BatchAttachObject
    func (s *BatchAttachObject) SetLinkName(v string) *BatchAttachObject
    func (s *BatchAttachObject) SetParentReference(v *ObjectReference) *BatchAttachObject
    func (s BatchAttachObject) String() string
    func (s *BatchAttachObject) Validate() error
type BatchAttachObjectResponse
    func (s BatchAttachObjectResponse) GoString() string
    func (s *BatchAttachObjectResponse) SetAttachedObjectIdentifier(v string) *BatchAttachObjectResponse
    func (s BatchAttachObjectResponse) String() string
type BatchCreateObject
    func (s BatchCreateObject) GoString() string
    func (s *BatchCreateObject) SetBatchReferenceName(v string) *BatchCreateObject
    func (s *BatchCreateObject) SetLinkName(v string) *BatchCreateObject
    func (s *BatchCreateObject) SetObjectAttributeList(v []*AttributeKeyAndValue) *BatchCreateObject
    func (s *BatchCreateObject) SetParentReference(v *ObjectReference) *BatchCreateObject
    func (s *BatchCreateObject) SetSchemaFacet(v []*SchemaFacet) *BatchCreateObject
    func (s BatchCreateObject) String() string
    func (s *BatchCreateObject) Validate() error
type BatchCreateObjectResponse
    func (s BatchCreateObjectResponse) GoString() string
    func (s *BatchCreateObjectResponse) SetObjectIdentifier(v string) *BatchCreateObjectResponse
    func (s BatchCreateObjectResponse) String() string
type BatchDeleteObject
    func (s BatchDeleteObject) GoString() string
    func (s *BatchDeleteObject) SetObjectReference(v *ObjectReference) *BatchDeleteObject
    func (s BatchDeleteObject) String() string
    func (s *BatchDeleteObject) Validate() error
type BatchDeleteObjectResponse
    func (s BatchDeleteObjectResponse) GoString() string
    func (s BatchDeleteObjectResponse) String() string
type BatchDetachObject
    func (s BatchDetachObject) GoString() string
    func (s *BatchDetachObject) SetBatchReferenceName(v string) *BatchDetachObject
    func (s *BatchDetachObject) SetLinkName(v string) *BatchDetachObject
    func (s *BatchDetachObject) SetParentReference(v *ObjectReference) *BatchDetachObject
    func (s BatchDetachObject) String() string
    func (s *BatchDetachObject) Validate() error
type BatchDetachObjectResponse
    func (s BatchDetachObjectResponse) GoString() string
    func (s *BatchDetachObjectResponse) SetDetachedObjectIdentifier(v string) *BatchDetachObjectResponse
    func (s BatchDetachObjectResponse) String() string
type BatchListObjectAttributes
    func (s BatchListObjectAttributes) GoString() string
    func (s *BatchListObjectAttributes) SetFacetFilter(v *SchemaFacet) *BatchListObjectAttributes
    func (s *BatchListObjectAttributes) SetMaxResults(v int64) *BatchListObjectAttributes
    func (s *BatchListObjectAttributes) SetNextToken(v string) *BatchListObjectAttributes
    func (s *BatchListObjectAttributes) SetObjectReference(v *ObjectReference) *BatchListObjectAttributes
    func (s BatchListObjectAttributes) String() string
    func (s *BatchListObjectAttributes) Validate() error
type BatchListObjectAttributesResponse
    func (s BatchListObjectAttributesResponse) GoString() string
    func (s *BatchListObjectAttributesResponse) SetAttributes(v []*AttributeKeyAndValue) *BatchListObjectAttributesResponse
    func (s *BatchListObjectAttributesResponse) SetNextToken(v string) *BatchListObjectAttributesResponse
    func (s BatchListObjectAttributesResponse) String() string
type BatchListObjectChildren
    func (s BatchListObjectChildren) GoString() string
    func (s *BatchListObjectChildren) SetMaxResults(v int64) *BatchListObjectChildren
    func (s *BatchListObjectChildren) SetNextToken(v string) *BatchListObjectChildren
    func (s *BatchListObjectChildren) SetObjectReference(v *ObjectReference) *BatchListObjectChildren
    func (s BatchListObjectChildren) String() string
    func (s *BatchListObjectChildren) Validate() error
type BatchListObjectChildrenResponse
    func (s BatchListObjectChildrenResponse) GoString() string
    func (s *BatchListObjectChildrenResponse) SetChildren(v map[string]*string) *BatchListObjectChildrenResponse
    func (s *BatchListObjectChildrenResponse) SetNextToken(v string) *BatchListObjectChildrenResponse
    func (s BatchListObjectChildrenResponse) String() string
type BatchReadException
    func (s BatchReadException) GoString() string
    func (s *BatchReadException) SetMessage(v string) *BatchReadException
    func (s *BatchReadException) SetType(v string) *BatchReadException
    func (s BatchReadException) String() string
type BatchReadInput
    func (s BatchReadInput) GoString() string
    func (s *BatchReadInput) SetConsistencyLevel(v string) *BatchReadInput
    func (s *BatchReadInput) SetDirectoryArn(v string) *BatchReadInput
    func (s *BatchReadInput) SetOperations(v []*BatchReadOperation) *BatchReadInput
    func (s BatchReadInput) String() string
    func (s *BatchReadInput) Validate() error
type BatchReadOperation
    func (s BatchReadOperation) GoString() string
    func (s *BatchReadOperation) SetListObjectAttributes(v *BatchListObjectAttributes) *BatchReadOperation
    func (s *BatchReadOperation) SetListObjectChildren(v *BatchListObjectChildren) *BatchReadOperation
    func (s BatchReadOperation) String() string
    func (s *BatchReadOperation) Validate() error
type BatchReadOperationResponse
    func (s BatchReadOperationResponse) GoString() string
    func (s *BatchReadOperationResponse) SetExceptionResponse(v *BatchReadException) *BatchReadOperationResponse
    func (s *BatchReadOperationResponse) SetSuccessfulResponse(v *BatchReadSuccessfulResponse) *BatchReadOperationResponse
    func (s BatchReadOperationResponse) String() string
type BatchReadOutput
    func (s BatchReadOutput) GoString() string
    func (s *BatchReadOutput) SetResponses(v []*BatchReadOperationResponse) *BatchReadOutput
    func (s BatchReadOutput) String() string
type BatchReadSuccessfulResponse
    func (s BatchReadSuccessfulResponse) GoString() string
    func (s *BatchReadSuccessfulResponse) SetListObjectAttributes(v *BatchListObjectAttributesResponse) *BatchReadSuccessfulResponse
    func (s *BatchReadSuccessfulResponse) SetListObjectChildren(v *BatchListObjectChildrenResponse) *BatchReadSuccessfulResponse
    func (s BatchReadSuccessfulResponse) String() string
type BatchRemoveFacetFromObject
    func (s BatchRemoveFacetFromObject) GoString() string
    func (s *BatchRemoveFacetFromObject) SetObjectReference(v *ObjectReference) *BatchRemoveFacetFromObject
    func (s *BatchRemoveFacetFromObject) SetSchemaFacet(v *SchemaFacet) *BatchRemoveFacetFromObject
    func (s BatchRemoveFacetFromObject) String() string
    func (s *BatchRemoveFacetFromObject) Validate() error
type BatchRemoveFacetFromObjectResponse
    func (s BatchRemoveFacetFromObjectResponse) GoString() string
    func (s BatchRemoveFacetFromObjectResponse) String() string
type BatchUpdateObjectAttributes
    func (s BatchUpdateObjectAttributes) GoString() string
    func (s *BatchUpdateObjectAttributes) SetAttributeUpdates(v []*ObjectAttributeUpdate) *BatchUpdateObjectAttributes
    func (s *BatchUpdateObjectAttributes) SetObjectReference(v *ObjectReference) *BatchUpdateObjectAttributes
    func (s BatchUpdateObjectAttributes) String() string
    func (s *BatchUpdateObjectAttributes) Validate() error
type BatchUpdateObjectAttributesResponse
    func (s BatchUpdateObjectAttributesResponse) GoString() string
    func (s *BatchUpdateObjectAttributesResponse) SetObjectIdentifier(v string) *BatchUpdateObjectAttributesResponse
    func (s BatchUpdateObjectAttributesResponse) String() string
type BatchWriteInput
    func (s BatchWriteInput) GoString() string
    func (s *BatchWriteInput) SetDirectoryArn(v string) *BatchWriteInput
    func (s *BatchWriteInput) SetOperations(v []*BatchWriteOperation) *BatchWriteInput
    func (s BatchWriteInput) String() string
    func (s *BatchWriteInput) Validate() error
type BatchWriteOperation
    func (s BatchWriteOperation) GoString() string
    func (s *BatchWriteOperation) SetAddFacetToObject(v *BatchAddFacetToObject) *BatchWriteOperation
    func (s *BatchWriteOperation) SetAttachObject(v *BatchAttachObject) *BatchWriteOperation
    func (s *BatchWriteOperation) SetCreateObject(v *BatchCreateObject) *BatchWriteOperation
    func (s *BatchWriteOperation) SetDeleteObject(v *BatchDeleteObject) *BatchWriteOperation
    func (s *BatchWriteOperation) SetDetachObject(v *BatchDetachObject) *BatchWriteOperation
    func (s *BatchWriteOperation) SetRemoveFacetFromObject(v *BatchRemoveFacetFromObject) *BatchWriteOperation
    func (s *BatchWriteOperation) SetUpdateObjectAttributes(v *BatchUpdateObjectAttributes) *BatchWriteOperation
    func (s BatchWriteOperation) String() string
    func (s *BatchWriteOperation) Validate() error
type BatchWriteOperationResponse
    func (s BatchWriteOperationResponse) GoString() string
    func (s *BatchWriteOperationResponse) SetAddFacetToObject(v *BatchAddFacetToObjectResponse) *BatchWriteOperationResponse
    func (s *BatchWriteOperationResponse) SetAttachObject(v *BatchAttachObjectResponse) *BatchWriteOperationResponse
    func (s *BatchWriteOperationResponse) SetCreateObject(v *BatchCreateObjectResponse) *BatchWriteOperationResponse
    func (s *BatchWriteOperationResponse) SetDeleteObject(v *BatchDeleteObjectResponse) *BatchWriteOperationResponse
    func (s *BatchWriteOperationResponse) SetDetachObject(v *BatchDetachObjectResponse) *BatchWriteOperationResponse
    func (s *BatchWriteOperationResponse) SetRemoveFacetFromObject(v *BatchRemoveFacetFromObjectResponse) *BatchWriteOperationResponse
    func (s *BatchWriteOperationResponse) SetUpdateObjectAttributes(v *BatchUpdateObjectAttributesResponse) *BatchWriteOperationResponse
    func (s BatchWriteOperationResponse) String() string
type BatchWriteOutput
    func (s BatchWriteOutput) GoString() string
    func (s *BatchWriteOutput) SetResponses(v []*BatchWriteOperationResponse) *BatchWriteOutput
    func (s BatchWriteOutput) String() string
type CloudDirectory
    func New(p client.ConfigProvider, cfgs ...*aws.Config) *CloudDirectory
    func (c *CloudDirectory) AddFacetToObject(input *AddFacetToObjectInput) (*AddFacetToObjectOutput, error)
    func (c *CloudDirectory) AddFacetToObjectRequest(input *AddFacetToObjectInput) (req *request.Request, output *AddFacetToObjectOutput)
    func (c *CloudDirectory) AddFacetToObjectWithContext(ctx aws.Context, input *AddFacetToObjectInput, opts ...request.Option) (*AddFacetToObjectOutput, error)
    func (c *CloudDirectory) ApplySchema(input *ApplySchemaInput) (*ApplySchemaOutput, error)
    func (c *CloudDirectory) ApplySchemaRequest(input *ApplySchemaInput) (req *request.Request, output *ApplySchemaOutput)
    func (c *CloudDirectory) ApplySchemaWithContext(ctx aws.Context, input *ApplySchemaInput, opts ...request.Option) (*ApplySchemaOutput, error)
    func (c *CloudDirectory) AttachObject(input *AttachObjectInput) (*AttachObjectOutput, error)
    func (c *CloudDirectory) AttachObjectRequest(input *AttachObjectInput) (req *request.Request, output *AttachObjectOutput)
    func (c *CloudDirectory) AttachObjectWithContext(ctx aws.Context, input *AttachObjectInput, opts ...request.Option) (*AttachObjectOutput, error)
    func (c *CloudDirectory) AttachPolicy(input *AttachPolicyInput) (*AttachPolicyOutput, error)
    func (c *CloudDirectory) AttachPolicyRequest(input *AttachPolicyInput) (req *request.Request, output *AttachPolicyOutput)
    func (c *CloudDirectory) AttachPolicyWithContext(ctx aws.Context, input *AttachPolicyInput, opts ...request.Option) (*AttachPolicyOutput, error)
    func (c *CloudDirectory) AttachToIndex(input *AttachToIndexInput) (*AttachToIndexOutput, error)
    func (c *CloudDirectory) AttachToIndexRequest(input *AttachToIndexInput) (req *request.Request, output *AttachToIndexOutput)
    func (c *CloudDirectory) AttachToIndexWithContext(ctx aws.Context, input *AttachToIndexInput, opts ...request.Option) (*AttachToIndexOutput, error)
    func (c *CloudDirectory) AttachTypedLink(input *AttachTypedLinkInput) (*AttachTypedLinkOutput, error)
    func (c *CloudDirectory) AttachTypedLinkRequest(input *AttachTypedLinkInput) (req *request.Request, output *AttachTypedLinkOutput)
    func (c *CloudDirectory) AttachTypedLinkWithContext(ctx aws.Context, input *AttachTypedLinkInput, opts ...request.Option) (*AttachTypedLinkOutput, error)
    func (c *CloudDirectory) BatchRead(input *BatchReadInput) (*BatchReadOutput, error)
    func (c *CloudDirectory) BatchReadRequest(input *BatchReadInput) (req *request.Request, output *BatchReadOutput)
    func (c *CloudDirectory) BatchReadWithContext(ctx aws.Context, input *BatchReadInput, opts ...request.Option) (*BatchReadOutput, error)
    func (c *CloudDirectory) BatchWrite(input *BatchWriteInput) (*BatchWriteOutput, error)
    func (c *CloudDirectory) BatchWriteRequest(input *BatchWriteInput) (req *request.Request, output *BatchWriteOutput)
    func (c *CloudDirectory) BatchWriteWithContext(ctx aws.Context, input *BatchWriteInput, opts ...request.Option) (*BatchWriteOutput, error)
    func (c *CloudDirectory) CreateDirectory(input *CreateDirectoryInput) (*CreateDirectoryOutput, error)
    func (c *CloudDirectory) CreateDirectoryRequest(input *CreateDirectoryInput) (req *request.Request, output *CreateDirectoryOutput)
    func (c *CloudDirectory) CreateDirectoryWithContext(ctx aws.Context, input *CreateDirectoryInput, opts ...request.Option) (*CreateDirectoryOutput, error)
    func (c *CloudDirectory) CreateFacet(input *CreateFacetInput) (*CreateFacetOutput, error)
    func (c *CloudDirectory) CreateFacetRequest(input *CreateFacetInput) (req *request.Request, output *CreateFacetOutput)
    func (c *CloudDirectory) CreateFacetWithContext(ctx aws.Context, input *CreateFacetInput, opts ...request.Option) (*CreateFacetOutput, error)
    func (c *CloudDirectory) CreateIndex(input *CreateIndexInput) (*CreateIndexOutput, error)
    func (c *CloudDirectory) CreateIndexRequest(input *CreateIndexInput) (req *request.Request, output *CreateIndexOutput)
    func (c *CloudDirectory) CreateIndexWithContext(ctx aws.Context, input *CreateIndexInput, opts ...request.Option) (*CreateIndexOutput, error)
    func (c *CloudDirectory) CreateObject(input *CreateObjectInput) (*CreateObjectOutput, error)
    func (c *CloudDirectory) CreateObjectRequest(input *CreateObjectInput) (req *request.Request, output *CreateObjectOutput)
    func (c *CloudDirectory) CreateObjectWithContext(ctx aws.Context, input *CreateObjectInput, opts ...request.Option) (*CreateObjectOutput, error)
    func (c *CloudDirectory) CreateSchema(input *CreateSchemaInput) (*CreateSchemaOutput, error)
    func (c *CloudDirectory) CreateSchemaRequest(input *CreateSchemaInput) (req *request.Request, output *CreateSchemaOutput)
    func (c *CloudDirectory) CreateSchemaWithContext(ctx aws.Context, input *CreateSchemaInput, opts ...request.Option) (*CreateSchemaOutput, error)
    func (c *CloudDirectory) CreateTypedLinkFacet(input *CreateTypedLinkFacetInput) (*CreateTypedLinkFacetOutput, error)
    func (c *CloudDirectory) CreateTypedLinkFacetRequest(input *CreateTypedLinkFacetInput) (req *request.Request, output *CreateTypedLinkFacetOutput)
    func (c *CloudDirectory) CreateTypedLinkFacetWithContext(ctx aws.Context, input *CreateTypedLinkFacetInput, opts ...request.Option) (*CreateTypedLinkFacetOutput, error)
    func (c *CloudDirectory) DeleteDirectory(input *DeleteDirectoryInput) (*DeleteDirectoryOutput, error)
    func (c *CloudDirectory) DeleteDirectoryRequest(input *DeleteDirectoryInput) (req *request.Request, output *DeleteDirectoryOutput)
    func (c *CloudDirectory) DeleteDirectoryWithContext(ctx aws.Context, input *DeleteDirectoryInput, opts ...request.Option) (*DeleteDirectoryOutput, error)
    func (c *CloudDirectory) DeleteFacet(input *DeleteFacetInput) (*DeleteFacetOutput, error)
    func (c *CloudDirectory) DeleteFacetRequest(input *DeleteFacetInput) (req *request.Request, output *DeleteFacetOutput)
    func (c *CloudDirectory) DeleteFacetWithContext(ctx aws.Context, input *DeleteFacetInput, opts ...request.Option) (*DeleteFacetOutput, error)
    func (c *CloudDirectory) DeleteObject(input *DeleteObjectInput) (*DeleteObjectOutput, error)
    func (c *CloudDirectory) DeleteObjectRequest(input *DeleteObjectInput) (req *request.Request, output *DeleteObjectOutput)
    func (c *CloudDirectory) DeleteObjectWithContext(ctx aws.Context, input *DeleteObjectInput, opts ...request.Option) (*DeleteObjectOutput, error)
    func (c *CloudDirectory) DeleteSchema(input *DeleteSchemaInput) (*DeleteSchemaOutput, error)
    func (c *CloudDirectory) DeleteSchemaRequest(input *DeleteSchemaInput) (req *request.Request, output *DeleteSchemaOutput)
    func (c *CloudDirectory) DeleteSchemaWithContext(ctx aws.Context, input *DeleteSchemaInput, opts ...request.Option) (*DeleteSchemaOutput, error)
    func (c *CloudDirectory) DeleteTypedLinkFacet(input *DeleteTypedLinkFacetInput) (*DeleteTypedLinkFacetOutput, error)
    func (c *CloudDirectory) DeleteTypedLinkFacetRequest(input *DeleteTypedLinkFacetInput) (req *request.Request, output *DeleteTypedLinkFacetOutput)
    func (c *CloudDirectory) DeleteTypedLinkFacetWithContext(ctx aws.Context, input *DeleteTypedLinkFacetInput, opts ...request.Option) (*DeleteTypedLinkFacetOutput, error)
    func (c *CloudDirectory) DetachFromIndex(input *DetachFromIndexInput) (*DetachFromIndexOutput, error)
    func (c *CloudDirectory) DetachFromIndexRequest(input *DetachFromIndexInput) (req *request.Request, output *DetachFromIndexOutput)
    func (c *CloudDirectory) DetachFromIndexWithContext(ctx aws.Context, input *DetachFromIndexInput, opts ...request.Option) (*DetachFromIndexOutput, error)
    func (c *CloudDirectory) DetachObject(input *DetachObjectInput) (*DetachObjectOutput, error)
    func (c *CloudDirectory) DetachObjectRequest(input *DetachObjectInput) (req *request.Request, output *DetachObjectOutput)
    func (c *CloudDirectory) DetachObjectWithContext(ctx aws.Context, input *DetachObjectInput, opts ...request.Option) (*DetachObjectOutput, error)
    func (c *CloudDirectory) DetachPolicy(input *DetachPolicyInput) (*DetachPolicyOutput, error)
    func (c *CloudDirectory) DetachPolicyRequest(input *DetachPolicyInput) (req *request.Request, output *DetachPolicyOutput)
    func (c *CloudDirectory) DetachPolicyWithContext(ctx aws.Context, input *DetachPolicyInput, opts ...request.Option) (*DetachPolicyOutput, error)
    func (c *CloudDirectory) DetachTypedLink(input *DetachTypedLinkInput) (*DetachTypedLinkOutput, error)
    func (c *CloudDirectory) DetachTypedLinkRequest(input *DetachTypedLinkInput) (req *request.Request, output *DetachTypedLinkOutput)
    func (c *CloudDirectory) DetachTypedLinkWithContext(ctx aws.Context, input *DetachTypedLinkInput, opts ...request.Option) (*DetachTypedLinkOutput, error)
    func (c *CloudDirectory) DisableDirectory(input *DisableDirectoryInput) (*DisableDirectoryOutput, error)
    func (c *CloudDirectory) DisableDirectoryRequest(input *DisableDirectoryInput) (req *request.Request, output *DisableDirectoryOutput)
    func (c *CloudDirectory) DisableDirectoryWithContext(ctx aws.Context, input *DisableDirectoryInput, opts ...request.Option) (*DisableDirectoryOutput, error)
    func (c *CloudDirectory) EnableDirectory(input *EnableDirectoryInput) (*EnableDirectoryOutput, error)
    func (c *CloudDirectory) EnableDirectoryRequest(input *EnableDirectoryInput) (req *request.Request, output *EnableDirectoryOutput)
    func (c *CloudDirectory) EnableDirectoryWithContext(ctx aws.Context, input *EnableDirectoryInput, opts ...request.Option) (*EnableDirectoryOutput, error)
    func (c *CloudDirectory) GetDirectory(input *GetDirectoryInput) (*GetDirectoryOutput, error)
    func (c *CloudDirectory) GetDirectoryRequest(input *GetDirectoryInput) (req *request.Request, output *GetDirectoryOutput)
    func (c *CloudDirectory) GetDirectoryWithContext(ctx aws.Context, input *GetDirectoryInput, opts ...request.Option) (*GetDirectoryOutput, error)
    func (c *CloudDirectory) GetFacet(input *GetFacetInput) (*GetFacetOutput, error)
    func (c *CloudDirectory) GetFacetRequest(input *GetFacetInput) (req *request.Request, output *GetFacetOutput)
    func (c *CloudDirectory) GetFacetWithContext(ctx aws.Context, input *GetFacetInput, opts ...request.Option) (*GetFacetOutput, error)
    func (c *CloudDirectory) GetObjectInformation(input *GetObjectInformationInput) (*GetObjectInformationOutput, error)
    func (c *CloudDirectory) GetObjectInformationRequest(input *GetObjectInformationInput) (req *request.Request, output *GetObjectInformationOutput)
    func (c *CloudDirectory) GetObjectInformationWithContext(ctx aws.Context, input *GetObjectInformationInput, opts ...request.Option) (*GetObjectInformationOutput, error)
    func (c *CloudDirectory) GetSchemaAsJson(input *GetSchemaAsJsonInput) (*GetSchemaAsJsonOutput, error)
    func (c *CloudDirectory) GetSchemaAsJsonRequest(input *GetSchemaAsJsonInput) (req *request.Request, output *GetSchemaAsJsonOutput)
    func (c *CloudDirectory) GetSchemaAsJsonWithContext(ctx aws.Context, input *GetSchemaAsJsonInput, opts ...request.Option) (*GetSchemaAsJsonOutput, error)
    func (c *CloudDirectory) GetTypedLinkFacetInformation(input *GetTypedLinkFacetInformationInput) (*GetTypedLinkFacetInformationOutput, error)
    func (c *CloudDirectory) GetTypedLinkFacetInformationRequest(input *GetTypedLinkFacetInformationInput) (req *request.Request, output *GetTypedLinkFacetInformationOutput)
    func (c *CloudDirectory) GetTypedLinkFacetInformationWithContext(ctx aws.Context, input *GetTypedLinkFacetInformationInput, opts ...request.Option) (*GetTypedLinkFacetInformationOutput, error)
    func (c *CloudDirectory) ListAppliedSchemaArns(input *ListAppliedSchemaArnsInput) (*ListAppliedSchemaArnsOutput, error)
    func (c *CloudDirectory) ListAppliedSchemaArnsPages(input *ListAppliedSchemaArnsInput, fn func(*ListAppliedSchemaArnsOutput, bool) bool) error
    func (c *CloudDirectory) ListAppliedSchemaArnsPagesWithContext(ctx aws.Context, input *ListAppliedSchemaArnsInput, fn func(*ListAppliedSchemaArnsOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListAppliedSchemaArnsRequest(input *ListAppliedSchemaArnsInput) (req *request.Request, output *ListAppliedSchemaArnsOutput)
    func (c *CloudDirectory) ListAppliedSchemaArnsWithContext(ctx aws.Context, input *ListAppliedSchemaArnsInput, opts ...request.Option) (*ListAppliedSchemaArnsOutput, error)
    func (c *CloudDirectory) ListAttachedIndices(input *ListAttachedIndicesInput) (*ListAttachedIndicesOutput, error)
    func (c *CloudDirectory) ListAttachedIndicesPages(input *ListAttachedIndicesInput, fn func(*ListAttachedIndicesOutput, bool) bool) error
    func (c *CloudDirectory) ListAttachedIndicesPagesWithContext(ctx aws.Context, input *ListAttachedIndicesInput, fn func(*ListAttachedIndicesOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListAttachedIndicesRequest(input *ListAttachedIndicesInput) (req *request.Request, output *ListAttachedIndicesOutput)
    func (c *CloudDirectory) ListAttachedIndicesWithContext(ctx aws.Context, input *ListAttachedIndicesInput, opts ...request.Option) (*ListAttachedIndicesOutput, error)
    func (c *CloudDirectory) ListDevelopmentSchemaArns(input *ListDevelopmentSchemaArnsInput) (*ListDevelopmentSchemaArnsOutput, error)
    func (c *CloudDirectory) ListDevelopmentSchemaArnsPages(input *ListDevelopmentSchemaArnsInput, fn func(*ListDevelopmentSchemaArnsOutput, bool) bool) error
    func (c *CloudDirectory) ListDevelopmentSchemaArnsPagesWithContext(ctx aws.Context, input *ListDevelopmentSchemaArnsInput, fn func(*ListDevelopmentSchemaArnsOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListDevelopmentSchemaArnsRequest(input *ListDevelopmentSchemaArnsInput) (req *request.Request, output *ListDevelopmentSchemaArnsOutput)
    func (c *CloudDirectory) ListDevelopmentSchemaArnsWithContext(ctx aws.Context, input *ListDevelopmentSchemaArnsInput, opts ...request.Option) (*ListDevelopmentSchemaArnsOutput, error)
    func (c *CloudDirectory) ListDirectories(input *ListDirectoriesInput) (*ListDirectoriesOutput, error)
    func (c *CloudDirectory) ListDirectoriesPages(input *ListDirectoriesInput, fn func(*ListDirectoriesOutput, bool) bool) error
    func (c *CloudDirectory) ListDirectoriesPagesWithContext(ctx aws.Context, input *ListDirectoriesInput, fn func(*ListDirectoriesOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListDirectoriesRequest(input *ListDirectoriesInput) (req *request.Request, output *ListDirectoriesOutput)
    func (c *CloudDirectory) ListDirectoriesWithContext(ctx aws.Context, input *ListDirectoriesInput, opts ...request.Option) (*ListDirectoriesOutput, error)
    func (c *CloudDirectory) ListFacetAttributes(input *ListFacetAttributesInput) (*ListFacetAttributesOutput, error)
    func (c *CloudDirectory) ListFacetAttributesPages(input *ListFacetAttributesInput, fn func(*ListFacetAttributesOutput, bool) bool) error
    func (c *CloudDirectory) ListFacetAttributesPagesWithContext(ctx aws.Context, input *ListFacetAttributesInput, fn func(*ListFacetAttributesOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListFacetAttributesRequest(input *ListFacetAttributesInput) (req *request.Request, output *ListFacetAttributesOutput)
    func (c *CloudDirectory) ListFacetAttributesWithContext(ctx aws.Context, input *ListFacetAttributesInput, opts ...request.Option) (*ListFacetAttributesOutput, error)
    func (c *CloudDirectory) ListFacetNames(input *ListFacetNamesInput) (*ListFacetNamesOutput, error)
    func (c *CloudDirectory) ListFacetNamesPages(input *ListFacetNamesInput, fn func(*ListFacetNamesOutput, bool) bool) error
    func (c *CloudDirectory) ListFacetNamesPagesWithContext(ctx aws.Context, input *ListFacetNamesInput, fn func(*ListFacetNamesOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListFacetNamesRequest(input *ListFacetNamesInput) (req *request.Request, output *ListFacetNamesOutput)
    func (c *CloudDirectory) ListFacetNamesWithContext(ctx aws.Context, input *ListFacetNamesInput, opts ...request.Option) (*ListFacetNamesOutput, error)
    func (c *CloudDirectory) ListIncomingTypedLinks(input *ListIncomingTypedLinksInput) (*ListIncomingTypedLinksOutput, error)
    func (c *CloudDirectory) ListIncomingTypedLinksRequest(input *ListIncomingTypedLinksInput) (req *request.Request, output *ListIncomingTypedLinksOutput)
    func (c *CloudDirectory) ListIncomingTypedLinksWithContext(ctx aws.Context, input *ListIncomingTypedLinksInput, opts ...request.Option) (*ListIncomingTypedLinksOutput, error)
    func (c *CloudDirectory) ListIndex(input *ListIndexInput) (*ListIndexOutput, error)
    func (c *CloudDirectory) ListIndexPages(input *ListIndexInput, fn func(*ListIndexOutput, bool) bool) error
    func (c *CloudDirectory) ListIndexPagesWithContext(ctx aws.Context, input *ListIndexInput, fn func(*ListIndexOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListIndexRequest(input *ListIndexInput) (req *request.Request, output *ListIndexOutput)
    func (c *CloudDirectory) ListIndexWithContext(ctx aws.Context, input *ListIndexInput, opts ...request.Option) (*ListIndexOutput, error)
    func (c *CloudDirectory) ListObjectAttributes(input *ListObjectAttributesInput) (*ListObjectAttributesOutput, error)
    func (c *CloudDirectory) ListObjectAttributesPages(input *ListObjectAttributesInput, fn func(*ListObjectAttributesOutput, bool) bool) error
    func (c *CloudDirectory) ListObjectAttributesPagesWithContext(ctx aws.Context, input *ListObjectAttributesInput, fn func(*ListObjectAttributesOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListObjectAttributesRequest(input *ListObjectAttributesInput) (req *request.Request, output *ListObjectAttributesOutput)
    func (c *CloudDirectory) ListObjectAttributesWithContext(ctx aws.Context, input *ListObjectAttributesInput, opts ...request.Option) (*ListObjectAttributesOutput, error)
    func (c *CloudDirectory) ListObjectChildren(input *ListObjectChildrenInput) (*ListObjectChildrenOutput, error)
    func (c *CloudDirectory) ListObjectChildrenPages(input *ListObjectChildrenInput, fn func(*ListObjectChildrenOutput, bool) bool) error
    func (c *CloudDirectory) ListObjectChildrenPagesWithContext(ctx aws.Context, input *ListObjectChildrenInput, fn func(*ListObjectChildrenOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListObjectChildrenRequest(input *ListObjectChildrenInput) (req *request.Request, output *ListObjectChildrenOutput)
    func (c *CloudDirectory) ListObjectChildrenWithContext(ctx aws.Context, input *ListObjectChildrenInput, opts ...request.Option) (*ListObjectChildrenOutput, error)
    func (c *CloudDirectory) ListObjectParentPaths(input *ListObjectParentPathsInput) (*ListObjectParentPathsOutput, error)
    func (c *CloudDirectory) ListObjectParentPathsPages(input *ListObjectParentPathsInput, fn func(*ListObjectParentPathsOutput, bool) bool) error
    func (c *CloudDirectory) ListObjectParentPathsPagesWithContext(ctx aws.Context, input *ListObjectParentPathsInput, fn func(*ListObjectParentPathsOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListObjectParentPathsRequest(input *ListObjectParentPathsInput) (req *request.Request, output *ListObjectParentPathsOutput)
    func (c *CloudDirectory) ListObjectParentPathsWithContext(ctx aws.Context, input *ListObjectParentPathsInput, opts ...request.Option) (*ListObjectParentPathsOutput, error)
    func (c *CloudDirectory) ListObjectParents(input *ListObjectParentsInput) (*ListObjectParentsOutput, error)
    func (c *CloudDirectory) ListObjectParentsPages(input *ListObjectParentsInput, fn func(*ListObjectParentsOutput, bool) bool) error
    func (c *CloudDirectory) ListObjectParentsPagesWithContext(ctx aws.Context, input *ListObjectParentsInput, fn func(*ListObjectParentsOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListObjectParentsRequest(input *ListObjectParentsInput) (req *request.Request, output *ListObjectParentsOutput)
    func (c *CloudDirectory) ListObjectParentsWithContext(ctx aws.Context, input *ListObjectParentsInput, opts ...request.Option) (*ListObjectParentsOutput, error)
    func (c *CloudDirectory) ListObjectPolicies(input *ListObjectPoliciesInput) (*ListObjectPoliciesOutput, error)
    func (c *CloudDirectory) ListObjectPoliciesPages(input *ListObjectPoliciesInput, fn func(*ListObjectPoliciesOutput, bool) bool) error
    func (c *CloudDirectory) ListObjectPoliciesPagesWithContext(ctx aws.Context, input *ListObjectPoliciesInput, fn func(*ListObjectPoliciesOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListObjectPoliciesRequest(input *ListObjectPoliciesInput) (req *request.Request, output *ListObjectPoliciesOutput)
    func (c *CloudDirectory) ListObjectPoliciesWithContext(ctx aws.Context, input *ListObjectPoliciesInput, opts ...request.Option) (*ListObjectPoliciesOutput, error)
    func (c *CloudDirectory) ListOutgoingTypedLinks(input *ListOutgoingTypedLinksInput) (*ListOutgoingTypedLinksOutput, error)
    func (c *CloudDirectory) ListOutgoingTypedLinksRequest(input *ListOutgoingTypedLinksInput) (req *request.Request, output *ListOutgoingTypedLinksOutput)
    func (c *CloudDirectory) ListOutgoingTypedLinksWithContext(ctx aws.Context, input *ListOutgoingTypedLinksInput, opts ...request.Option) (*ListOutgoingTypedLinksOutput, error)
    func (c *CloudDirectory) ListPolicyAttachments(input *ListPolicyAttachmentsInput) (*ListPolicyAttachmentsOutput, error)
    func (c *CloudDirectory) ListPolicyAttachmentsPages(input *ListPolicyAttachmentsInput, fn func(*ListPolicyAttachmentsOutput, bool) bool) error
    func (c *CloudDirectory) ListPolicyAttachmentsPagesWithContext(ctx aws.Context, input *ListPolicyAttachmentsInput, fn func(*ListPolicyAttachmentsOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListPolicyAttachmentsRequest(input *ListPolicyAttachmentsInput) (req *request.Request, output *ListPolicyAttachmentsOutput)
    func (c *CloudDirectory) ListPolicyAttachmentsWithContext(ctx aws.Context, input *ListPolicyAttachmentsInput, opts ...request.Option) (*ListPolicyAttachmentsOutput, error)
    func (c *CloudDirectory) ListPublishedSchemaArns(input *ListPublishedSchemaArnsInput) (*ListPublishedSchemaArnsOutput, error)
    func (c *CloudDirectory) ListPublishedSchemaArnsPages(input *ListPublishedSchemaArnsInput, fn func(*ListPublishedSchemaArnsOutput, bool) bool) error
    func (c *CloudDirectory) ListPublishedSchemaArnsPagesWithContext(ctx aws.Context, input *ListPublishedSchemaArnsInput, fn func(*ListPublishedSchemaArnsOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListPublishedSchemaArnsRequest(input *ListPublishedSchemaArnsInput) (req *request.Request, output *ListPublishedSchemaArnsOutput)
    func (c *CloudDirectory) ListPublishedSchemaArnsWithContext(ctx aws.Context, input *ListPublishedSchemaArnsInput, opts ...request.Option) (*ListPublishedSchemaArnsOutput, error)
    func (c *CloudDirectory) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)
    func (c *CloudDirectory) ListTagsForResourcePages(input *ListTagsForResourceInput, fn func(*ListTagsForResourceOutput, bool) bool) error
    func (c *CloudDirectory) ListTagsForResourcePagesWithContext(ctx aws.Context, input *ListTagsForResourceInput, fn func(*ListTagsForResourceOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput)
    func (c *CloudDirectory) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)
    func (c *CloudDirectory) ListTypedLinkFacetAttributes(input *ListTypedLinkFacetAttributesInput) (*ListTypedLinkFacetAttributesOutput, error)
    func (c *CloudDirectory) ListTypedLinkFacetAttributesPages(input *ListTypedLinkFacetAttributesInput, fn func(*ListTypedLinkFacetAttributesOutput, bool) bool) error
    func (c *CloudDirectory) ListTypedLinkFacetAttributesPagesWithContext(ctx aws.Context, input *ListTypedLinkFacetAttributesInput, fn func(*ListTypedLinkFacetAttributesOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListTypedLinkFacetAttributesRequest(input *ListTypedLinkFacetAttributesInput) (req *request.Request, output *ListTypedLinkFacetAttributesOutput)
    func (c *CloudDirectory) ListTypedLinkFacetAttributesWithContext(ctx aws.Context, input *ListTypedLinkFacetAttributesInput, opts ...request.Option) (*ListTypedLinkFacetAttributesOutput, error)
    func (c *CloudDirectory) ListTypedLinkFacetNames(input *ListTypedLinkFacetNamesInput) (*ListTypedLinkFacetNamesOutput, error)
    func (c *CloudDirectory) ListTypedLinkFacetNamesPages(input *ListTypedLinkFacetNamesInput, fn func(*ListTypedLinkFacetNamesOutput, bool) bool) error
    func (c *CloudDirectory) ListTypedLinkFacetNamesPagesWithContext(ctx aws.Context, input *ListTypedLinkFacetNamesInput, fn func(*ListTypedLinkFacetNamesOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) ListTypedLinkFacetNamesRequest(input *ListTypedLinkFacetNamesInput) (req *request.Request, output *ListTypedLinkFacetNamesOutput)
    func (c *CloudDirectory) ListTypedLinkFacetNamesWithContext(ctx aws.Context, input *ListTypedLinkFacetNamesInput, opts ...request.Option) (*ListTypedLinkFacetNamesOutput, error)
    func (c *CloudDirectory) LookupPolicy(input *LookupPolicyInput) (*LookupPolicyOutput, error)
    func (c *CloudDirectory) LookupPolicyPages(input *LookupPolicyInput, fn func(*LookupPolicyOutput, bool) bool) error
    func (c *CloudDirectory) LookupPolicyPagesWithContext(ctx aws.Context, input *LookupPolicyInput, fn func(*LookupPolicyOutput, bool) bool, opts ...request.Option) error
    func (c *CloudDirectory) LookupPolicyRequest(input *LookupPolicyInput) (req *request.Request, output *LookupPolicyOutput)
    func (c *CloudDirectory) LookupPolicyWithContext(ctx aws.Context, input *LookupPolicyInput, opts ...request.Option) (*LookupPolicyOutput, error)
    func (c *CloudDirectory) PublishSchema(input *PublishSchemaInput) (*PublishSchemaOutput, error)
    func (c *CloudDirectory) PublishSchemaRequest(input *PublishSchemaInput) (req *request.Request, output *PublishSchemaOutput)
    func (c *CloudDirectory) PublishSchemaWithContext(ctx aws.Context, input *PublishSchemaInput, opts ...request.Option) (*PublishSchemaOutput, error)
    func (c *CloudDirectory) PutSchemaFromJson(input *PutSchemaFromJsonInput) (*PutSchemaFromJsonOutput, error)
    func (c *CloudDirectory) PutSchemaFromJsonRequest(input *PutSchemaFromJsonInput) (req *request.Request, output *PutSchemaFromJsonOutput)
    func (c *CloudDirectory) PutSchemaFromJsonWithContext(ctx aws.Context, input *PutSchemaFromJsonInput, opts ...request.Option) (*PutSchemaFromJsonOutput, error)
    func (c *CloudDirectory) RemoveFacetFromObject(input *RemoveFacetFromObjectInput) (*RemoveFacetFromObjectOutput, error)
    func (c *CloudDirectory) RemoveFacetFromObjectRequest(input *RemoveFacetFromObjectInput) (req *request.Request, output *RemoveFacetFromObjectOutput)
    func (c *CloudDirectory) RemoveFacetFromObjectWithContext(ctx aws.Context, input *RemoveFacetFromObjectInput, opts ...request.Option) (*RemoveFacetFromObjectOutput, error)
    func (c *CloudDirectory) TagResource(input *TagResourceInput) (*TagResourceOutput, error)
    func (c *CloudDirectory) TagResourceRequest(input *TagResourceInput) (req *request.Request, output *TagResourceOutput)
    func (c *CloudDirectory) TagResourceWithContext(ctx aws.Context, input *TagResourceInput, opts ...request.Option) (*TagResourceOutput, error)
    func (c *CloudDirectory) UntagResource(input *UntagResourceInput) (*UntagResourceOutput, error)
    func (c *CloudDirectory) UntagResourceRequest(input *UntagResourceInput) (req *request.Request, output *UntagResourceOutput)
    func (c *CloudDirectory) UntagResourceWithContext(ctx aws.Context, input *UntagResourceInput, opts ...request.Option) (*UntagResourceOutput, error)
    func (c *CloudDirectory) UpdateFacet(input *UpdateFacetInput) (*UpdateFacetOutput, error)
    func (c *CloudDirectory) UpdateFacetRequest(input *UpdateFacetInput) (req *request.Request, output *UpdateFacetOutput)
    func (c *CloudDirectory) UpdateFacetWithContext(ctx aws.Context, input *UpdateFacetInput, opts ...request.Option) (*UpdateFacetOutput, error)
    func (c *CloudDirectory) UpdateObjectAttributes(input *UpdateObjectAttributesInput) (*UpdateObjectAttributesOutput, error)
    func (c *CloudDirectory) UpdateObjectAttributesRequest(input *UpdateObjectAttributesInput) (req *request.Request, output *UpdateObjectAttributesOutput)
    func (c *CloudDirectory) UpdateObjectAttributesWithContext(ctx aws.Context, input *UpdateObjectAttributesInput, opts ...request.Option) (*UpdateObjectAttributesOutput, error)
    func (c *CloudDirectory) UpdateSchema(input *UpdateSchemaInput) (*UpdateSchemaOutput, error)
    func (c *CloudDirectory) UpdateSchemaRequest(input *UpdateSchemaInput) (req *request.Request, output *UpdateSchemaOutput)
    func (c *CloudDirectory) UpdateSchemaWithContext(ctx aws.Context, input *UpdateSchemaInput, opts ...request.Option) (*UpdateSchemaOutput, error)
    func (c *CloudDirectory) UpdateTypedLinkFacet(input *UpdateTypedLinkFacetInput) (*UpdateTypedLinkFacetOutput, error)
    func (c *CloudDirectory) UpdateTypedLinkFacetRequest(input *UpdateTypedLinkFacetInput) (req *request.Request, output *UpdateTypedLinkFacetOutput)
    func (c *CloudDirectory) UpdateTypedLinkFacetWithContext(ctx aws.Context, input *UpdateTypedLinkFacetInput, opts ...request.Option) (*UpdateTypedLinkFacetOutput, error)
type CreateDirectoryInput
    func (s CreateDirectoryInput) GoString() string
    func (s *CreateDirectoryInput) SetName(v string) *CreateDirectoryInput
    func (s *CreateDirectoryInput) SetSchemaArn(v string) *CreateDirectoryInput
    func (s CreateDirectoryInput) String() string
    func (s *CreateDirectoryInput) Validate() error
type CreateDirectoryOutput
    func (s CreateDirectoryOutput) GoString() string
    func (s *CreateDirectoryOutput) SetAppliedSchemaArn(v string) *CreateDirectoryOutput
    func (s *CreateDirectoryOutput) SetDirectoryArn(v string) *CreateDirectoryOutput
    func (s *CreateDirectoryOutput) SetName(v string) *CreateDirectoryOutput
    func (s *CreateDirectoryOutput) SetObjectIdentifier(v string) *CreateDirectoryOutput
    func (s CreateDirectoryOutput) String() string
type CreateFacetInput
    func (s CreateFacetInput) GoString() string
    func (s *CreateFacetInput) SetAttributes(v []*FacetAttribute) *CreateFacetInput
    func (s *CreateFacetInput) SetName(v string) *CreateFacetInput
    func (s *CreateFacetInput) SetObjectType(v string) *CreateFacetInput
    func (s *CreateFacetInput) SetSchemaArn(v string) *CreateFacetInput
    func (s CreateFacetInput) String() string
    func (s *CreateFacetInput) Validate() error
type CreateFacetOutput
    func (s CreateFacetOutput) GoString() string
    func (s CreateFacetOutput) String() string
type CreateIndexInput
    func (s CreateIndexInput) GoString() string
    func (s *CreateIndexInput) SetDirectoryArn(v string) *CreateIndexInput
    func (s *CreateIndexInput) SetIsUnique(v bool) *CreateIndexInput
    func (s *CreateIndexInput) SetLinkName(v string) *CreateIndexInput
    func (s *CreateIndexInput) SetOrderedIndexedAttributeList(v []*AttributeKey) *CreateIndexInput
    func (s *CreateIndexInput) SetParentReference(v *ObjectReference) *CreateIndexInput
    func (s CreateIndexInput) String() string
    func (s *CreateIndexInput) Validate() error
type CreateIndexOutput
    func (s CreateIndexOutput) GoString() string
    func (s *CreateIndexOutput) SetObjectIdentifier(v string) *CreateIndexOutput
    func (s CreateIndexOutput) String() string
type CreateObjectInput
    func (s CreateObjectInput) GoString() string
    func (s *CreateObjectInput) SetDirectoryArn(v string) *CreateObjectInput
    func (s *CreateObjectInput) SetLinkName(v string) *CreateObjectInput
    func (s *CreateObjectInput) SetObjectAttributeList(v []*AttributeKeyAndValue) *CreateObjectInput
    func (s *CreateObjectInput) SetParentReference(v *ObjectReference) *CreateObjectInput
    func (s *CreateObjectInput) SetSchemaFacets(v []*SchemaFacet) *CreateObjectInput
    func (s CreateObjectInput) String() string
    func (s *CreateObjectInput) Validate() error
type CreateObjectOutput
    func (s CreateObjectOutput) GoString() string
    func (s *CreateObjectOutput) SetObjectIdentifier(v string) *CreateObjectOutput
    func (s CreateObjectOutput) String() string
type CreateSchemaInput
    func (s CreateSchemaInput) GoString() string
    func (s *CreateSchemaInput) SetName(v string) *CreateSchemaInput
    func (s CreateSchemaInput) String() string
    func (s *CreateSchemaInput) Validate() error
type CreateSchemaOutput
    func (s CreateSchemaOutput) GoString() string
    func (s *CreateSchemaOutput) SetSchemaArn(v string) *CreateSchemaOutput
    func (s CreateSchemaOutput) String() string
type CreateTypedLinkFacetInput
    func (s CreateTypedLinkFacetInput) GoString() string
    func (s *CreateTypedLinkFacetInput) SetFacet(v *TypedLinkFacet) *CreateTypedLinkFacetInput
    func (s *CreateTypedLinkFacetInput) SetSchemaArn(v string) *CreateTypedLinkFacetInput
    func (s CreateTypedLinkFacetInput) String() string
    func (s *CreateTypedLinkFacetInput) Validate() error
type CreateTypedLinkFacetOutput
    func (s CreateTypedLinkFacetOutput) GoString() string
    func (s CreateTypedLinkFacetOutput) String() string
type DeleteDirectoryInput
    func (s DeleteDirectoryInput) GoString() string
    func (s *DeleteDirectoryInput) SetDirectoryArn(v string) *DeleteDirectoryInput
    func (s DeleteDirectoryInput) String() string
    func (s *DeleteDirectoryInput) Validate() error
type DeleteDirectoryOutput
    func (s DeleteDirectoryOutput) GoString() string
    func (s *DeleteDirectoryOutput) SetDirectoryArn(v string) *DeleteDirectoryOutput
    func (s DeleteDirectoryOutput) String() string
type DeleteFacetInput
    func (s DeleteFacetInput) GoString() string
    func (s *DeleteFacetInput) SetName(v string) *DeleteFacetInput
    func (s *DeleteFacetInput) SetSchemaArn(v string) *DeleteFacetInput
    func (s DeleteFacetInput) String() string
    func (s *DeleteFacetInput) Validate() error
type DeleteFacetOutput
    func (s DeleteFacetOutput) GoString() string
    func (s DeleteFacetOutput) String() string
type DeleteObjectInput
    func (s DeleteObjectInput) GoString() string
    func (s *DeleteObjectInput) SetDirectoryArn(v string) *DeleteObjectInput
    func (s *DeleteObjectInput) SetObjectReference(v *ObjectReference) *DeleteObjectInput
    func (s DeleteObjectInput) String() string
    func (s *DeleteObjectInput) Validate() error
type DeleteObjectOutput
    func (s DeleteObjectOutput) GoString() string
    func (s DeleteObjectOutput) String() string
type DeleteSchemaInput
    func (s DeleteSchemaInput) GoString() string
    func (s *DeleteSchemaInput) SetSchemaArn(v string) *DeleteSchemaInput
    func (s DeleteSchemaInput) String() string
    func (s *DeleteSchemaInput) Validate() error
type DeleteSchemaOutput
    func (s DeleteSchemaOutput) GoString() string
    func (s *DeleteSchemaOutput) SetSchemaArn(v string) *DeleteSchemaOutput
    func (s DeleteSchemaOutput) String() string
type DeleteTypedLinkFacetInput
    func (s DeleteTypedLinkFacetInput) GoString() string
    func (s *DeleteTypedLinkFacetInput) SetName(v string) *DeleteTypedLinkFacetInput
    func (s *DeleteTypedLinkFacetInput) SetSchemaArn(v string) *DeleteTypedLinkFacetInput
    func (s DeleteTypedLinkFacetInput) String() string
    func (s *DeleteTypedLinkFacetInput) Validate() error
type DeleteTypedLinkFacetOutput
    func (s DeleteTypedLinkFacetOutput) GoString() string
    func (s DeleteTypedLinkFacetOutput) String() string
type DetachFromIndexInput
    func (s DetachFromIndexInput) GoString() string
    func (s *DetachFromIndexInput) SetDirectoryArn(v string) *DetachFromIndexInput
    func (s *DetachFromIndexInput) SetIndexReference(v *ObjectReference) *DetachFromIndexInput
    func (s *DetachFromIndexInput) SetTargetReference(v *ObjectReference) *DetachFromIndexInput
    func (s DetachFromIndexInput) String() string
    func (s *DetachFromIndexInput) Validate() error
type DetachFromIndexOutput
    func (s DetachFromIndexOutput) GoString() string
    func (s *DetachFromIndexOutput) SetDetachedObjectIdentifier(v string) *DetachFromIndexOutput
    func (s DetachFromIndexOutput) String() string
type DetachObjectInput
    func (s DetachObjectInput) GoString() string
    func (s *DetachObjectInput) SetDirectoryArn(v string) *DetachObjectInput
    func (s *DetachObjectInput) SetLinkName(v string) *DetachObjectInput
    func (s *DetachObjectInput) SetParentReference(v *ObjectReference) *DetachObjectInput
    func (s DetachObjectInput) String() string
    func (s *DetachObjectInput) Validate() error
type DetachObjectOutput
    func (s DetachObjectOutput) GoString() string
    func (s *DetachObjectOutput) SetDetachedObjectIdentifier(v string) *DetachObjectOutput
    func (s DetachObjectOutput) String() string
type DetachPolicyInput
    func (s DetachPolicyInput) GoString() string
    func (s *DetachPolicyInput) SetDirectoryArn(v string) *DetachPolicyInput
    func (s *DetachPolicyInput) SetObjectReference(v *ObjectReference) *DetachPolicyInput
    func (s *DetachPolicyInput) SetPolicyReference(v *ObjectReference) *DetachPolicyInput
    func (s DetachPolicyInput) String() string
    func (s *DetachPolicyInput) Validate() error
type DetachPolicyOutput
    func (s DetachPolicyOutput) GoString() string
    func (s DetachPolicyOutput) String() string
type DetachTypedLinkInput
    func (s DetachTypedLinkInput) GoString() string
    func (s *DetachTypedLinkInput) SetDirectoryArn(v string) *DetachTypedLinkInput
    func (s *DetachTypedLinkInput) SetTypedLinkSpecifier(v *TypedLinkSpecifier) *DetachTypedLinkInput
    func (s DetachTypedLinkInput) String() string
    func (s *DetachTypedLinkInput) Validate() error
type DetachTypedLinkOutput
    func (s DetachTypedLinkOutput) GoString() string
    func (s DetachTypedLinkOutput) String() string
type Directory
    func (s Directory) GoString() string
    func (s *Directory) SetCreationDateTime(v time.Time) *Directory
    func (s *Directory) SetDirectoryArn(v string) *Directory
    func (s *Directory) SetName(v string) *Directory
    func (s *Directory) SetState(v string) *Directory
    func (s Directory) String() string
type DisableDirectoryInput
    func (s DisableDirectoryInput) GoString() string
    func (s *DisableDirectoryInput) SetDirectoryArn(v string) *DisableDirectoryInput
    func (s DisableDirectoryInput) String() string
    func (s *DisableDirectoryInput) Validate() error
type DisableDirectoryOutput
    func (s DisableDirectoryOutput) GoString() string
    func (s *DisableDirectoryOutput) SetDirectoryArn(v string) *DisableDirectoryOutput
    func (s DisableDirectoryOutput) String() string
type EnableDirectoryInput
    func (s EnableDirectoryInput) GoString() string
    func (s *EnableDirectoryInput) SetDirectoryArn(v string) *EnableDirectoryInput
    func (s EnableDirectoryInput) String() string
    func (s *EnableDirectoryInput) Validate() error
type EnableDirectoryOutput
    func (s EnableDirectoryOutput) GoString() string
    func (s *EnableDirectoryOutput) SetDirectoryArn(v string) *EnableDirectoryOutput
    func (s EnableDirectoryOutput) String() string
type Facet
    func (s Facet) GoString() string
    func (s *Facet) SetName(v string) *Facet
    func (s *Facet) SetObjectType(v string) *Facet
    func (s Facet) String() string
type FacetAttribute
    func (s FacetAttribute) GoString() string
    func (s *FacetAttribute) SetAttributeDefinition(v *FacetAttributeDefinition) *FacetAttribute
    func (s *FacetAttribute) SetAttributeReference(v *FacetAttributeReference) *FacetAttribute
    func (s *FacetAttribute) SetName(v string) *FacetAttribute
    func (s *FacetAttribute) SetRequiredBehavior(v string) *FacetAttribute
    func (s FacetAttribute) String() string
    func (s *FacetAttribute) Validate() error
type FacetAttributeDefinition
    func (s FacetAttributeDefinition) GoString() string
    func (s *FacetAttributeDefinition) SetDefaultValue(v *TypedAttributeValue) *FacetAttributeDefinition
    func (s *FacetAttributeDefinition) SetIsImmutable(v bool) *FacetAttributeDefinition
    func (s *FacetAttributeDefinition) SetRules(v map[string]*Rule) *FacetAttributeDefinition
    func (s *FacetAttributeDefinition) SetType(v string) *FacetAttributeDefinition
    func (s FacetAttributeDefinition) String() string
    func (s *FacetAttributeDefinition) Validate() error
type FacetAttributeReference
    func (s FacetAttributeReference) GoString() string
    func (s *FacetAttributeReference) SetTargetAttributeName(v string) *FacetAttributeReference
    func (s *FacetAttributeReference) SetTargetFacetName(v string) *FacetAttributeReference
    func (s FacetAttributeReference) String() string
    func (s *FacetAttributeReference) Validate() error
type FacetAttributeUpdate
    func (s FacetAttributeUpdate) GoString() string
    func (s *FacetAttributeUpdate) SetAction(v string) *FacetAttributeUpdate
    func (s *FacetAttributeUpdate) SetAttribute(v *FacetAttribute) *FacetAttributeUpdate
    func (s FacetAttributeUpdate) String() string
    func (s *FacetAttributeUpdate) Validate() error
type GetDirectoryInput
    func (s GetDirectoryInput) GoString() string
    func (s *GetDirectoryInput) SetDirectoryArn(v string) *GetDirectoryInput
    func (s GetDirectoryInput) String() string
    func (s *GetDirectoryInput) Validate() error
type GetDirectoryOutput
    func (s GetDirectoryOutput) GoString() string
    func (s *GetDirectoryOutput) SetDirectory(v *Directory) *GetDirectoryOutput
    func (s GetDirectoryOutput) String() string
type GetFacetInput
    func (s GetFacetInput) GoString() string
    func (s *GetFacetInput) SetName(v string) *GetFacetInput
    func (s *GetFacetInput) SetSchemaArn(v string) *GetFacetInput
    func (s GetFacetInput) String() string
    func (s *GetFacetInput) Validate() error
type GetFacetOutput
    func (s GetFacetOutput) GoString() string
    func (s *GetFacetOutput) SetFacet(v *Facet) *GetFacetOutput
    func (s GetFacetOutput) String() string
type GetObjectInformationInput
    func (s GetObjectInformationInput) GoString() string
    func (s *GetObjectInformationInput) SetConsistencyLevel(v string) *GetObjectInformationInput
    func (s *GetObjectInformationInput) SetDirectoryArn(v string) *GetObjectInformationInput
    func (s *GetObjectInformationInput) SetObjectReference(v *ObjectReference) *GetObjectInformationInput
    func (s GetObjectInformationInput) String() string
    func (s *GetObjectInformationInput) Validate() error
type GetObjectInformationOutput
    func (s GetObjectInformationOutput) GoString() string
    func (s *GetObjectInformationOutput) SetObjectIdentifier(v string) *GetObjectInformationOutput
    func (s *GetObjectInformationOutput) SetSchemaFacets(v []*SchemaFacet) *GetObjectInformationOutput
    func (s GetObjectInformationOutput) String() string
type GetSchemaAsJsonInput
    func (s GetSchemaAsJsonInput) GoString() string
    func (s *GetSchemaAsJsonInput) SetSchemaArn(v string) *GetSchemaAsJsonInput
    func (s GetSchemaAsJsonInput) String() string
    func (s *GetSchemaAsJsonInput) Validate() error
type GetSchemaAsJsonOutput
    func (s GetSchemaAsJsonOutput) GoString() string
    func (s *GetSchemaAsJsonOutput) SetDocument(v string) *GetSchemaAsJsonOutput
    func (s *GetSchemaAsJsonOutput) SetName(v string) *GetSchemaAsJsonOutput
    func (s GetSchemaAsJsonOutput) String() string
type GetTypedLinkFacetInformationInput
    func (s GetTypedLinkFacetInformationInput) GoString() string
    func (s *GetTypedLinkFacetInformationInput) SetName(v string) *GetTypedLinkFacetInformationInput
    func (s *GetTypedLinkFacetInformationInput) SetSchemaArn(v string) *GetTypedLinkFacetInformationInput
    func (s GetTypedLinkFacetInformationInput) String() string
    func (s *GetTypedLinkFacetInformationInput) Validate() error
type GetTypedLinkFacetInformationOutput
    func (s GetTypedLinkFacetInformationOutput) GoString() string
    func (s *GetTypedLinkFacetInformationOutput) SetIdentityAttributeOrder(v []*string) *GetTypedLinkFacetInformationOutput
    func (s GetTypedLinkFacetInformationOutput) String() string
type IndexAttachment
    func (s IndexAttachment) GoString() string
    func (s *IndexAttachment) SetIndexedAttributes(v []*AttributeKeyAndValue) *IndexAttachment
    func (s *IndexAttachment) SetObjectIdentifier(v string) *IndexAttachment
    func (s IndexAttachment) String() string
type ListAppliedSchemaArnsInput
    func (s ListAppliedSchemaArnsInput) GoString() string
    func (s *ListAppliedSchemaArnsInput) SetDirectoryArn(v string) *ListAppliedSchemaArnsInput
    func (s *ListAppliedSchemaArnsInput) SetMaxResults(v int64) *ListAppliedSchemaArnsInput
    func (s *ListAppliedSchemaArnsInput) SetNextToken(v string) *ListAppliedSchemaArnsInput
    func (s ListAppliedSchemaArnsInput) String() string
    func (s *ListAppliedSchemaArnsInput) Validate() error
type ListAppliedSchemaArnsOutput
    func (s ListAppliedSchemaArnsOutput) GoString() string
    func (s *ListAppliedSchemaArnsOutput) SetNextToken(v string) *ListAppliedSchemaArnsOutput
    func (s *ListAppliedSchemaArnsOutput) SetSchemaArns(v []*string) *ListAppliedSchemaArnsOutput
    func (s ListAppliedSchemaArnsOutput) String() string
type ListAttachedIndicesInput
    func (s ListAttachedIndicesInput) GoString() string
    func (s *ListAttachedIndicesInput) SetConsistencyLevel(v string) *ListAttachedIndicesInput
    func (s *ListAttachedIndicesInput) SetDirectoryArn(v string) *ListAttachedIndicesInput
    func (s *ListAttachedIndicesInput) SetMaxResults(v int64) *ListAttachedIndicesInput
    func (s *ListAttachedIndicesInput) SetNextToken(v string) *ListAttachedIndicesInput
    func (s *ListAttachedIndicesInput) SetTargetReference(v *ObjectReference) *ListAttachedIndicesInput
    func (s ListAttachedIndicesInput) String() string
    func (s *ListAttachedIndicesInput) Validate() error
type ListAttachedIndicesOutput
    func (s ListAttachedIndicesOutput) GoString() string
    func (s *ListAttachedIndicesOutput) SetIndexAttachments(v []*IndexAttachment) *ListAttachedIndicesOutput
    func (s *ListAttachedIndicesOutput) SetNextToken(v string) *ListAttachedIndicesOutput
    func (s ListAttachedIndicesOutput) String() string
type ListDevelopmentSchemaArnsInput
    func (s ListDevelopmentSchemaArnsInput) GoString() string
    func (s *ListDevelopmentSchemaArnsInput) SetMaxResults(v int64) *ListDevelopmentSchemaArnsInput
    func (s *ListDevelopmentSchemaArnsInput) SetNextToken(v string) *ListDevelopmentSchemaArnsInput
    func (s ListDevelopmentSchemaArnsInput) String() string
    func (s *ListDevelopmentSchemaArnsInput) Validate() error
type ListDevelopmentSchemaArnsOutput
    func (s ListDevelopmentSchemaArnsOutput) GoString() string
    func (s *ListDevelopmentSchemaArnsOutput) SetNextToken(v string) *ListDevelopmentSchemaArnsOutput
    func (s *ListDevelopmentSchemaArnsOutput) SetSchemaArns(v []*string) *ListDevelopmentSchemaArnsOutput
    func (s ListDevelopmentSchemaArnsOutput) String() string
type ListDirectoriesInput
    func (s ListDirectoriesInput) GoString() string
    func (s *ListDirectoriesInput) SetMaxResults(v int64) *ListDirectoriesInput
    func (s *ListDirectoriesInput) SetNextToken(v string) *ListDirectoriesInput
    func (s *ListDirectoriesInput) SetState(v string) *ListDirectoriesInput
    func (s ListDirectoriesInput) String() string
    func (s *ListDirectoriesInput) Validate() error
type ListDirectoriesOutput
    func (s ListDirectoriesOutput) GoString() string
    func (s *ListDirectoriesOutput) SetDirectories(v []*Directory) *ListDirectoriesOutput
    func (s *ListDirectoriesOutput) SetNextToken(v string) *ListDirectoriesOutput
    func (s ListDirectoriesOutput) String() string
type ListFacetAttributesInput
    func (s ListFacetAttributesInput) GoString() string
    func (s *ListFacetAttributesInput) SetMaxResults(v int64) *ListFacetAttributesInput
    func (s *ListFacetAttributesInput) SetName(v string) *ListFacetAttributesInput
    func (s *ListFacetAttributesInput) SetNextToken(v string) *ListFacetAttributesInput
    func (s *ListFacetAttributesInput) SetSchemaArn(v string) *ListFacetAttributesInput
    func (s ListFacetAttributesInput) String() string
    func (s *ListFacetAttributesInput) Validate() error
type ListFacetAttributesOutput
    func (s ListFacetAttributesOutput) GoString() string
    func (s *ListFacetAttributesOutput) SetAttributes(v []*FacetAttribute) *ListFacetAttributesOutput
    func (s *ListFacetAttributesOutput) SetNextToken(v string) *ListFacetAttributesOutput
    func (s ListFacetAttributesOutput) String() string
type ListFacetNamesInput
    func (s ListFacetNamesInput) GoString() string
    func (s *ListFacetNamesInput) SetMaxResults(v int64) *ListFacetNamesInput
    func (s *ListFacetNamesInput) SetNextToken(v string) *ListFacetNamesInput
    func (s *ListFacetNamesInput) SetSchemaArn(v string) *ListFacetNamesInput
    func (s ListFacetNamesInput) String() string
    func (s *ListFacetNamesInput) Validate() error
type ListFacetNamesOutput
    func (s ListFacetNamesOutput) GoString() string
    func (s *ListFacetNamesOutput) SetFacetNames(v []*string) *ListFacetNamesOutput
    func (s *ListFacetNamesOutput) SetNextToken(v string) *ListFacetNamesOutput
    func (s ListFacetNamesOutput) String() string
type ListIncomingTypedLinksInput
    func (s ListIncomingTypedLinksInput) GoString() string
    func (s *ListIncomingTypedLinksInput) SetConsistencyLevel(v string) *ListIncomingTypedLinksInput
    func (s *ListIncomingTypedLinksInput) SetDirectoryArn(v string) *ListIncomingTypedLinksInput
    func (s *ListIncomingTypedLinksInput) SetFilterAttributeRanges(v []*TypedLinkAttributeRange) *ListIncomingTypedLinksInput
    func (s *ListIncomingTypedLinksInput) SetFilterTypedLink(v *TypedLinkSchemaAndFacetName) *ListIncomingTypedLinksInput
    func (s *ListIncomingTypedLinksInput) SetMaxResults(v int64) *ListIncomingTypedLinksInput
    func (s *ListIncomingTypedLinksInput) SetNextToken(v string) *ListIncomingTypedLinksInput
    func (s *ListIncomingTypedLinksInput) SetObjectReference(v *ObjectReference) *ListIncomingTypedLinksInput
    func (s ListIncomingTypedLinksInput) String() string
    func (s *ListIncomingTypedLinksInput) Validate() error
type ListIncomingTypedLinksOutput
    func (s ListIncomingTypedLinksOutput) GoString() string
    func (s *ListIncomingTypedLinksOutput) SetLinkSpecifiers(v []*TypedLinkSpecifier) *ListIncomingTypedLinksOutput
    func (s *ListIncomingTypedLinksOutput) SetNextToken(v string) *ListIncomingTypedLinksOutput
    func (s ListIncomingTypedLinksOutput) String() string
type ListIndexInput
    func (s ListIndexInput) GoString() string
    func (s *ListIndexInput) SetConsistencyLevel(v string) *ListIndexInput
    func (s *ListIndexInput) SetDirectoryArn(v string) *ListIndexInput
    func (s *ListIndexInput) SetIndexReference(v *ObjectReference) *ListIndexInput
    func (s *ListIndexInput) SetMaxResults(v int64) *ListIndexInput
    func (s *ListIndexInput) SetNextToken(v string) *ListIndexInput
    func (s *ListIndexInput) SetRangesOnIndexedValues(v []*ObjectAttributeRange) *ListIndexInput
    func (s ListIndexInput) String() string
    func (s *ListIndexInput) Validate() error
type ListIndexOutput
    func (s ListIndexOutput) GoString() string
    func (s *ListIndexOutput) SetIndexAttachments(v []*IndexAttachment) *ListIndexOutput
    func (s *ListIndexOutput) SetNextToken(v string) *ListIndexOutput
    func (s ListIndexOutput) String() string
type ListObjectAttributesInput
    func (s ListObjectAttributesInput) GoString() string
    func (s *ListObjectAttributesInput) SetConsistencyLevel(v string) *ListObjectAttributesInput
    func (s *ListObjectAttributesInput) SetDirectoryArn(v string) *ListObjectAttributesInput
    func (s *ListObjectAttributesInput) SetFacetFilter(v *SchemaFacet) *ListObjectAttributesInput
    func (s *ListObjectAttributesInput) SetMaxResults(v int64) *ListObjectAttributesInput
    func (s *ListObjectAttributesInput) SetNextToken(v string) *ListObjectAttributesInput
    func (s *ListObjectAttributesInput) SetObjectReference(v *ObjectReference) *ListObjectAttributesInput
    func (s ListObjectAttributesInput) String() string
    func (s *ListObjectAttributesInput) Validate() error
type ListObjectAttributesOutput
    func (s ListObjectAttributesOutput) GoString() string
    func (s *ListObjectAttributesOutput) SetAttributes(v []*AttributeKeyAndValue) *ListObjectAttributesOutput
    func (s *ListObjectAttributesOutput) SetNextToken(v string) *ListObjectAttributesOutput
    func (s ListObjectAttributesOutput) String() string
type ListObjectChildrenInput
    func (s ListObjectChildrenInput) GoString() string
    func (s *ListObjectChildrenInput) SetConsistencyLevel(v string) *ListObjectChildrenInput
    func (s *ListObjectChildrenInput) SetDirectoryArn(v string) *ListObjectChildrenInput
    func (s *ListObjectChildrenInput) SetMaxResults(v int64) *ListObjectChildrenInput
    func (s *ListObjectChildrenInput) SetNextToken(v string) *ListObjectChildrenInput
    func (s *ListObjectChildrenInput) SetObjectReference(v *ObjectReference) *ListObjectChildrenInput
    func (s ListObjectChildrenInput) String() string
    func (s *ListObjectChildrenInput) Validate() error
type ListObjectChildrenOutput
    func (s ListObjectChildrenOutput) GoString() string
    func (s *ListObjectChildrenOutput) SetChildren(v map[string]*string) *ListObjectChildrenOutput
    func (s *ListObjectChildrenOutput) SetNextToken(v string) *ListObjectChildrenOutput
    func (s ListObjectChildrenOutput) String() string
type ListObjectParentPathsInput
    func (s ListObjectParentPathsInput) GoString() string
    func (s *ListObjectParentPathsInput) SetDirectoryArn(v string) *ListObjectParentPathsInput
    func (s *ListObjectParentPathsInput) SetMaxResults(v int64) *ListObjectParentPathsInput
    func (s *ListObjectParentPathsInput) SetNextToken(v string) *ListObjectParentPathsInput
    func (s *ListObjectParentPathsInput) SetObjectReference(v *ObjectReference) *ListObjectParentPathsInput
    func (s ListObjectParentPathsInput) String() string
    func (s *ListObjectParentPathsInput) Validate() error
type ListObjectParentPathsOutput
    func (s ListObjectParentPathsOutput) GoString() string
    func (s *ListObjectParentPathsOutput) SetNextToken(v string) *ListObjectParentPathsOutput
    func (s *ListObjectParentPathsOutput) SetPathToObjectIdentifiersList(v []*PathToObjectIdentifiers) *ListObjectParentPathsOutput
    func (s ListObjectParentPathsOutput) String() string
type ListObjectParentsInput
    func (s ListObjectParentsInput) GoString() string
    func (s *ListObjectParentsInput) SetConsistencyLevel(v string) *ListObjectParentsInput
    func (s *ListObjectParentsInput) SetDirectoryArn(v string) *ListObjectParentsInput
    func (s *ListObjectParentsInput) SetMaxResults(v int64) *ListObjectParentsInput
    func (s *ListObjectParentsInput) SetNextToken(v string) *ListObjectParentsInput
    func (s *ListObjectParentsInput) SetObjectReference(v *ObjectReference) *ListObjectParentsInput
    func (s ListObjectParentsInput) String() string
    func (s *ListObjectParentsInput) Validate() error
type ListObjectParentsOutput
    func (s ListObjectParentsOutput) GoString() string
    func (s *ListObjectParentsOutput) SetNextToken(v string) *ListObjectParentsOutput
    func (s *ListObjectParentsOutput) SetParents(v map[string]*string) *ListObjectParentsOutput
    func (s ListObjectParentsOutput) String() string
type ListObjectPoliciesInput
    func (s ListObjectPoliciesInput) GoString() string
    func (s *ListObjectPoliciesInput) SetConsistencyLevel(v string) *ListObjectPoliciesInput
    func (s *ListObjectPoliciesInput) SetDirectoryArn(v string) *ListObjectPoliciesInput
    func (s *ListObjectPoliciesInput) SetMaxResults(v int64) *ListObjectPoliciesInput
    func (s *ListObjectPoliciesInput) SetNextToken(v string) *ListObjectPoliciesInput
    func (s *ListObjectPoliciesInput) SetObjectReference(v *ObjectReference) *ListObjectPoliciesInput
    func (s ListObjectPoliciesInput) String() string
    func (s *ListObjectPoliciesInput) Validate() error
type ListObjectPoliciesOutput
    func (s ListObjectPoliciesOutput) GoString() string
    func (s *ListObjectPoliciesOutput) SetAttachedPolicyIds(v []*string) *ListObjectPoliciesOutput
    func (s *ListObjectPoliciesOutput) SetNextToken(v string) *ListObjectPoliciesOutput
    func (s ListObjectPoliciesOutput) String() string
type ListOutgoingTypedLinksInput
    func (s ListOutgoingTypedLinksInput) GoString() string
    func (s *ListOutgoingTypedLinksInput) SetConsistencyLevel(v string) *ListOutgoingTypedLinksInput
    func (s *ListOutgoingTypedLinksInput) SetDirectoryArn(v string) *ListOutgoingTypedLinksInput
    func (s *ListOutgoingTypedLinksInput) SetFilterAttributeRanges(v []*TypedLinkAttributeRange) *ListOutgoingTypedLinksInput
    func (s *ListOutgoingTypedLinksInput) SetFilterTypedLink(v *TypedLinkSchemaAndFacetName) *ListOutgoingTypedLinksInput
    func (s *ListOutgoingTypedLinksInput) SetMaxResults(v int64) *ListOutgoingTypedLinksInput
    func (s *ListOutgoingTypedLinksInput) SetNextToken(v string) *ListOutgoingTypedLinksInput
    func (s *ListOutgoingTypedLinksInput) SetObjectReference(v *ObjectReference) *ListOutgoingTypedLinksInput
    func (s ListOutgoingTypedLinksInput) String() string
    func (s *ListOutgoingTypedLinksInput) Validate() error
type ListOutgoingTypedLinksOutput
    func (s ListOutgoingTypedLinksOutput) GoString() string
    func (s *ListOutgoingTypedLinksOutput) SetNextToken(v string) *ListOutgoingTypedLinksOutput
    func (s *ListOutgoingTypedLinksOutput) SetTypedLinkSpecifiers(v []*TypedLinkSpecifier) *ListOutgoingTypedLinksOutput
    func (s ListOutgoingTypedLinksOutput) String() string
type ListPolicyAttachmentsInput
    func (s ListPolicyAttachmentsInput) GoString() string
    func (s *ListPolicyAttachmentsInput) SetConsistencyLevel(v string) *ListPolicyAttachmentsInput
    func (s *ListPolicyAttachmentsInput) SetDirectoryArn(v string) *ListPolicyAttachmentsInput
    func (s *ListPolicyAttachmentsInput) SetMaxResults(v int64) *ListPolicyAttachmentsInput
    func (s *ListPolicyAttachmentsInput) SetNextToken(v string) *ListPolicyAttachmentsInput
    func (s *ListPolicyAttachmentsInput) SetPolicyReference(v *ObjectReference) *ListPolicyAttachmentsInput
    func (s ListPolicyAttachmentsInput) String() string
    func (s *ListPolicyAttachmentsInput) Validate() error
type ListPolicyAttachmentsOutput
    func (s ListPolicyAttachmentsOutput) GoString() string
    func (s *ListPolicyAttachmentsOutput) SetNextToken(v string) *ListPolicyAttachmentsOutput
    func (s *ListPolicyAttachmentsOutput) SetObjectIdentifiers(v []*string) *ListPolicyAttachmentsOutput
    func (s ListPolicyAttachmentsOutput) String() string
type ListPublishedSchemaArnsInput
    func (s ListPublishedSchemaArnsInput) GoString() string
    func (s *ListPublishedSchemaArnsInput) SetMaxResults(v int64) *ListPublishedSchemaArnsInput
    func (s *ListPublishedSchemaArnsInput) SetNextToken(v string) *ListPublishedSchemaArnsInput
    func (s ListPublishedSchemaArnsInput) String() string
    func (s *ListPublishedSchemaArnsInput) Validate() error
type ListPublishedSchemaArnsOutput
    func (s ListPublishedSchemaArnsOutput) GoString() string
    func (s *ListPublishedSchemaArnsOutput) SetNextToken(v string) *ListPublishedSchemaArnsOutput
    func (s *ListPublishedSchemaArnsOutput) SetSchemaArns(v []*string) *ListPublishedSchemaArnsOutput
    func (s ListPublishedSchemaArnsOutput) String() string
type ListTagsForResourceInput
    func (s ListTagsForResourceInput) GoString() string
    func (s *ListTagsForResourceInput) SetMaxResults(v int64) *ListTagsForResourceInput
    func (s *ListTagsForResourceInput) SetNextToken(v string) *ListTagsForResourceInput
    func (s *ListTagsForResourceInput) SetResourceArn(v string) *ListTagsForResourceInput
    func (s ListTagsForResourceInput) String() string
    func (s *ListTagsForResourceInput) Validate() error
type ListTagsForResourceOutput
    func (s ListTagsForResourceOutput) GoString() string
    func (s *ListTagsForResourceOutput) SetNextToken(v string) *ListTagsForResourceOutput
    func (s *ListTagsForResourceOutput) SetTags(v []*Tag) *ListTagsForResourceOutput
    func (s ListTagsForResourceOutput) String() string
type ListTypedLinkFacetAttributesInput
    func (s ListTypedLinkFacetAttributesInput) GoString() string
    func (s *ListTypedLinkFacetAttributesInput) SetMaxResults(v int64) *ListTypedLinkFacetAttributesInput
    func (s *ListTypedLinkFacetAttributesInput) SetName(v string) *ListTypedLinkFacetAttributesInput
    func (s *ListTypedLinkFacetAttributesInput) SetNextToken(v string) *ListTypedLinkFacetAttributesInput
    func (s *ListTypedLinkFacetAttributesInput) SetSchemaArn(v string) *ListTypedLinkFacetAttributesInput
    func (s ListTypedLinkFacetAttributesInput) String() string
    func (s *ListTypedLinkFacetAttributesInput) Validate() error
type ListTypedLinkFacetAttributesOutput
    func (s ListTypedLinkFacetAttributesOutput) GoString() string
    func (s *ListTypedLinkFacetAttributesOutput) SetAttributes(v []*TypedLinkAttributeDefinition) *ListTypedLinkFacetAttributesOutput
    func (s *ListTypedLinkFacetAttributesOutput) SetNextToken(v string) *ListTypedLinkFacetAttributesOutput
    func (s ListTypedLinkFacetAttributesOutput) String() string
type ListTypedLinkFacetNamesInput
    func (s ListTypedLinkFacetNamesInput) GoString() string
    func (s *ListTypedLinkFacetNamesInput) SetMaxResults(v int64) *ListTypedLinkFacetNamesInput
    func (s *ListTypedLinkFacetNamesInput) SetNextToken(v string) *ListTypedLinkFacetNamesInput
    func (s *ListTypedLinkFacetNamesInput) SetSchemaArn(v string) *ListTypedLinkFacetNamesInput
    func (s ListTypedLinkFacetNamesInput) String() string
    func (s *ListTypedLinkFacetNamesInput) Validate() error
type ListTypedLinkFacetNamesOutput
    func (s ListTypedLinkFacetNamesOutput) GoString() string
    func (s *ListTypedLinkFacetNamesOutput) SetFacetNames(v []*string) *ListTypedLinkFacetNamesOutput
    func (s *ListTypedLinkFacetNamesOutput) SetNextToken(v string) *ListTypedLinkFacetNamesOutput
    func (s ListTypedLinkFacetNamesOutput) String() string
type LookupPolicyInput
    func (s LookupPolicyInput) GoString() string
    func (s *LookupPolicyInput) SetDirectoryArn(v string) *LookupPolicyInput
    func (s *LookupPolicyInput) SetMaxResults(v int64) *LookupPolicyInput
    func (s *LookupPolicyInput) SetNextToken(v string) *LookupPolicyInput
    func (s *LookupPolicyInput) SetObjectReference(v *ObjectReference) *LookupPolicyInput
    func (s LookupPolicyInput) String() string
    func (s *LookupPolicyInput) Validate() error
type LookupPolicyOutput
    func (s LookupPolicyOutput) GoString() string
    func (s *LookupPolicyOutput) SetNextToken(v string) *LookupPolicyOutput
    func (s *LookupPolicyOutput) SetPolicyToPathList(v []*PolicyToPath) *LookupPolicyOutput
    func (s LookupPolicyOutput) String() string
type ObjectAttributeAction
    func (s ObjectAttributeAction) GoString() string
    func (s *ObjectAttributeAction) SetObjectAttributeActionType(v string) *ObjectAttributeAction
    func (s *ObjectAttributeAction) SetObjectAttributeUpdateValue(v *TypedAttributeValue) *ObjectAttributeAction
    func (s ObjectAttributeAction) String() string
type ObjectAttributeRange
    func (s ObjectAttributeRange) GoString() string
    func (s *ObjectAttributeRange) SetAttributeKey(v *AttributeKey) *ObjectAttributeRange
    func (s *ObjectAttributeRange) SetRange(v *TypedAttributeValueRange) *ObjectAttributeRange
    func (s ObjectAttributeRange) String() string
    func (s *ObjectAttributeRange) Validate() error
type ObjectAttributeUpdate
    func (s ObjectAttributeUpdate) GoString() string
    func (s *ObjectAttributeUpdate) SetObjectAttributeAction(v *ObjectAttributeAction) *ObjectAttributeUpdate
    func (s *ObjectAttributeUpdate) SetObjectAttributeKey(v *AttributeKey) *ObjectAttributeUpdate
    func (s ObjectAttributeUpdate) String() string
    func (s *ObjectAttributeUpdate) Validate() error
type ObjectReference
    func (s ObjectReference) GoString() string
    func (s *ObjectReference) SetSelector(v string) *ObjectReference
    func (s ObjectReference) String() string
type PathToObjectIdentifiers
    func (s PathToObjectIdentifiers) GoString() string
    func (s *PathToObjectIdentifiers) SetObjectIdentifiers(v []*string) *PathToObjectIdentifiers
    func (s *PathToObjectIdentifiers) SetPath(v string) *PathToObjectIdentifiers
    func (s PathToObjectIdentifiers) String() string
type PolicyAttachment
    func (s PolicyAttachment) GoString() string
    func (s *PolicyAttachment) SetObjectIdentifier(v string) *PolicyAttachment
    func (s *PolicyAttachment) SetPolicyId(v string) *PolicyAttachment
    func (s *PolicyAttachment) SetPolicyType(v string) *PolicyAttachment
    func (s PolicyAttachment) String() string
type PolicyToPath
    func (s PolicyToPath) GoString() string
    func (s *PolicyToPath) SetPath(v string) *PolicyToPath
    func (s *PolicyToPath) SetPolicies(v []*PolicyAttachment) *PolicyToPath
    func (s PolicyToPath) String() string
type PublishSchemaInput
    func (s PublishSchemaInput) GoString() string
    func (s *PublishSchemaInput) SetDevelopmentSchemaArn(v string) *PublishSchemaInput
    func (s *PublishSchemaInput) SetName(v string) *PublishSchemaInput
    func (s *PublishSchemaInput) SetVersion(v string) *PublishSchemaInput
    func (s PublishSchemaInput) String() string
    func (s *PublishSchemaInput) Validate() error
type PublishSchemaOutput
    func (s PublishSchemaOutput) GoString() string
    func (s *PublishSchemaOutput) SetPublishedSchemaArn(v string) *PublishSchemaOutput
    func (s PublishSchemaOutput) String() string
type PutSchemaFromJsonInput
    func (s PutSchemaFromJsonInput) GoString() string
    func (s *PutSchemaFromJsonInput) SetDocument(v string) *PutSchemaFromJsonInput
    func (s *PutSchemaFromJsonInput) SetSchemaArn(v string) *PutSchemaFromJsonInput
    func (s PutSchemaFromJsonInput) String() string
    func (s *PutSchemaFromJsonInput) Validate() error
type PutSchemaFromJsonOutput
    func (s PutSchemaFromJsonOutput) GoString() string
    func (s *PutSchemaFromJsonOutput) SetArn(v string) *PutSchemaFromJsonOutput
    func (s PutSchemaFromJsonOutput) String() string
type RemoveFacetFromObjectInput
    func (s RemoveFacetFromObjectInput) GoString() string
    func (s *RemoveFacetFromObjectInput) SetDirectoryArn(v string) *RemoveFacetFromObjectInput
    func (s *RemoveFacetFromObjectInput) SetObjectReference(v *ObjectReference) *RemoveFacetFromObjectInput
    func (s *RemoveFacetFromObjectInput) SetSchemaFacet(v *SchemaFacet) *RemoveFacetFromObjectInput
    func (s RemoveFacetFromObjectInput) String() string
    func (s *RemoveFacetFromObjectInput) Validate() error
type RemoveFacetFromObjectOutput
    func (s RemoveFacetFromObjectOutput) GoString() string
    func (s RemoveFacetFromObjectOutput) String() string
type Rule
    func (s Rule) GoString() string
    func (s *Rule) SetParameters(v map[string]*string) *Rule
    func (s *Rule) SetType(v string) *Rule
    func (s Rule) String() string
type SchemaFacet
    func (s SchemaFacet) GoString() string
    func (s *SchemaFacet) SetFacetName(v string) *SchemaFacet
    func (s *SchemaFacet) SetSchemaArn(v string) *SchemaFacet
    func (s SchemaFacet) String() string
    func (s *SchemaFacet) Validate() error
type Tag
    func (s Tag) GoString() string
    func (s *Tag) SetKey(v string) *Tag
    func (s *Tag) SetValue(v string) *Tag
    func (s Tag) String() string
type TagResourceInput
    func (s TagResourceInput) GoString() string
    func (s *TagResourceInput) SetResourceArn(v string) *TagResourceInput
    func (s *TagResourceInput) SetTags(v []*Tag) *TagResourceInput
    func (s TagResourceInput) String() string
    func (s *TagResourceInput) Validate() error
type TagResourceOutput
    func (s TagResourceOutput) GoString() string
    func (s TagResourceOutput) String() string
type TypedAttributeValue
    func (s TypedAttributeValue) GoString() string
    func (s *TypedAttributeValue) SetBinaryValue(v []byte) *TypedAttributeValue
    func (s *TypedAttributeValue) SetBooleanValue(v bool) *TypedAttributeValue
    func (s *TypedAttributeValue) SetDatetimeValue(v time.Time) *TypedAttributeValue
    func (s *TypedAttributeValue) SetNumberValue(v string) *TypedAttributeValue
    func (s *TypedAttributeValue) SetStringValue(v string) *TypedAttributeValue
    func (s TypedAttributeValue) String() string
type TypedAttributeValueRange
    func (s TypedAttributeValueRange) GoString() string
    func (s *TypedAttributeValueRange) SetEndMode(v string) *TypedAttributeValueRange
    func (s *TypedAttributeValueRange) SetEndValue(v *TypedAttributeValue) *TypedAttributeValueRange
    func (s *TypedAttributeValueRange) SetStartMode(v string) *TypedAttributeValueRange
    func (s *TypedAttributeValueRange) SetStartValue(v *TypedAttributeValue) *TypedAttributeValueRange
    func (s TypedAttributeValueRange) String() string
    func (s *TypedAttributeValueRange) Validate() error
type TypedLinkAttributeDefinition
    func (s TypedLinkAttributeDefinition) GoString() string
    func (s *TypedLinkAttributeDefinition) SetDefaultValue(v *TypedAttributeValue) *TypedLinkAttributeDefinition
    func (s *TypedLinkAttributeDefinition) SetIsImmutable(v bool) *TypedLinkAttributeDefinition
    func (s *TypedLinkAttributeDefinition) SetName(v string) *TypedLinkAttributeDefinition
    func (s *TypedLinkAttributeDefinition) SetRequiredBehavior(v string) *TypedLinkAttributeDefinition
    func (s *TypedLinkAttributeDefinition) SetRules(v map[string]*Rule) *TypedLinkAttributeDefinition
    func (s *TypedLinkAttributeDefinition) SetType(v string) *TypedLinkAttributeDefinition
    func (s TypedLinkAttributeDefinition) String() string
    func (s *TypedLinkAttributeDefinition) Validate() error
type TypedLinkAttributeRange
    func (s TypedLinkAttributeRange) GoString() string
    func (s *TypedLinkAttributeRange) SetAttributeName(v string) *TypedLinkAttributeRange
    func (s *TypedLinkAttributeRange) SetRange(v *TypedAttributeValueRange) *TypedLinkAttributeRange
    func (s TypedLinkAttributeRange) String() string
    func (s *TypedLinkAttributeRange) Validate() error
type TypedLinkFacet
    func (s TypedLinkFacet) GoString() string
    func (s *TypedLinkFacet) SetAttributes(v []*TypedLinkAttributeDefinition) *TypedLinkFacet
    func (s *TypedLinkFacet) SetIdentityAttributeOrder(v []*string) *TypedLinkFacet
    func (s *TypedLinkFacet) SetName(v string) *TypedLinkFacet
    func (s TypedLinkFacet) String() string
    func (s *TypedLinkFacet) Validate() error
type TypedLinkFacetAttributeUpdate
    func (s TypedLinkFacetAttributeUpdate) GoString() string
    func (s *TypedLinkFacetAttributeUpdate) SetAction(v string) *TypedLinkFacetAttributeUpdate
    func (s *TypedLinkFacetAttributeUpdate) SetAttribute(v *TypedLinkAttributeDefinition) *TypedLinkFacetAttributeUpdate
    func (s TypedLinkFacetAttributeUpdate) String() string
    func (s *TypedLinkFacetAttributeUpdate) Validate() error
type TypedLinkSchemaAndFacetName
    func (s TypedLinkSchemaAndFacetName) GoString() string
    func (s *TypedLinkSchemaAndFacetName) SetSchemaArn(v string) *TypedLinkSchemaAndFacetName
    func (s *TypedLinkSchemaAndFacetName) SetTypedLinkName(v string) *TypedLinkSchemaAndFacetName
    func (s TypedLinkSchemaAndFacetName) String() string
    func (s *TypedLinkSchemaAndFacetName) Validate() error
type TypedLinkSpecifier
    func (s TypedLinkSpecifier) GoString() string
    func (s *TypedLinkSpecifier) SetIdentityAttributeValues(v []*AttributeNameAndValue) *TypedLinkSpecifier
    func (s *TypedLinkSpecifier) SetSourceObjectReference(v *ObjectReference) *TypedLinkSpecifier
    func (s *TypedLinkSpecifier) SetTargetObjectReference(v *ObjectReference) *TypedLinkSpecifier
    func (s *TypedLinkSpecifier) SetTypedLinkFacet(v *TypedLinkSchemaAndFacetName) *TypedLinkSpecifier
    func (s TypedLinkSpecifier) String() string
    func (s *TypedLinkSpecifier) Validate() error
type UntagResourceInput
    func (s UntagResourceInput) GoString() string
    func (s *UntagResourceInput) SetResourceArn(v string) *UntagResourceInput
    func (s *UntagResourceInput) SetTagKeys(v []*string) *UntagResourceInput
    func (s UntagResourceInput) String() string
    func (s *UntagResourceInput) Validate() error
type UntagResourceOutput
    func (s UntagResourceOutput) GoString() string
    func (s UntagResourceOutput) String() string
type UpdateFacetInput
    func (s UpdateFacetInput) GoString() string
    func (s *UpdateFacetInput) SetAttributeUpdates(v []*FacetAttributeUpdate) *UpdateFacetInput
    func (s *UpdateFacetInput) SetName(v string) *UpdateFacetInput
    func (s *UpdateFacetInput) SetObjectType(v string) *UpdateFacetInput
    func (s *UpdateFacetInput) SetSchemaArn(v string) *UpdateFacetInput
    func (s UpdateFacetInput) String() string
    func (s *UpdateFacetInput) Validate() error
type UpdateFacetOutput
    func (s UpdateFacetOutput) GoString() string
    func (s UpdateFacetOutput) String() string
type UpdateObjectAttributesInput
    func (s UpdateObjectAttributesInput) GoString() string
    func (s *UpdateObjectAttributesInput) SetAttributeUpdates(v []*ObjectAttributeUpdate) *UpdateObjectAttributesInput
    func (s *UpdateObjectAttributesInput) SetDirectoryArn(v string) *UpdateObjectAttributesInput
    func (s *UpdateObjectAttributesInput) SetObjectReference(v *ObjectReference) *UpdateObjectAttributesInput
    func (s UpdateObjectAttributesInput) String() string
    func (s *UpdateObjectAttributesInput) Validate() error
type UpdateObjectAttributesOutput
    func (s UpdateObjectAttributesOutput) GoString() string
    func (s *UpdateObjectAttributesOutput) SetObjectIdentifier(v string) *UpdateObjectAttributesOutput
    func (s UpdateObjectAttributesOutput) String() string
type UpdateSchemaInput
    func (s UpdateSchemaInput) GoString() string
    func (s *UpdateSchemaInput) SetName(v string) *UpdateSchemaInput
    func (s *UpdateSchemaInput) SetSchemaArn(v string) *UpdateSchemaInput
    func (s UpdateSchemaInput) String() string
    func (s *UpdateSchemaInput) Validate() error
type UpdateSchemaOutput
    func (s UpdateSchemaOutput) GoString() string
    func (s *UpdateSchemaOutput) SetSchemaArn(v string) *UpdateSchemaOutput
    func (s UpdateSchemaOutput) String() string
type UpdateTypedLinkFacetInput
    func (s UpdateTypedLinkFacetInput) GoString() string
    func (s *UpdateTypedLinkFacetInput) SetAttributeUpdates(v []*TypedLinkFacetAttributeUpdate) *UpdateTypedLinkFacetInput
    func (s *UpdateTypedLinkFacetInput) SetIdentityAttributeOrder(v []*string) *UpdateTypedLinkFacetInput
    func (s *UpdateTypedLinkFacetInput) SetName(v string) *UpdateTypedLinkFacetInput
    func (s *UpdateTypedLinkFacetInput) SetSchemaArn(v string) *UpdateTypedLinkFacetInput
    func (s UpdateTypedLinkFacetInput) String() string
    func (s *UpdateTypedLinkFacetInput) Validate() error
type UpdateTypedLinkFacetOutput
    func (s UpdateTypedLinkFacetOutput) GoString() string
    func (s UpdateTypedLinkFacetOutput) String() string

Package files

api.go doc.go errors.go service.go

Constants

const (
    // BatchReadExceptionTypeValidationException is a BatchReadExceptionType enum value
    BatchReadExceptionTypeValidationException = "ValidationException"

    // BatchReadExceptionTypeInvalidArnException is a BatchReadExceptionType enum value
    BatchReadExceptionTypeInvalidArnException = "InvalidArnException"

    // BatchReadExceptionTypeResourceNotFoundException is a BatchReadExceptionType enum value
    BatchReadExceptionTypeResourceNotFoundException = "ResourceNotFoundException"

    // BatchReadExceptionTypeInvalidNextTokenException is a BatchReadExceptionType enum value
    BatchReadExceptionTypeInvalidNextTokenException = "InvalidNextTokenException"

    // BatchReadExceptionTypeAccessDeniedException is a BatchReadExceptionType enum value
    BatchReadExceptionTypeAccessDeniedException = "AccessDeniedException"

    // BatchReadExceptionTypeNotNodeException is a BatchReadExceptionType enum value
    BatchReadExceptionTypeNotNodeException = "NotNodeException"
)
const (
    // BatchWriteExceptionTypeInternalServiceException is a BatchWriteExceptionType enum value
    BatchWriteExceptionTypeInternalServiceException = "InternalServiceException"

    // BatchWriteExceptionTypeValidationException is a BatchWriteExceptionType enum value
    BatchWriteExceptionTypeValidationException = "ValidationException"

    // BatchWriteExceptionTypeInvalidArnException is a BatchWriteExceptionType enum value
    BatchWriteExceptionTypeInvalidArnException = "InvalidArnException"

    // BatchWriteExceptionTypeLinkNameAlreadyInUseException is a BatchWriteExceptionType enum value
    BatchWriteExceptionTypeLinkNameAlreadyInUseException = "LinkNameAlreadyInUseException"

    // BatchWriteExceptionTypeStillContainsLinksException is a BatchWriteExceptionType enum value
    BatchWriteExceptionTypeStillContainsLinksException = "StillContainsLinksException"

    // BatchWriteExceptionTypeFacetValidationException is a BatchWriteExceptionType enum value
    BatchWriteExceptionTypeFacetValidationException = "FacetValidationException"

    // BatchWriteExceptionTypeObjectNotDetachedException is a BatchWriteExceptionType enum value
    BatchWriteExceptionTypeObjectNotDetachedException = "ObjectNotDetachedException"

    // BatchWriteExceptionTypeResourceNotFoundException is a BatchWriteExceptionType enum value
    BatchWriteExceptionTypeResourceNotFoundException = "ResourceNotFoundException"

    // BatchWriteExceptionTypeAccessDeniedException is a BatchWriteExceptionType enum value
    BatchWriteExceptionTypeAccessDeniedException = "AccessDeniedException"
)
const (
    // ConsistencyLevelSerializable is a ConsistencyLevel enum value
    ConsistencyLevelSerializable = "SERIALIZABLE"

    // ConsistencyLevelEventual is a ConsistencyLevel enum value
    ConsistencyLevelEventual = "EVENTUAL"
)
const (
    // DirectoryStateEnabled is a DirectoryState enum value
    DirectoryStateEnabled = "ENABLED"

    // DirectoryStateDisabled is a DirectoryState enum value
    DirectoryStateDisabled = "DISABLED"

    // DirectoryStateDeleted is a DirectoryState enum value
    DirectoryStateDeleted = "DELETED"
)
const (
    // FacetAttributeTypeString is a FacetAttributeType enum value
    FacetAttributeTypeString = "STRING"

    // FacetAttributeTypeBinary is a FacetAttributeType enum value
    FacetAttributeTypeBinary = "BINARY"

    // FacetAttributeTypeBoolean is a FacetAttributeType enum value
    FacetAttributeTypeBoolean = "BOOLEAN"

    // FacetAttributeTypeNumber is a FacetAttributeType enum value
    FacetAttributeTypeNumber = "NUMBER"

    // FacetAttributeTypeDatetime is a FacetAttributeType enum value
    FacetAttributeTypeDatetime = "DATETIME"
)
const (
    // ObjectTypeNode is a ObjectType enum value
    ObjectTypeNode = "NODE"

    // ObjectTypeLeafNode is a ObjectType enum value
    ObjectTypeLeafNode = "LEAF_NODE"

    // ObjectTypePolicy is a ObjectType enum value
    ObjectTypePolicy = "POLICY"

    // ObjectTypeIndex is a ObjectType enum value
    ObjectTypeIndex = "INDEX"
)
const (
    // RangeModeFirst is a RangeMode enum value
    RangeModeFirst = "FIRST"

    // RangeModeLast is a RangeMode enum value
    RangeModeLast = "LAST"

    // RangeModeLastBeforeMissingValues is a RangeMode enum value
    RangeModeLastBeforeMissingValues = "LAST_BEFORE_MISSING_VALUES"

    // RangeModeInclusive is a RangeMode enum value
    RangeModeInclusive = "INCLUSIVE"

    // RangeModeExclusive is a RangeMode enum value
    RangeModeExclusive = "EXCLUSIVE"
)
const (
    // RequiredAttributeBehaviorRequiredAlways is a RequiredAttributeBehavior enum value
    RequiredAttributeBehaviorRequiredAlways = "REQUIRED_ALWAYS"

    // RequiredAttributeBehaviorNotRequired is a RequiredAttributeBehavior enum value
    RequiredAttributeBehaviorNotRequired = "NOT_REQUIRED"
)
const (
    // RuleTypeBinaryLength is a RuleType enum value
    RuleTypeBinaryLength = "BINARY_LENGTH"

    // RuleTypeNumberComparison is a RuleType enum value
    RuleTypeNumberComparison = "NUMBER_COMPARISON"

    // RuleTypeStringFromSet is a RuleType enum value
    RuleTypeStringFromSet = "STRING_FROM_SET"

    // RuleTypeStringLength is a RuleType enum value
    RuleTypeStringLength = "STRING_LENGTH"
)
const (
    // UpdateActionTypeCreateOrUpdate is a UpdateActionType enum value
    UpdateActionTypeCreateOrUpdate = "CREATE_OR_UPDATE"

    // UpdateActionTypeDelete is a UpdateActionType enum value
    UpdateActionTypeDelete = "DELETE"
)
const (

    // ErrCodeAccessDeniedException for service response error code
    // "AccessDeniedException".
    //
    // Access denied. Check your permissions.
    ErrCodeAccessDeniedException = "AccessDeniedException"

    // ErrCodeBatchWriteException for service response error code
    // "BatchWriteException".
    //
    // A BatchWrite exception has occurred.
    ErrCodeBatchWriteException = "BatchWriteException"

    // ErrCodeCannotListParentOfRootException for service response error code
    // "CannotListParentOfRootException".
    //
    // Cannot list the parents of a Directory root.
    ErrCodeCannotListParentOfRootException = "CannotListParentOfRootException"

    // ErrCodeDirectoryAlreadyExistsException for service response error code
    // "DirectoryAlreadyExistsException".
    //
    // Indicates that a Directory could not be created due to a naming conflict.
    // Choose a different name and try again.
    ErrCodeDirectoryAlreadyExistsException = "DirectoryAlreadyExistsException"

    // ErrCodeDirectoryDeletedException for service response error code
    // "DirectoryDeletedException".
    //
    // A directory that has been deleted and to which access has been attempted.
    // Note: The requested resource will eventually cease to exist.
    ErrCodeDirectoryDeletedException = "DirectoryDeletedException"

    // ErrCodeDirectoryNotDisabledException for service response error code
    // "DirectoryNotDisabledException".
    //
    // An operation can only operate on a disabled directory.
    ErrCodeDirectoryNotDisabledException = "DirectoryNotDisabledException"

    // ErrCodeDirectoryNotEnabledException for service response error code
    // "DirectoryNotEnabledException".
    //
    // An operation can only operate on a directory that is not enabled.
    ErrCodeDirectoryNotEnabledException = "DirectoryNotEnabledException"

    // ErrCodeFacetAlreadyExistsException for service response error code
    // "FacetAlreadyExistsException".
    //
    // A facet with the same name already exists.
    ErrCodeFacetAlreadyExistsException = "FacetAlreadyExistsException"

    // ErrCodeFacetInUseException for service response error code
    // "FacetInUseException".
    //
    // Occurs when deleting a facet that contains an attribute that is a target
    // to an attribute reference in a different facet.
    ErrCodeFacetInUseException = "FacetInUseException"

    // ErrCodeFacetNotFoundException for service response error code
    // "FacetNotFoundException".
    //
    // The specified Facet could not be found.
    ErrCodeFacetNotFoundException = "FacetNotFoundException"

    // ErrCodeFacetValidationException for service response error code
    // "FacetValidationException".
    //
    // The Facet that you provided was not well formed or could not be validated
    // with the schema.
    ErrCodeFacetValidationException = "FacetValidationException"

    // ErrCodeIndexedAttributeMissingException for service response error code
    // "IndexedAttributeMissingException".
    //
    // An object has been attempted to be attached to an object that does not have
    // the appropriate attribute value.
    ErrCodeIndexedAttributeMissingException = "IndexedAttributeMissingException"

    // ErrCodeInternalServiceException for service response error code
    // "InternalServiceException".
    //
    // Indicates a problem that must be resolved by Amazon Web Services. This might
    // be a transient error in which case you can retry your request until it succeeds.
    // Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
    // site to see if there are any operational issues with the service.
    ErrCodeInternalServiceException = "InternalServiceException"

    // ErrCodeInvalidArnException for service response error code
    // "InvalidArnException".
    //
    // Indicates that the provided ARN value is not valid.
    ErrCodeInvalidArnException = "InvalidArnException"

    // ErrCodeInvalidAttachmentException for service response error code
    // "InvalidAttachmentException".
    //
    // Indicates that an attempt to attach an object with the same link name or
    // to apply a schema with the same name has occurred. Rename the link or the
    // schema and then try again.
    ErrCodeInvalidAttachmentException = "InvalidAttachmentException"

    // ErrCodeInvalidFacetUpdateException for service response error code
    // "InvalidFacetUpdateException".
    //
    // An attempt to modify a Facet resulted in an invalid schema exception.
    ErrCodeInvalidFacetUpdateException = "InvalidFacetUpdateException"

    // ErrCodeInvalidNextTokenException for service response error code
    // "InvalidNextTokenException".
    //
    // Indicates that the NextToken value is not valid.
    ErrCodeInvalidNextTokenException = "InvalidNextTokenException"

    // ErrCodeInvalidRuleException for service response error code
    // "InvalidRuleException".
    //
    // Occurs when any of the rule parameter keys or values are invalid.
    ErrCodeInvalidRuleException = "InvalidRuleException"

    // ErrCodeInvalidSchemaDocException for service response error code
    // "InvalidSchemaDocException".
    //
    // Indicates that the provided SchemaDoc value is not valid.
    ErrCodeInvalidSchemaDocException = "InvalidSchemaDocException"

    // ErrCodeInvalidTaggingRequestException for service response error code
    // "InvalidTaggingRequestException".
    //
    // Can occur for multiple reasons such as when you tag a resource that doesn’t
    // exist or if you specify a higher number of tags for a resource than the allowed
    // limit. Allowed limit is 50 tags per resource.
    ErrCodeInvalidTaggingRequestException = "InvalidTaggingRequestException"

    // ErrCodeLimitExceededException for service response error code
    // "LimitExceededException".
    //
    // Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
    // for more information.
    ErrCodeLimitExceededException = "LimitExceededException"

    // ErrCodeLinkNameAlreadyInUseException for service response error code
    // "LinkNameAlreadyInUseException".
    //
    // Indicates that a link could not be created due to a naming conflict. Choose
    // a different name and then try again.
    ErrCodeLinkNameAlreadyInUseException = "LinkNameAlreadyInUseException"

    // ErrCodeNotIndexException for service response error code
    // "NotIndexException".
    //
    // Indicates that the requested operation can only operate on index objects.
    ErrCodeNotIndexException = "NotIndexException"

    // ErrCodeNotNodeException for service response error code
    // "NotNodeException".
    //
    // Occurs when any invalid operations are performed on an object that is not
    // a node, such as calling ListObjectChildren for a leaf node object.
    ErrCodeNotNodeException = "NotNodeException"

    // ErrCodeNotPolicyException for service response error code
    // "NotPolicyException".
    //
    // Indicates that the requested operation can only operate on policy objects.
    ErrCodeNotPolicyException = "NotPolicyException"

    // ErrCodeObjectAlreadyDetachedException for service response error code
    // "ObjectAlreadyDetachedException".
    //
    // Indicates that the object is not attached to the index.
    ErrCodeObjectAlreadyDetachedException = "ObjectAlreadyDetachedException"

    // ErrCodeObjectNotDetachedException for service response error code
    // "ObjectNotDetachedException".
    //
    // Indicates that the requested operation cannot be completed because the object
    // has not been detached from the tree.
    ErrCodeObjectNotDetachedException = "ObjectNotDetachedException"

    // ErrCodeResourceNotFoundException for service response error code
    // "ResourceNotFoundException".
    //
    // The specified resource could not be found.
    ErrCodeResourceNotFoundException = "ResourceNotFoundException"

    // ErrCodeRetryableConflictException for service response error code
    // "RetryableConflictException".
    //
    // Occurs when a conflict with a previous successful write is detected. For
    // example, if a write operation occurs on an object and then an attempt is
    // made to read the object using “SERIALIZABLE” consistency, this exception
    // may result. This generally occurs when the previous write did not have time
    // to propagate to the host serving the current request. A retry (with appropriate
    // backoff logic) is the recommended response to this exception.
    ErrCodeRetryableConflictException = "RetryableConflictException"

    // ErrCodeSchemaAlreadyExistsException for service response error code
    // "SchemaAlreadyExistsException".
    //
    // Indicates that a schema could not be created due to a naming conflict. Please
    // select a different name and then try again.
    ErrCodeSchemaAlreadyExistsException = "SchemaAlreadyExistsException"

    // ErrCodeSchemaAlreadyPublishedException for service response error code
    // "SchemaAlreadyPublishedException".
    //
    // Indicates that a schema is already published.
    ErrCodeSchemaAlreadyPublishedException = "SchemaAlreadyPublishedException"

    // ErrCodeStillContainsLinksException for service response error code
    // "StillContainsLinksException".
    //
    // The object could not be deleted because links still exist. Remove the links
    // and then try the operation again.
    ErrCodeStillContainsLinksException = "StillContainsLinksException"

    // ErrCodeUnsupportedIndexTypeException for service response error code
    // "UnsupportedIndexTypeException".
    //
    // Indicates that the requested index type is not supported.
    ErrCodeUnsupportedIndexTypeException = "UnsupportedIndexTypeException"

    // ErrCodeValidationException for service response error code
    // "ValidationException".
    //
    // Indicates that your request is malformed in some manner. See the exception
    // message.
    ErrCodeValidationException = "ValidationException"
)

Service information constants

const (
    ServiceName = "clouddirectory" // Service endpoint prefix API calls made to.
    EndpointsID = ServiceName      // Service ID for Regions and Endpoints metadata.
)

type AddFacetToObjectInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AddFacetToObjectRequest

type AddFacetToObjectInput struct {

    // The Amazon Resource Name (ARN) that is associated with the Directory where
    // the object resides. For more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // Attributes on the facet that you are adding to the object.
    ObjectAttributeList []*AttributeKeyAndValue `type:"list"`

    // A reference to the object you are adding the specified facet to.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`

    // Identifiers for the facet that you are adding to the object.
    //
    // SchemaFacet is a required field
    SchemaFacet *SchemaFacet `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (AddFacetToObjectInput) GoString

func (s AddFacetToObjectInput) GoString() string

GoString returns the string representation

func (*AddFacetToObjectInput) SetDirectoryArn

func (s *AddFacetToObjectInput) SetDirectoryArn(v string) *AddFacetToObjectInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*AddFacetToObjectInput) SetObjectAttributeList

func (s *AddFacetToObjectInput) SetObjectAttributeList(v []*AttributeKeyAndValue) *AddFacetToObjectInput

SetObjectAttributeList sets the ObjectAttributeList field's value.

func (*AddFacetToObjectInput) SetObjectReference

func (s *AddFacetToObjectInput) SetObjectReference(v *ObjectReference) *AddFacetToObjectInput

SetObjectReference sets the ObjectReference field's value.

func (*AddFacetToObjectInput) SetSchemaFacet

func (s *AddFacetToObjectInput) SetSchemaFacet(v *SchemaFacet) *AddFacetToObjectInput

SetSchemaFacet sets the SchemaFacet field's value.

func (AddFacetToObjectInput) String

func (s AddFacetToObjectInput) String() string

String returns the string representation

func (*AddFacetToObjectInput) Validate

func (s *AddFacetToObjectInput) Validate() error

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

type AddFacetToObjectOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AddFacetToObjectResponse

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

func (AddFacetToObjectOutput) GoString

func (s AddFacetToObjectOutput) GoString() string

GoString returns the string representation

func (AddFacetToObjectOutput) String

func (s AddFacetToObjectOutput) String() string

String returns the string representation

type ApplySchemaInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ApplySchemaRequest

type ApplySchemaInput struct {

    // The Amazon Resource Name (ARN) that is associated with the Directory into
    // which the schema is copied. For more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // Published schema Amazon Resource Name (ARN) that needs to be copied. For
    // more information, see arns.
    //
    // PublishedSchemaArn is a required field
    PublishedSchemaArn *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ApplySchemaInput) GoString

func (s ApplySchemaInput) GoString() string

GoString returns the string representation

func (*ApplySchemaInput) SetDirectoryArn

func (s *ApplySchemaInput) SetDirectoryArn(v string) *ApplySchemaInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*ApplySchemaInput) SetPublishedSchemaArn

func (s *ApplySchemaInput) SetPublishedSchemaArn(v string) *ApplySchemaInput

SetPublishedSchemaArn sets the PublishedSchemaArn field's value.

func (ApplySchemaInput) String

func (s ApplySchemaInput) String() string

String returns the string representation

func (*ApplySchemaInput) Validate

func (s *ApplySchemaInput) Validate() error

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

type ApplySchemaOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ApplySchemaResponse

type ApplySchemaOutput struct {

    // The applied schema ARN that is associated with the copied schema in the Directory.
    // You can use this ARN to describe the schema information applied on this directory.
    // For more information, see arns.
    AppliedSchemaArn *string `type:"string"`

    // The ARN that is associated with the Directory. For more information, see
    // arns.
    DirectoryArn *string `type:"string"`
    // contains filtered or unexported fields
}

func (ApplySchemaOutput) GoString

func (s ApplySchemaOutput) GoString() string

GoString returns the string representation

func (*ApplySchemaOutput) SetAppliedSchemaArn

func (s *ApplySchemaOutput) SetAppliedSchemaArn(v string) *ApplySchemaOutput

SetAppliedSchemaArn sets the AppliedSchemaArn field's value.

func (*ApplySchemaOutput) SetDirectoryArn

func (s *ApplySchemaOutput) SetDirectoryArn(v string) *ApplySchemaOutput

SetDirectoryArn sets the DirectoryArn field's value.

func (ApplySchemaOutput) String

func (s ApplySchemaOutput) String() string

String returns the string representation

type AttachObjectInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachObjectRequest

type AttachObjectInput struct {

    // The child object reference to be attached to the object.
    //
    // ChildReference is a required field
    ChildReference *ObjectReference `type:"structure" required:"true"`

    // Amazon Resource Name (ARN) that is associated with the Directory where both
    // objects reside. For more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // The link name with which the child object is attached to the parent.
    //
    // LinkName is a required field
    LinkName *string `min:"1" type:"string" required:"true"`

    // The parent object reference.
    //
    // ParentReference is a required field
    ParentReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (AttachObjectInput) GoString

func (s AttachObjectInput) GoString() string

GoString returns the string representation

func (*AttachObjectInput) SetChildReference

func (s *AttachObjectInput) SetChildReference(v *ObjectReference) *AttachObjectInput

SetChildReference sets the ChildReference field's value.

func (*AttachObjectInput) SetDirectoryArn

func (s *AttachObjectInput) SetDirectoryArn(v string) *AttachObjectInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*AttachObjectInput) SetLinkName

func (s *AttachObjectInput) SetLinkName(v string) *AttachObjectInput

SetLinkName sets the LinkName field's value.

func (*AttachObjectInput) SetParentReference

func (s *AttachObjectInput) SetParentReference(v *ObjectReference) *AttachObjectInput

SetParentReference sets the ParentReference field's value.

func (AttachObjectInput) String

func (s AttachObjectInput) String() string

String returns the string representation

func (*AttachObjectInput) Validate

func (s *AttachObjectInput) Validate() error

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

type AttachObjectOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachObjectResponse

type AttachObjectOutput struct {

    // The attached ObjectIdentifier, which is the child ObjectIdentifier.
    AttachedObjectIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (AttachObjectOutput) GoString

func (s AttachObjectOutput) GoString() string

GoString returns the string representation

func (*AttachObjectOutput) SetAttachedObjectIdentifier

func (s *AttachObjectOutput) SetAttachedObjectIdentifier(v string) *AttachObjectOutput

SetAttachedObjectIdentifier sets the AttachedObjectIdentifier field's value.

func (AttachObjectOutput) String

func (s AttachObjectOutput) String() string

String returns the string representation

type AttachPolicyInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachPolicyRequest

type AttachPolicyInput struct {

    // The Amazon Resource Name (ARN) that is associated with the Directory where
    // both objects reside. For more information, see arns.
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string"`

    // The reference that identifies the object to which the policy will be attached.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`

    // The reference that is associated with the policy object.
    //
    // PolicyReference is a required field
    PolicyReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (AttachPolicyInput) GoString

func (s AttachPolicyInput) GoString() string

GoString returns the string representation

func (*AttachPolicyInput) SetDirectoryArn

func (s *AttachPolicyInput) SetDirectoryArn(v string) *AttachPolicyInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*AttachPolicyInput) SetObjectReference

func (s *AttachPolicyInput) SetObjectReference(v *ObjectReference) *AttachPolicyInput

SetObjectReference sets the ObjectReference field's value.

func (*AttachPolicyInput) SetPolicyReference

func (s *AttachPolicyInput) SetPolicyReference(v *ObjectReference) *AttachPolicyInput

SetPolicyReference sets the PolicyReference field's value.

func (AttachPolicyInput) String

func (s AttachPolicyInput) String() string

String returns the string representation

func (*AttachPolicyInput) Validate

func (s *AttachPolicyInput) Validate() error

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

type AttachPolicyOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachPolicyResponse

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

func (AttachPolicyOutput) GoString

func (s AttachPolicyOutput) GoString() string

GoString returns the string representation

func (AttachPolicyOutput) String

func (s AttachPolicyOutput) String() string

String returns the string representation

type AttachToIndexInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachToIndexRequest

type AttachToIndexInput struct {

    // The Amazon Resource Name (ARN) of the directory where the object and index
    // exist.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // A reference to the index that you are attaching the object to.
    //
    // IndexReference is a required field
    IndexReference *ObjectReference `type:"structure" required:"true"`

    // A reference to the object that you are attaching to the index.
    //
    // TargetReference is a required field
    TargetReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (AttachToIndexInput) GoString

func (s AttachToIndexInput) GoString() string

GoString returns the string representation

func (*AttachToIndexInput) SetDirectoryArn

func (s *AttachToIndexInput) SetDirectoryArn(v string) *AttachToIndexInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*AttachToIndexInput) SetIndexReference

func (s *AttachToIndexInput) SetIndexReference(v *ObjectReference) *AttachToIndexInput

SetIndexReference sets the IndexReference field's value.

func (*AttachToIndexInput) SetTargetReference

func (s *AttachToIndexInput) SetTargetReference(v *ObjectReference) *AttachToIndexInput

SetTargetReference sets the TargetReference field's value.

func (AttachToIndexInput) String

func (s AttachToIndexInput) String() string

String returns the string representation

func (*AttachToIndexInput) Validate

func (s *AttachToIndexInput) Validate() error

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

type AttachToIndexOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachToIndexResponse

type AttachToIndexOutput struct {

    // The ObjectIdentifier of the object that was attached to the index.
    AttachedObjectIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (AttachToIndexOutput) GoString

func (s AttachToIndexOutput) GoString() string

GoString returns the string representation

func (*AttachToIndexOutput) SetAttachedObjectIdentifier

func (s *AttachToIndexOutput) SetAttachedObjectIdentifier(v string) *AttachToIndexOutput

SetAttachedObjectIdentifier sets the AttachedObjectIdentifier field's value.

func (AttachToIndexOutput) String

func (s AttachToIndexOutput) String() string

String returns the string representation

type AttachTypedLinkInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachTypedLinkRequest

type AttachTypedLinkInput struct {

    // A set of attributes that are associated with the typed link.
    //
    // Attributes is a required field
    Attributes []*AttributeNameAndValue `type:"list" required:"true"`

    // The Amazon Resource Name (ARN) of the directory where you want to attach
    // the typed link.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // Identifies the source object that the typed link will attach to.
    //
    // SourceObjectReference is a required field
    SourceObjectReference *ObjectReference `type:"structure" required:"true"`

    // Identifies the target object that the typed link will attach to.
    //
    // TargetObjectReference is a required field
    TargetObjectReference *ObjectReference `type:"structure" required:"true"`

    // Identifies the typed link facet that is associated with the typed link.
    //
    // TypedLinkFacet is a required field
    TypedLinkFacet *TypedLinkSchemaAndFacetName `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (AttachTypedLinkInput) GoString

func (s AttachTypedLinkInput) GoString() string

GoString returns the string representation

func (*AttachTypedLinkInput) SetAttributes

func (s *AttachTypedLinkInput) SetAttributes(v []*AttributeNameAndValue) *AttachTypedLinkInput

SetAttributes sets the Attributes field's value.

func (*AttachTypedLinkInput) SetDirectoryArn

func (s *AttachTypedLinkInput) SetDirectoryArn(v string) *AttachTypedLinkInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*AttachTypedLinkInput) SetSourceObjectReference

func (s *AttachTypedLinkInput) SetSourceObjectReference(v *ObjectReference) *AttachTypedLinkInput

SetSourceObjectReference sets the SourceObjectReference field's value.

func (*AttachTypedLinkInput) SetTargetObjectReference

func (s *AttachTypedLinkInput) SetTargetObjectReference(v *ObjectReference) *AttachTypedLinkInput

SetTargetObjectReference sets the TargetObjectReference field's value.

func (*AttachTypedLinkInput) SetTypedLinkFacet

func (s *AttachTypedLinkInput) SetTypedLinkFacet(v *TypedLinkSchemaAndFacetName) *AttachTypedLinkInput

SetTypedLinkFacet sets the TypedLinkFacet field's value.

func (AttachTypedLinkInput) String

func (s AttachTypedLinkInput) String() string

String returns the string representation

func (*AttachTypedLinkInput) Validate

func (s *AttachTypedLinkInput) Validate() error

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

type AttachTypedLinkOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachTypedLinkResponse

type AttachTypedLinkOutput struct {

    // Returns a typed link specifier as output.
    TypedLinkSpecifier *TypedLinkSpecifier `type:"structure"`
    // contains filtered or unexported fields
}

func (AttachTypedLinkOutput) GoString

func (s AttachTypedLinkOutput) GoString() string

GoString returns the string representation

func (*AttachTypedLinkOutput) SetTypedLinkSpecifier

func (s *AttachTypedLinkOutput) SetTypedLinkSpecifier(v *TypedLinkSpecifier) *AttachTypedLinkOutput

SetTypedLinkSpecifier sets the TypedLinkSpecifier field's value.

func (AttachTypedLinkOutput) String

func (s AttachTypedLinkOutput) String() string

String returns the string representation

type AttributeKey

A unique identifier for an attribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttributeKey

type AttributeKey struct {

    // The name of the facet that the attribute exists within.
    //
    // FacetName is a required field
    FacetName *string `min:"1" type:"string" required:"true"`

    // The name of the attribute.
    //
    // Name is a required field
    Name *string `min:"1" type:"string" required:"true"`

    // The Amazon Resource Name (ARN) of the schema that contains the facet and
    // attribute.
    //
    // SchemaArn is a required field
    SchemaArn *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AttributeKey) GoString

func (s AttributeKey) GoString() string

GoString returns the string representation

func (*AttributeKey) SetFacetName

func (s *AttributeKey) SetFacetName(v string) *AttributeKey

SetFacetName sets the FacetName field's value.

func (*AttributeKey) SetName

func (s *AttributeKey) SetName(v string) *AttributeKey

SetName sets the Name field's value.

func (*AttributeKey) SetSchemaArn

func (s *AttributeKey) SetSchemaArn(v string) *AttributeKey

SetSchemaArn sets the SchemaArn field's value.

func (AttributeKey) String

func (s AttributeKey) String() string

String returns the string representation

func (*AttributeKey) Validate

func (s *AttributeKey) Validate() error

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

type AttributeKeyAndValue

The combination of an attribute key and an attribute value. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttributeKeyAndValue

type AttributeKeyAndValue struct {

    // The key of the attribute.
    //
    // Key is a required field
    Key *AttributeKey `type:"structure" required:"true"`

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

func (AttributeKeyAndValue) GoString

func (s AttributeKeyAndValue) GoString() string

GoString returns the string representation

func (*AttributeKeyAndValue) SetKey

func (s *AttributeKeyAndValue) SetKey(v *AttributeKey) *AttributeKeyAndValue

SetKey sets the Key field's value.

func (*AttributeKeyAndValue) SetValue

func (s *AttributeKeyAndValue) SetValue(v *TypedAttributeValue) *AttributeKeyAndValue

SetValue sets the Value field's value.

func (AttributeKeyAndValue) String

func (s AttributeKeyAndValue) String() string

String returns the string representation

func (*AttributeKeyAndValue) Validate

func (s *AttributeKeyAndValue) Validate() error

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

type AttributeNameAndValue

Identifies the attribute name and value for a typed link. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttributeNameAndValue

type AttributeNameAndValue struct {

    // The attribute name of the typed link.
    //
    // AttributeName is a required field
    AttributeName *string `min:"1" type:"string" required:"true"`

    // The value for the typed link.
    //
    // Value is a required field
    Value *TypedAttributeValue `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (AttributeNameAndValue) GoString

func (s AttributeNameAndValue) GoString() string

GoString returns the string representation

func (*AttributeNameAndValue) SetAttributeName

func (s *AttributeNameAndValue) SetAttributeName(v string) *AttributeNameAndValue

SetAttributeName sets the AttributeName field's value.

func (*AttributeNameAndValue) SetValue

func (s *AttributeNameAndValue) SetValue(v *TypedAttributeValue) *AttributeNameAndValue

SetValue sets the Value field's value.

func (AttributeNameAndValue) String

func (s AttributeNameAndValue) String() string

String returns the string representation

func (*AttributeNameAndValue) Validate

func (s *AttributeNameAndValue) Validate() error

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

type BatchAddFacetToObject

Represents the output of a batch add facet to object operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchAddFacetToObject

type BatchAddFacetToObject struct {

    // The attributes to set on the object.
    //
    // ObjectAttributeList is a required field
    ObjectAttributeList []*AttributeKeyAndValue `type:"list" required:"true"`

    // A reference to the object being mutated.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`

    // Represents the facet being added to the object.
    //
    // SchemaFacet is a required field
    SchemaFacet *SchemaFacet `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (BatchAddFacetToObject) GoString

func (s BatchAddFacetToObject) GoString() string

GoString returns the string representation

func (*BatchAddFacetToObject) SetObjectAttributeList

func (s *BatchAddFacetToObject) SetObjectAttributeList(v []*AttributeKeyAndValue) *BatchAddFacetToObject

SetObjectAttributeList sets the ObjectAttributeList field's value.

func (*BatchAddFacetToObject) SetObjectReference

func (s *BatchAddFacetToObject) SetObjectReference(v *ObjectReference) *BatchAddFacetToObject

SetObjectReference sets the ObjectReference field's value.

func (*BatchAddFacetToObject) SetSchemaFacet

func (s *BatchAddFacetToObject) SetSchemaFacet(v *SchemaFacet) *BatchAddFacetToObject

SetSchemaFacet sets the SchemaFacet field's value.

func (BatchAddFacetToObject) String

func (s BatchAddFacetToObject) String() string

String returns the string representation

func (*BatchAddFacetToObject) Validate

func (s *BatchAddFacetToObject) Validate() error

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

type BatchAddFacetToObjectResponse

The result of a batch add facet to object operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchAddFacetToObjectResponse

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

func (BatchAddFacetToObjectResponse) GoString

func (s BatchAddFacetToObjectResponse) GoString() string

GoString returns the string representation

func (BatchAddFacetToObjectResponse) String

func (s BatchAddFacetToObjectResponse) String() string

String returns the string representation

type BatchAttachObject

Represents the output of an AttachObject operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchAttachObject

type BatchAttachObject struct {

    // The child object reference that is to be attached to the object.
    //
    // ChildReference is a required field
    ChildReference *ObjectReference `type:"structure" required:"true"`

    // The name of the link.
    //
    // LinkName is a required field
    LinkName *string `min:"1" type:"string" required:"true"`

    // The parent object reference.
    //
    // ParentReference is a required field
    ParentReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (BatchAttachObject) GoString

func (s BatchAttachObject) GoString() string

GoString returns the string representation

func (*BatchAttachObject) SetChildReference

func (s *BatchAttachObject) SetChildReference(v *ObjectReference) *BatchAttachObject

SetChildReference sets the ChildReference field's value.

func (*BatchAttachObject) SetLinkName

func (s *BatchAttachObject) SetLinkName(v string) *BatchAttachObject

SetLinkName sets the LinkName field's value.

func (*BatchAttachObject) SetParentReference

func (s *BatchAttachObject) SetParentReference(v *ObjectReference) *BatchAttachObject

SetParentReference sets the ParentReference field's value.

func (BatchAttachObject) String

func (s BatchAttachObject) String() string

String returns the string representation

func (*BatchAttachObject) Validate

func (s *BatchAttachObject) Validate() error

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

type BatchAttachObjectResponse

Represents the output batch AttachObject response operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchAttachObjectResponse

type BatchAttachObjectResponse struct {

    // The ObjectIdentifier of the object that has been attached.
    AttachedObjectIdentifier *string `locationName:"attachedObjectIdentifier" type:"string"`
    // contains filtered or unexported fields
}

func (BatchAttachObjectResponse) GoString

func (s BatchAttachObjectResponse) GoString() string

GoString returns the string representation

func (*BatchAttachObjectResponse) SetAttachedObjectIdentifier

func (s *BatchAttachObjectResponse) SetAttachedObjectIdentifier(v string) *BatchAttachObjectResponse

SetAttachedObjectIdentifier sets the AttachedObjectIdentifier field's value.

func (BatchAttachObjectResponse) String

func (s BatchAttachObjectResponse) String() string

String returns the string representation

type BatchCreateObject

Represents the output of a CreateObject operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchCreateObject

type BatchCreateObject struct {

    // The batch reference name. See Batches (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#batches)
    // for more information.
    //
    // BatchReferenceName is a required field
    BatchReferenceName *string `type:"string" required:"true"`

    // The name of the link.
    //
    // LinkName is a required field
    LinkName *string `min:"1" type:"string" required:"true"`

    // An attribute map, which contains an attribute ARN as the key and attribute
    // value as the map value.
    //
    // ObjectAttributeList is a required field
    ObjectAttributeList []*AttributeKeyAndValue `type:"list" required:"true"`

    // If specified, the parent reference to which this object will be attached.
    //
    // ParentReference is a required field
    ParentReference *ObjectReference `type:"structure" required:"true"`

    // A list of FacetArns that will be associated with the object. For more information,
    // see arns.
    //
    // SchemaFacet is a required field
    SchemaFacet []*SchemaFacet `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (BatchCreateObject) GoString

func (s BatchCreateObject) GoString() string

GoString returns the string representation

func (*BatchCreateObject) SetBatchReferenceName

func (s *BatchCreateObject) SetBatchReferenceName(v string) *BatchCreateObject

SetBatchReferenceName sets the BatchReferenceName field's value.

func (*BatchCreateObject) SetLinkName

func (s *BatchCreateObject) SetLinkName(v string) *BatchCreateObject

SetLinkName sets the LinkName field's value.

func (*BatchCreateObject) SetObjectAttributeList

func (s *BatchCreateObject) SetObjectAttributeList(v []*AttributeKeyAndValue) *BatchCreateObject

SetObjectAttributeList sets the ObjectAttributeList field's value.

func (*BatchCreateObject) SetParentReference

func (s *BatchCreateObject) SetParentReference(v *ObjectReference) *BatchCreateObject

SetParentReference sets the ParentReference field's value.

func (*BatchCreateObject) SetSchemaFacet

func (s *BatchCreateObject) SetSchemaFacet(v []*SchemaFacet) *BatchCreateObject

SetSchemaFacet sets the SchemaFacet field's value.

func (BatchCreateObject) String

func (s BatchCreateObject) String() string

String returns the string representation

func (*BatchCreateObject) Validate

func (s *BatchCreateObject) Validate() error

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

type BatchCreateObjectResponse

Represents the output of a CreateObject response operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchCreateObjectResponse

type BatchCreateObjectResponse struct {

    // The ID that is associated with the object.
    ObjectIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (BatchCreateObjectResponse) GoString

func (s BatchCreateObjectResponse) GoString() string

GoString returns the string representation

func (*BatchCreateObjectResponse) SetObjectIdentifier

func (s *BatchCreateObjectResponse) SetObjectIdentifier(v string) *BatchCreateObjectResponse

SetObjectIdentifier sets the ObjectIdentifier field's value.

func (BatchCreateObjectResponse) String

func (s BatchCreateObjectResponse) String() string

String returns the string representation

type BatchDeleteObject

Represents the output of a DeleteObject operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchDeleteObject

type BatchDeleteObject struct {

    // The reference that identifies the object.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (BatchDeleteObject) GoString

func (s BatchDeleteObject) GoString() string

GoString returns the string representation

func (*BatchDeleteObject) SetObjectReference

func (s *BatchDeleteObject) SetObjectReference(v *ObjectReference) *BatchDeleteObject

SetObjectReference sets the ObjectReference field's value.

func (BatchDeleteObject) String

func (s BatchDeleteObject) String() string

String returns the string representation

func (*BatchDeleteObject) Validate

func (s *BatchDeleteObject) Validate() error

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

type BatchDeleteObjectResponse

Represents the output of a DeleteObject response operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchDeleteObjectResponse

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

func (BatchDeleteObjectResponse) GoString

func (s BatchDeleteObjectResponse) GoString() string

GoString returns the string representation

func (BatchDeleteObjectResponse) String

func (s BatchDeleteObjectResponse) String() string

String returns the string representation

type BatchDetachObject

Represents the output of a DetachObject operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchDetachObject

type BatchDetachObject struct {

    // The batch reference name. See Batches (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#batches)
    // for more information.
    //
    // BatchReferenceName is a required field
    BatchReferenceName *string `type:"string" required:"true"`

    // The name of the link.
    //
    // LinkName is a required field
    LinkName *string `min:"1" type:"string" required:"true"`

    // Parent reference from which the object with the specified link name is detached.
    //
    // ParentReference is a required field
    ParentReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (BatchDetachObject) GoString

func (s BatchDetachObject) GoString() string

GoString returns the string representation

func (*BatchDetachObject) SetBatchReferenceName

func (s *BatchDetachObject) SetBatchReferenceName(v string) *BatchDetachObject

SetBatchReferenceName sets the BatchReferenceName field's value.

func (*BatchDetachObject) SetLinkName

func (s *BatchDetachObject) SetLinkName(v string) *BatchDetachObject

SetLinkName sets the LinkName field's value.

func (*BatchDetachObject) SetParentReference

func (s *BatchDetachObject) SetParentReference(v *ObjectReference) *BatchDetachObject

SetParentReference sets the ParentReference field's value.

func (BatchDetachObject) String

func (s BatchDetachObject) String() string

String returns the string representation

func (*BatchDetachObject) Validate

func (s *BatchDetachObject) Validate() error

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

type BatchDetachObjectResponse

Represents the output of a DetachObject response operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchDetachObjectResponse

type BatchDetachObjectResponse struct {

    // The ObjectIdentifier of the detached object.
    DetachedObjectIdentifier *string `locationName:"detachedObjectIdentifier" type:"string"`
    // contains filtered or unexported fields
}

func (BatchDetachObjectResponse) GoString

func (s BatchDetachObjectResponse) GoString() string

GoString returns the string representation

func (*BatchDetachObjectResponse) SetDetachedObjectIdentifier

func (s *BatchDetachObjectResponse) SetDetachedObjectIdentifier(v string) *BatchDetachObjectResponse

SetDetachedObjectIdentifier sets the DetachedObjectIdentifier field's value.

func (BatchDetachObjectResponse) String

func (s BatchDetachObjectResponse) String() string

String returns the string representation

type BatchListObjectAttributes

Represents the output of a ListObjectAttributes operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchListObjectAttributes

type BatchListObjectAttributes struct {

    // Used to filter the list of object attributes that are associated with a certain
    // facet.
    FacetFilter *SchemaFacet `type:"structure"`

    // The maximum number of items to be retrieved in a single call. This is an
    // approximate number.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // Reference of the object whose attributes need to be listed.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (BatchListObjectAttributes) GoString

func (s BatchListObjectAttributes) GoString() string

GoString returns the string representation

func (*BatchListObjectAttributes) SetFacetFilter

func (s *BatchListObjectAttributes) SetFacetFilter(v *SchemaFacet) *BatchListObjectAttributes

SetFacetFilter sets the FacetFilter field's value.

func (*BatchListObjectAttributes) SetMaxResults

func (s *BatchListObjectAttributes) SetMaxResults(v int64) *BatchListObjectAttributes

SetMaxResults sets the MaxResults field's value.

func (*BatchListObjectAttributes) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*BatchListObjectAttributes) SetObjectReference

func (s *BatchListObjectAttributes) SetObjectReference(v *ObjectReference) *BatchListObjectAttributes

SetObjectReference sets the ObjectReference field's value.

func (BatchListObjectAttributes) String

func (s BatchListObjectAttributes) String() string

String returns the string representation

func (*BatchListObjectAttributes) Validate

func (s *BatchListObjectAttributes) Validate() error

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

type BatchListObjectAttributesResponse

Represents the output of a ListObjectAttributes response operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchListObjectAttributesResponse

type BatchListObjectAttributesResponse struct {

    // The attributes map that is associated with the object. AttributeArn is the
    // key; attribute value is the value.
    Attributes []*AttributeKeyAndValue `type:"list"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (BatchListObjectAttributesResponse) GoString

func (s BatchListObjectAttributesResponse) GoString() string

GoString returns the string representation

func (*BatchListObjectAttributesResponse) SetAttributes

func (s *BatchListObjectAttributesResponse) SetAttributes(v []*AttributeKeyAndValue) *BatchListObjectAttributesResponse

SetAttributes sets the Attributes field's value.

func (*BatchListObjectAttributesResponse) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (BatchListObjectAttributesResponse) String

func (s BatchListObjectAttributesResponse) String() string

String returns the string representation

type BatchListObjectChildren

Represents the output of a ListObjectChildren operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchListObjectChildren

type BatchListObjectChildren struct {

    // Maximum number of items to be retrieved in a single call. This is an approximate
    // number.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // Reference of the object for which child objects are being listed.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (BatchListObjectChildren) GoString

func (s BatchListObjectChildren) GoString() string

GoString returns the string representation

func (*BatchListObjectChildren) SetMaxResults

func (s *BatchListObjectChildren) SetMaxResults(v int64) *BatchListObjectChildren

SetMaxResults sets the MaxResults field's value.

func (*BatchListObjectChildren) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*BatchListObjectChildren) SetObjectReference

func (s *BatchListObjectChildren) SetObjectReference(v *ObjectReference) *BatchListObjectChildren

SetObjectReference sets the ObjectReference field's value.

func (BatchListObjectChildren) String

func (s BatchListObjectChildren) String() string

String returns the string representation

func (*BatchListObjectChildren) Validate

func (s *BatchListObjectChildren) Validate() error

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

type BatchListObjectChildrenResponse

Represents the output of a ListObjectChildren response operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchListObjectChildrenResponse

type BatchListObjectChildrenResponse struct {

    // The children structure, which is a map with the key as the LinkName and ObjectIdentifier
    // as the value.
    Children map[string]*string `type:"map"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (BatchListObjectChildrenResponse) GoString

func (s BatchListObjectChildrenResponse) GoString() string

GoString returns the string representation

func (*BatchListObjectChildrenResponse) SetChildren

func (s *BatchListObjectChildrenResponse) SetChildren(v map[string]*string) *BatchListObjectChildrenResponse

SetChildren sets the Children field's value.

func (*BatchListObjectChildrenResponse) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (BatchListObjectChildrenResponse) String

func (s BatchListObjectChildrenResponse) String() string

String returns the string representation

type BatchReadException

The batch read exception structure, which contains the exception type and message. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchReadException

type BatchReadException struct {

    // An exception message that is associated with the failure.
    Message *string `type:"string"`

    // A type of exception, such as InvalidArnException.
    Type *string `type:"string" enum:"BatchReadExceptionType"`
    // contains filtered or unexported fields
}

func (BatchReadException) GoString

func (s BatchReadException) GoString() string

GoString returns the string representation

func (*BatchReadException) SetMessage

func (s *BatchReadException) SetMessage(v string) *BatchReadException

SetMessage sets the Message field's value.

func (*BatchReadException) SetType

func (s *BatchReadException) SetType(v string) *BatchReadException

SetType sets the Type field's value.

func (BatchReadException) String

func (s BatchReadException) String() string

String returns the string representation

type BatchReadInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchReadRequest

type BatchReadInput struct {

    // Represents the manner and timing in which the successful write or update
    // of an object is reflected in a subsequent read operation of that same object.
    ConsistencyLevel *string `location:"header" locationName:"x-amz-consistency-level" type:"string" enum:"ConsistencyLevel"`

    // The Amazon Resource Name (ARN) that is associated with the Directory. For
    // more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // A list of operations that are part of the batch.
    //
    // Operations is a required field
    Operations []*BatchReadOperation `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (BatchReadInput) GoString

func (s BatchReadInput) GoString() string

GoString returns the string representation

func (*BatchReadInput) SetConsistencyLevel

func (s *BatchReadInput) SetConsistencyLevel(v string) *BatchReadInput

SetConsistencyLevel sets the ConsistencyLevel field's value.

func (*BatchReadInput) SetDirectoryArn

func (s *BatchReadInput) SetDirectoryArn(v string) *BatchReadInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*BatchReadInput) SetOperations

func (s *BatchReadInput) SetOperations(v []*BatchReadOperation) *BatchReadInput

SetOperations sets the Operations field's value.

func (BatchReadInput) String

func (s BatchReadInput) String() string

String returns the string representation

func (*BatchReadInput) Validate

func (s *BatchReadInput) Validate() error

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

type BatchReadOperation

Represents the output of a BatchRead operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchReadOperation

type BatchReadOperation struct {

    // Lists all attributes that are associated with an object.
    ListObjectAttributes *BatchListObjectAttributes `type:"structure"`

    // Returns a paginated list of child objects that are associated with a given
    // object.
    ListObjectChildren *BatchListObjectChildren `type:"structure"`
    // contains filtered or unexported fields
}

func (BatchReadOperation) GoString

func (s BatchReadOperation) GoString() string

GoString returns the string representation

func (*BatchReadOperation) SetListObjectAttributes

func (s *BatchReadOperation) SetListObjectAttributes(v *BatchListObjectAttributes) *BatchReadOperation

SetListObjectAttributes sets the ListObjectAttributes field's value.

func (*BatchReadOperation) SetListObjectChildren

func (s *BatchReadOperation) SetListObjectChildren(v *BatchListObjectChildren) *BatchReadOperation

SetListObjectChildren sets the ListObjectChildren field's value.

func (BatchReadOperation) String

func (s BatchReadOperation) String() string

String returns the string representation

func (*BatchReadOperation) Validate

func (s *BatchReadOperation) Validate() error

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

type BatchReadOperationResponse

Represents the output of a BatchRead response operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchReadOperationResponse

type BatchReadOperationResponse struct {

    // Identifies which operation in a batch has failed.
    ExceptionResponse *BatchReadException `type:"structure"`

    // Identifies which operation in a batch has succeeded.
    SuccessfulResponse *BatchReadSuccessfulResponse `type:"structure"`
    // contains filtered or unexported fields
}

func (BatchReadOperationResponse) GoString

func (s BatchReadOperationResponse) GoString() string

GoString returns the string representation

func (*BatchReadOperationResponse) SetExceptionResponse

func (s *BatchReadOperationResponse) SetExceptionResponse(v *BatchReadException) *BatchReadOperationResponse

SetExceptionResponse sets the ExceptionResponse field's value.

func (*BatchReadOperationResponse) SetSuccessfulResponse

func (s *BatchReadOperationResponse) SetSuccessfulResponse(v *BatchReadSuccessfulResponse) *BatchReadOperationResponse

SetSuccessfulResponse sets the SuccessfulResponse field's value.

func (BatchReadOperationResponse) String

func (s BatchReadOperationResponse) String() string

String returns the string representation

type BatchReadOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchReadResponse

type BatchReadOutput struct {

    // A list of all the responses for each batch read.
    Responses []*BatchReadOperationResponse `type:"list"`
    // contains filtered or unexported fields
}

func (BatchReadOutput) GoString

func (s BatchReadOutput) GoString() string

GoString returns the string representation

func (*BatchReadOutput) SetResponses

func (s *BatchReadOutput) SetResponses(v []*BatchReadOperationResponse) *BatchReadOutput

SetResponses sets the Responses field's value.

func (BatchReadOutput) String

func (s BatchReadOutput) String() string

String returns the string representation

type BatchReadSuccessfulResponse

Represents the output of a BatchRead success response operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchReadSuccessfulResponse

type BatchReadSuccessfulResponse struct {

    // Lists all attributes that are associated with an object.
    ListObjectAttributes *BatchListObjectAttributesResponse `type:"structure"`

    // Returns a paginated list of child objects that are associated with a given
    // object.
    ListObjectChildren *BatchListObjectChildrenResponse `type:"structure"`
    // contains filtered or unexported fields
}

func (BatchReadSuccessfulResponse) GoString

func (s BatchReadSuccessfulResponse) GoString() string

GoString returns the string representation

func (*BatchReadSuccessfulResponse) SetListObjectAttributes

func (s *BatchReadSuccessfulResponse) SetListObjectAttributes(v *BatchListObjectAttributesResponse) *BatchReadSuccessfulResponse

SetListObjectAttributes sets the ListObjectAttributes field's value.

func (*BatchReadSuccessfulResponse) SetListObjectChildren

func (s *BatchReadSuccessfulResponse) SetListObjectChildren(v *BatchListObjectChildrenResponse) *BatchReadSuccessfulResponse

SetListObjectChildren sets the ListObjectChildren field's value.

func (BatchReadSuccessfulResponse) String

func (s BatchReadSuccessfulResponse) String() string

String returns the string representation

type BatchRemoveFacetFromObject

A batch operation to remove a facet from an object. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchRemoveFacetFromObject

type BatchRemoveFacetFromObject struct {

    // A reference to the object whose facet will be removed.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`

    // The facet to remove from the object.
    //
    // SchemaFacet is a required field
    SchemaFacet *SchemaFacet `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (BatchRemoveFacetFromObject) GoString

func (s BatchRemoveFacetFromObject) GoString() string

GoString returns the string representation

func (*BatchRemoveFacetFromObject) SetObjectReference

func (s *BatchRemoveFacetFromObject) SetObjectReference(v *ObjectReference) *BatchRemoveFacetFromObject

SetObjectReference sets the ObjectReference field's value.

func (*BatchRemoveFacetFromObject) SetSchemaFacet

func (s *BatchRemoveFacetFromObject) SetSchemaFacet(v *SchemaFacet) *BatchRemoveFacetFromObject

SetSchemaFacet sets the SchemaFacet field's value.

func (BatchRemoveFacetFromObject) String

func (s BatchRemoveFacetFromObject) String() string

String returns the string representation

func (*BatchRemoveFacetFromObject) Validate

func (s *BatchRemoveFacetFromObject) Validate() error

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

type BatchRemoveFacetFromObjectResponse

An empty result that represents success. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchRemoveFacetFromObjectResponse

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

func (BatchRemoveFacetFromObjectResponse) GoString

func (s BatchRemoveFacetFromObjectResponse) GoString() string

GoString returns the string representation

func (BatchRemoveFacetFromObjectResponse) String

func (s BatchRemoveFacetFromObjectResponse) String() string

String returns the string representation

type BatchUpdateObjectAttributes

Represents the output of a BatchUpdate operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchUpdateObjectAttributes

type BatchUpdateObjectAttributes struct {

    // Attributes update structure.
    //
    // AttributeUpdates is a required field
    AttributeUpdates []*ObjectAttributeUpdate `type:"list" required:"true"`

    // Reference that identifies the object.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (BatchUpdateObjectAttributes) GoString

func (s BatchUpdateObjectAttributes) GoString() string

GoString returns the string representation

func (*BatchUpdateObjectAttributes) SetAttributeUpdates

func (s *BatchUpdateObjectAttributes) SetAttributeUpdates(v []*ObjectAttributeUpdate) *BatchUpdateObjectAttributes

SetAttributeUpdates sets the AttributeUpdates field's value.

func (*BatchUpdateObjectAttributes) SetObjectReference

func (s *BatchUpdateObjectAttributes) SetObjectReference(v *ObjectReference) *BatchUpdateObjectAttributes

SetObjectReference sets the ObjectReference field's value.

func (BatchUpdateObjectAttributes) String

func (s BatchUpdateObjectAttributes) String() string

String returns the string representation

func (*BatchUpdateObjectAttributes) Validate

func (s *BatchUpdateObjectAttributes) Validate() error

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

type BatchUpdateObjectAttributesResponse

Represents the output of a BatchUpdate response operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchUpdateObjectAttributesResponse

type BatchUpdateObjectAttributesResponse struct {

    // ID that is associated with the object.
    ObjectIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (BatchUpdateObjectAttributesResponse) GoString

func (s BatchUpdateObjectAttributesResponse) GoString() string

GoString returns the string representation

func (*BatchUpdateObjectAttributesResponse) SetObjectIdentifier

func (s *BatchUpdateObjectAttributesResponse) SetObjectIdentifier(v string) *BatchUpdateObjectAttributesResponse

SetObjectIdentifier sets the ObjectIdentifier field's value.

func (BatchUpdateObjectAttributesResponse) String

func (s BatchUpdateObjectAttributesResponse) String() string

String returns the string representation

type BatchWriteInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchWriteRequest

type BatchWriteInput struct {

    // The Amazon Resource Name (ARN) that is associated with the Directory. For
    // more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // A list of operations that are part of the batch.
    //
    // Operations is a required field
    Operations []*BatchWriteOperation `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (BatchWriteInput) GoString

func (s BatchWriteInput) GoString() string

GoString returns the string representation

func (*BatchWriteInput) SetDirectoryArn

func (s *BatchWriteInput) SetDirectoryArn(v string) *BatchWriteInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*BatchWriteInput) SetOperations

func (s *BatchWriteInput) SetOperations(v []*BatchWriteOperation) *BatchWriteInput

SetOperations sets the Operations field's value.

func (BatchWriteInput) String

func (s BatchWriteInput) String() string

String returns the string representation

func (*BatchWriteInput) Validate

func (s *BatchWriteInput) Validate() error

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

type BatchWriteOperation

Represents the output of a BatchWrite operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchWriteOperation

type BatchWriteOperation struct {

    // A batch operation that adds a facet to an object.
    AddFacetToObject *BatchAddFacetToObject `type:"structure"`

    // Attaches an object to a Directory.
    AttachObject *BatchAttachObject `type:"structure"`

    // Creates an object.
    CreateObject *BatchCreateObject `type:"structure"`

    // Deletes an object in a Directory.
    DeleteObject *BatchDeleteObject `type:"structure"`

    // Detaches an object from a Directory.
    DetachObject *BatchDetachObject `type:"structure"`

    // A batch operation that removes a facet from an object.
    RemoveFacetFromObject *BatchRemoveFacetFromObject `type:"structure"`

    // Updates a given object's attributes.
    UpdateObjectAttributes *BatchUpdateObjectAttributes `type:"structure"`
    // contains filtered or unexported fields
}

func (BatchWriteOperation) GoString

func (s BatchWriteOperation) GoString() string

GoString returns the string representation

func (*BatchWriteOperation) SetAddFacetToObject

func (s *BatchWriteOperation) SetAddFacetToObject(v *BatchAddFacetToObject) *BatchWriteOperation

SetAddFacetToObject sets the AddFacetToObject field's value.

func (*BatchWriteOperation) SetAttachObject

func (s *BatchWriteOperation) SetAttachObject(v *BatchAttachObject) *BatchWriteOperation

SetAttachObject sets the AttachObject field's value.

func (*BatchWriteOperation) SetCreateObject

func (s *BatchWriteOperation) SetCreateObject(v *BatchCreateObject) *BatchWriteOperation

SetCreateObject sets the CreateObject field's value.

func (*BatchWriteOperation) SetDeleteObject

func (s *BatchWriteOperation) SetDeleteObject(v *BatchDeleteObject) *BatchWriteOperation

SetDeleteObject sets the DeleteObject field's value.

func (*BatchWriteOperation) SetDetachObject

func (s *BatchWriteOperation) SetDetachObject(v *BatchDetachObject) *BatchWriteOperation

SetDetachObject sets the DetachObject field's value.

func (*BatchWriteOperation) SetRemoveFacetFromObject

func (s *BatchWriteOperation) SetRemoveFacetFromObject(v *BatchRemoveFacetFromObject) *BatchWriteOperation

SetRemoveFacetFromObject sets the RemoveFacetFromObject field's value.

func (*BatchWriteOperation) SetUpdateObjectAttributes

func (s *BatchWriteOperation) SetUpdateObjectAttributes(v *BatchUpdateObjectAttributes) *BatchWriteOperation

SetUpdateObjectAttributes sets the UpdateObjectAttributes field's value.

func (BatchWriteOperation) String

func (s BatchWriteOperation) String() string

String returns the string representation

func (*BatchWriteOperation) Validate

func (s *BatchWriteOperation) Validate() error

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

type BatchWriteOperationResponse

Represents the output of a BatchWrite response operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchWriteOperationResponse

type BatchWriteOperationResponse struct {

    // The result of an add facet to object batch operation.
    AddFacetToObject *BatchAddFacetToObjectResponse `type:"structure"`

    // Attaches an object to a Directory.
    AttachObject *BatchAttachObjectResponse `type:"structure"`

    // Creates an object in a Directory.
    CreateObject *BatchCreateObjectResponse `type:"structure"`

    // Deletes an object in a Directory.
    DeleteObject *BatchDeleteObjectResponse `type:"structure"`

    // Detaches an object from a Directory.
    DetachObject *BatchDetachObjectResponse `type:"structure"`

    // The result of a batch remove facet from object operation.
    RemoveFacetFromObject *BatchRemoveFacetFromObjectResponse `type:"structure"`

    // Updates a given object’s attributes.
    UpdateObjectAttributes *BatchUpdateObjectAttributesResponse `type:"structure"`
    // contains filtered or unexported fields
}

func (BatchWriteOperationResponse) GoString

func (s BatchWriteOperationResponse) GoString() string

GoString returns the string representation

func (*BatchWriteOperationResponse) SetAddFacetToObject

func (s *BatchWriteOperationResponse) SetAddFacetToObject(v *BatchAddFacetToObjectResponse) *BatchWriteOperationResponse

SetAddFacetToObject sets the AddFacetToObject field's value.

func (*BatchWriteOperationResponse) SetAttachObject

func (s *BatchWriteOperationResponse) SetAttachObject(v *BatchAttachObjectResponse) *BatchWriteOperationResponse

SetAttachObject sets the AttachObject field's value.

func (*BatchWriteOperationResponse) SetCreateObject

func (s *BatchWriteOperationResponse) SetCreateObject(v *BatchCreateObjectResponse) *BatchWriteOperationResponse

SetCreateObject sets the CreateObject field's value.

func (*BatchWriteOperationResponse) SetDeleteObject

func (s *BatchWriteOperationResponse) SetDeleteObject(v *BatchDeleteObjectResponse) *BatchWriteOperationResponse

SetDeleteObject sets the DeleteObject field's value.

func (*BatchWriteOperationResponse) SetDetachObject

func (s *BatchWriteOperationResponse) SetDetachObject(v *BatchDetachObjectResponse) *BatchWriteOperationResponse

SetDetachObject sets the DetachObject field's value.

func (*BatchWriteOperationResponse) SetRemoveFacetFromObject

func (s *BatchWriteOperationResponse) SetRemoveFacetFromObject(v *BatchRemoveFacetFromObjectResponse) *BatchWriteOperationResponse

SetRemoveFacetFromObject sets the RemoveFacetFromObject field's value.

func (*BatchWriteOperationResponse) SetUpdateObjectAttributes

func (s *BatchWriteOperationResponse) SetUpdateObjectAttributes(v *BatchUpdateObjectAttributesResponse) *BatchWriteOperationResponse

SetUpdateObjectAttributes sets the UpdateObjectAttributes field's value.

func (BatchWriteOperationResponse) String

func (s BatchWriteOperationResponse) String() string

String returns the string representation

type BatchWriteOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchWriteResponse

type BatchWriteOutput struct {

    // A list of all the responses for each batch write.
    Responses []*BatchWriteOperationResponse `type:"list"`
    // contains filtered or unexported fields
}

func (BatchWriteOutput) GoString

func (s BatchWriteOutput) GoString() string

GoString returns the string representation

func (*BatchWriteOutput) SetResponses

func (s *BatchWriteOutput) SetResponses(v []*BatchWriteOperationResponse) *BatchWriteOutput

SetResponses sets the Responses field's value.

func (BatchWriteOutput) String

func (s BatchWriteOutput) String() string

String returns the string representation

type CloudDirectory

CloudDirectory provides the API operation methods for making requests to Amazon CloudDirectory. See this package's package overview docs for details on the service.

CloudDirectory methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

type CloudDirectory struct {
    *client.Client
}

func New

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

New creates a new instance of the CloudDirectory 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 CloudDirectory client from just a session.
svc := clouddirectory.New(mySession)

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

func (*CloudDirectory) AddFacetToObject

func (c *CloudDirectory) AddFacetToObject(input *AddFacetToObjectInput) (*AddFacetToObjectOutput, error)

AddFacetToObject API operation for Amazon CloudDirectory.

Adds a new Facet to an object.

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 CloudDirectory's API operation AddFacetToObject for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetValidationException "FacetValidationException"
The Facet that you provided was not well formed or could not be validated
with the schema.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AddFacetToObject

func (*CloudDirectory) AddFacetToObjectRequest

func (c *CloudDirectory) AddFacetToObjectRequest(input *AddFacetToObjectInput) (req *request.Request, output *AddFacetToObjectOutput)

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

See AddFacetToObject 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 AddFacetToObject 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 AddFacetToObjectRequest method.
req, resp := client.AddFacetToObjectRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AddFacetToObject

func (*CloudDirectory) AddFacetToObjectWithContext

func (c *CloudDirectory) AddFacetToObjectWithContext(ctx aws.Context, input *AddFacetToObjectInput, opts ...request.Option) (*AddFacetToObjectOutput, error)

AddFacetToObjectWithContext is the same as AddFacetToObject with the addition of the ability to pass a context and additional request options.

See AddFacetToObject for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ApplySchema

func (c *CloudDirectory) ApplySchema(input *ApplySchemaInput) (*ApplySchemaOutput, error)

ApplySchema API operation for Amazon CloudDirectory.

Copies the input published schema into the Directory with the same name and version as that of the published schema .

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 CloudDirectory's API operation ApplySchema for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidAttachmentException "InvalidAttachmentException"
Indicates that an attempt to attach an object with the same link name or
to apply a schema with the same name has occurred. Rename the link or the
schema and then try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ApplySchema

func (*CloudDirectory) ApplySchemaRequest

func (c *CloudDirectory) ApplySchemaRequest(input *ApplySchemaInput) (req *request.Request, output *ApplySchemaOutput)

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

See ApplySchema 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 ApplySchema 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 ApplySchemaRequest method.
req, resp := client.ApplySchemaRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ApplySchema

func (*CloudDirectory) ApplySchemaWithContext

func (c *CloudDirectory) ApplySchemaWithContext(ctx aws.Context, input *ApplySchemaInput, opts ...request.Option) (*ApplySchemaOutput, error)

ApplySchemaWithContext is the same as ApplySchema with the addition of the ability to pass a context and additional request options.

See ApplySchema for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) AttachObject

func (c *CloudDirectory) AttachObject(input *AttachObjectInput) (*AttachObjectOutput, error)

AttachObject API operation for Amazon CloudDirectory.

Attaches an existing object to another object. An object can be accessed in two ways:

Using the path

Using ObjectIdentifier

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 CloudDirectory's API operation AttachObject for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeLinkNameAlreadyInUseException "LinkNameAlreadyInUseException"
Indicates that a link could not be created due to a naming conflict. Choose
a different name and then try again.

* ErrCodeInvalidAttachmentException "InvalidAttachmentException"
Indicates that an attempt to attach an object with the same link name or
to apply a schema with the same name has occurred. Rename the link or the
schema and then try again.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeFacetValidationException "FacetValidationException"
The Facet that you provided was not well formed or could not be validated
with the schema.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachObject

func (*CloudDirectory) AttachObjectRequest

func (c *CloudDirectory) AttachObjectRequest(input *AttachObjectInput) (req *request.Request, output *AttachObjectOutput)

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

See AttachObject 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 AttachObject 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 AttachObjectRequest method.
req, resp := client.AttachObjectRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachObject

func (*CloudDirectory) AttachObjectWithContext

func (c *CloudDirectory) AttachObjectWithContext(ctx aws.Context, input *AttachObjectInput, opts ...request.Option) (*AttachObjectOutput, error)

AttachObjectWithContext is the same as AttachObject with the addition of the ability to pass a context and additional request options.

See AttachObject for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) AttachPolicy

func (c *CloudDirectory) AttachPolicy(input *AttachPolicyInput) (*AttachPolicyOutput, error)

AttachPolicy API operation for Amazon CloudDirectory.

Attaches a policy object to a regular object. An object can have a limited number of attached policies.

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 CloudDirectory's API operation AttachPolicy for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeNotPolicyException "NotPolicyException"
Indicates that the requested operation can only operate on policy objects.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachPolicy

func (*CloudDirectory) AttachPolicyRequest

func (c *CloudDirectory) AttachPolicyRequest(input *AttachPolicyInput) (req *request.Request, output *AttachPolicyOutput)

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

See AttachPolicy 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 AttachPolicy 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 AttachPolicyRequest method.
req, resp := client.AttachPolicyRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachPolicy

func (*CloudDirectory) AttachPolicyWithContext

func (c *CloudDirectory) AttachPolicyWithContext(ctx aws.Context, input *AttachPolicyInput, opts ...request.Option) (*AttachPolicyOutput, error)

AttachPolicyWithContext is the same as AttachPolicy with the addition of the ability to pass a context and additional request options.

See AttachPolicy for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) AttachToIndex

func (c *CloudDirectory) AttachToIndex(input *AttachToIndexInput) (*AttachToIndexOutput, error)

AttachToIndex API operation for Amazon CloudDirectory.

Attaches the specified object to the specified index.

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 CloudDirectory's API operation AttachToIndex for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeLinkNameAlreadyInUseException "LinkNameAlreadyInUseException"
Indicates that a link could not be created due to a naming conflict. Choose
a different name and then try again.

* ErrCodeIndexedAttributeMissingException "IndexedAttributeMissingException"
An object has been attempted to be attached to an object that does not have
the appropriate attribute value.

* ErrCodeNotIndexException "NotIndexException"
Indicates that the requested operation can only operate on index objects.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachToIndex

func (*CloudDirectory) AttachToIndexRequest

func (c *CloudDirectory) AttachToIndexRequest(input *AttachToIndexInput) (req *request.Request, output *AttachToIndexOutput)

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

See AttachToIndex 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 AttachToIndex 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 AttachToIndexRequest method.
req, resp := client.AttachToIndexRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachToIndex

func (*CloudDirectory) AttachToIndexWithContext

func (c *CloudDirectory) AttachToIndexWithContext(ctx aws.Context, input *AttachToIndexInput, opts ...request.Option) (*AttachToIndexOutput, error)

AttachToIndexWithContext is the same as AttachToIndex with the addition of the ability to pass a context and additional request options.

See AttachToIndex for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (c *CloudDirectory) AttachTypedLink(input *AttachTypedLinkInput) (*AttachTypedLinkOutput, error)

AttachTypedLink API operation for Amazon CloudDirectory.

Attaches a typed link to a specified source and target object. For more information, see Typed link (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink).

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 CloudDirectory's API operation AttachTypedLink for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidAttachmentException "InvalidAttachmentException"
Indicates that an attempt to attach an object with the same link name or
to apply a schema with the same name has occurred. Rename the link or the
schema and then try again.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeFacetValidationException "FacetValidationException"
The Facet that you provided was not well formed or could not be validated
with the schema.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachTypedLink

func (*CloudDirectory) AttachTypedLinkRequest

func (c *CloudDirectory) AttachTypedLinkRequest(input *AttachTypedLinkInput) (req *request.Request, output *AttachTypedLinkOutput)

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

See AttachTypedLink 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 AttachTypedLink 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 AttachTypedLinkRequest method.
req, resp := client.AttachTypedLinkRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/AttachTypedLink

func (*CloudDirectory) AttachTypedLinkWithContext

func (c *CloudDirectory) AttachTypedLinkWithContext(ctx aws.Context, input *AttachTypedLinkInput, opts ...request.Option) (*AttachTypedLinkOutput, error)

AttachTypedLinkWithContext is the same as AttachTypedLink with the addition of the ability to pass a context and additional request options.

See AttachTypedLink for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) BatchRead

func (c *CloudDirectory) BatchRead(input *BatchReadInput) (*BatchReadOutput, error)

BatchRead API operation for Amazon CloudDirectory.

Performs all the read operations in a batch.

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 CloudDirectory's API operation BatchRead for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchRead

func (*CloudDirectory) BatchReadRequest

func (c *CloudDirectory) BatchReadRequest(input *BatchReadInput) (req *request.Request, output *BatchReadOutput)

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

See BatchRead 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 BatchRead 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 BatchReadRequest method.
req, resp := client.BatchReadRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchRead

func (*CloudDirectory) BatchReadWithContext

func (c *CloudDirectory) BatchReadWithContext(ctx aws.Context, input *BatchReadInput, opts ...request.Option) (*BatchReadOutput, error)

BatchReadWithContext is the same as BatchRead with the addition of the ability to pass a context and additional request options.

See BatchRead for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) BatchWrite

func (c *CloudDirectory) BatchWrite(input *BatchWriteInput) (*BatchWriteOutput, error)

BatchWrite API operation for Amazon CloudDirectory.

Performs all the write operations in a batch. Either all the operations succeed or none. Batch writes supports only object-related operations.

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 CloudDirectory's API operation BatchWrite for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeBatchWriteException "BatchWriteException"
A BatchWrite exception has occurred.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchWrite

func (*CloudDirectory) BatchWriteRequest

func (c *CloudDirectory) BatchWriteRequest(input *BatchWriteInput) (req *request.Request, output *BatchWriteOutput)

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

See BatchWrite 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 BatchWrite 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 BatchWriteRequest method.
req, resp := client.BatchWriteRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/BatchWrite

func (*CloudDirectory) BatchWriteWithContext

func (c *CloudDirectory) BatchWriteWithContext(ctx aws.Context, input *BatchWriteInput, opts ...request.Option) (*BatchWriteOutput, error)

BatchWriteWithContext is the same as BatchWrite with the addition of the ability to pass a context and additional request options.

See BatchWrite for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) CreateDirectory

func (c *CloudDirectory) CreateDirectory(input *CreateDirectoryInput) (*CreateDirectoryOutput, error)

CreateDirectory API operation for Amazon CloudDirectory.

Creates a Directory by copying the published schema into the directory. A directory cannot be created without a schema.

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 CloudDirectory's API operation CreateDirectory for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryAlreadyExistsException "DirectoryAlreadyExistsException"
Indicates that a Directory could not be created due to a naming conflict.
Choose a different name and try again.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateDirectory

func (*CloudDirectory) CreateDirectoryRequest

func (c *CloudDirectory) CreateDirectoryRequest(input *CreateDirectoryInput) (req *request.Request, output *CreateDirectoryOutput)

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

See CreateDirectory 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 CreateDirectory 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 CreateDirectoryRequest method.
req, resp := client.CreateDirectoryRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateDirectory

func (*CloudDirectory) CreateDirectoryWithContext

func (c *CloudDirectory) CreateDirectoryWithContext(ctx aws.Context, input *CreateDirectoryInput, opts ...request.Option) (*CreateDirectoryOutput, error)

CreateDirectoryWithContext is the same as CreateDirectory with the addition of the ability to pass a context and additional request options.

See CreateDirectory for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) CreateFacet

func (c *CloudDirectory) CreateFacet(input *CreateFacetInput) (*CreateFacetOutput, error)

CreateFacet API operation for Amazon CloudDirectory.

Creates a new Facet in a schema. Facet creation is allowed only in development or applied schemas.

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 CloudDirectory's API operation CreateFacet for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetAlreadyExistsException "FacetAlreadyExistsException"
A facet with the same name already exists.

* ErrCodeInvalidRuleException "InvalidRuleException"
Occurs when any of the rule parameter keys or values are invalid.

* ErrCodeFacetValidationException "FacetValidationException"
The Facet that you provided was not well formed or could not be validated
with the schema.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateFacet

func (*CloudDirectory) CreateFacetRequest

func (c *CloudDirectory) CreateFacetRequest(input *CreateFacetInput) (req *request.Request, output *CreateFacetOutput)

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

See CreateFacet 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 CreateFacet 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 CreateFacetRequest method.
req, resp := client.CreateFacetRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateFacet

func (*CloudDirectory) CreateFacetWithContext

func (c *CloudDirectory) CreateFacetWithContext(ctx aws.Context, input *CreateFacetInput, opts ...request.Option) (*CreateFacetOutput, error)

CreateFacetWithContext is the same as CreateFacet with the addition of the ability to pass a context and additional request options.

See CreateFacet for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) CreateIndex

func (c *CloudDirectory) CreateIndex(input *CreateIndexInput) (*CreateIndexOutput, error)

CreateIndex API operation for Amazon CloudDirectory.

Creates an index object. See Indexing (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_indexing.html) for more information.

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 CloudDirectory's API operation CreateIndex for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetValidationException "FacetValidationException"
The Facet that you provided was not well formed or could not be validated
with the schema.

* ErrCodeLinkNameAlreadyInUseException "LinkNameAlreadyInUseException"
Indicates that a link could not be created due to a naming conflict. Choose
a different name and then try again.

* ErrCodeUnsupportedIndexTypeException "UnsupportedIndexTypeException"
Indicates that the requested index type is not supported.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateIndex

func (*CloudDirectory) CreateIndexRequest

func (c *CloudDirectory) CreateIndexRequest(input *CreateIndexInput) (req *request.Request, output *CreateIndexOutput)

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

See CreateIndex 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 CreateIndex 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 CreateIndexRequest method.
req, resp := client.CreateIndexRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateIndex

func (*CloudDirectory) CreateIndexWithContext

func (c *CloudDirectory) CreateIndexWithContext(ctx aws.Context, input *CreateIndexInput, opts ...request.Option) (*CreateIndexOutput, error)

CreateIndexWithContext is the same as CreateIndex with the addition of the ability to pass a context and additional request options.

See CreateIndex for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) CreateObject

func (c *CloudDirectory) CreateObject(input *CreateObjectInput) (*CreateObjectOutput, error)

CreateObject API operation for Amazon CloudDirectory.

Creates an object in a Directory. Additionally attaches the object to a parent, if a parent reference and LinkName is specified. An object is simply a collection of Facet attributes. You can also use this API call to create a policy object, if the facet from which you create the object is a policy facet.

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 CloudDirectory's API operation CreateObject for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetValidationException "FacetValidationException"
The Facet that you provided was not well formed or could not be validated
with the schema.

* ErrCodeLinkNameAlreadyInUseException "LinkNameAlreadyInUseException"
Indicates that a link could not be created due to a naming conflict. Choose
a different name and then try again.

* ErrCodeUnsupportedIndexTypeException "UnsupportedIndexTypeException"
Indicates that the requested index type is not supported.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateObject

func (*CloudDirectory) CreateObjectRequest

func (c *CloudDirectory) CreateObjectRequest(input *CreateObjectInput) (req *request.Request, output *CreateObjectOutput)

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

See CreateObject 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 CreateObject 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 CreateObjectRequest method.
req, resp := client.CreateObjectRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateObject

func (*CloudDirectory) CreateObjectWithContext

func (c *CloudDirectory) CreateObjectWithContext(ctx aws.Context, input *CreateObjectInput, opts ...request.Option) (*CreateObjectOutput, error)

CreateObjectWithContext is the same as CreateObject with the addition of the ability to pass a context and additional request options.

See CreateObject for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) CreateSchema

func (c *CloudDirectory) CreateSchema(input *CreateSchemaInput) (*CreateSchemaOutput, error)

CreateSchema API operation for Amazon CloudDirectory.

Creates a new schema in a development state. A schema can exist in three phases:

* Development: This is a mutable phase of the schema. All new schemas
are in the development phase. Once the schema is finalized, it can be
published.

* Published: Published schemas are immutable and have a version associated
with them.

* Applied: Applied schemas are mutable in a way that allows you to add
new schema facets. You can also add new, nonrequired attributes to existing
schema facets. You can apply only published schemas to directories.

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 CloudDirectory's API operation CreateSchema for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeSchemaAlreadyExistsException "SchemaAlreadyExistsException"
Indicates that a schema could not be created due to a naming conflict. Please
select a different name and then try again.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateSchema

func (*CloudDirectory) CreateSchemaRequest

func (c *CloudDirectory) CreateSchemaRequest(input *CreateSchemaInput) (req *request.Request, output *CreateSchemaOutput)

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

See CreateSchema 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 CreateSchema 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 CreateSchemaRequest method.
req, resp := client.CreateSchemaRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateSchema

func (*CloudDirectory) CreateSchemaWithContext

func (c *CloudDirectory) CreateSchemaWithContext(ctx aws.Context, input *CreateSchemaInput, opts ...request.Option) (*CreateSchemaOutput, error)

CreateSchemaWithContext is the same as CreateSchema with the addition of the ability to pass a context and additional request options.

See CreateSchema for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) CreateTypedLinkFacet

func (c *CloudDirectory) CreateTypedLinkFacet(input *CreateTypedLinkFacetInput) (*CreateTypedLinkFacetOutput, error)

CreateTypedLinkFacet API operation for Amazon CloudDirectory.

Creates a TypedLinkFacet. For more information, see Typed link (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink).

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 CloudDirectory's API operation CreateTypedLinkFacet for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetAlreadyExistsException "FacetAlreadyExistsException"
A facet with the same name already exists.

* ErrCodeInvalidRuleException "InvalidRuleException"
Occurs when any of the rule parameter keys or values are invalid.

* ErrCodeFacetValidationException "FacetValidationException"
The Facet that you provided was not well formed or could not be validated
with the schema.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateTypedLinkFacet

func (*CloudDirectory) CreateTypedLinkFacetRequest

func (c *CloudDirectory) CreateTypedLinkFacetRequest(input *CreateTypedLinkFacetInput) (req *request.Request, output *CreateTypedLinkFacetOutput)

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

See CreateTypedLinkFacet 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 CreateTypedLinkFacet 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 CreateTypedLinkFacetRequest method.
req, resp := client.CreateTypedLinkFacetRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateTypedLinkFacet

func (*CloudDirectory) CreateTypedLinkFacetWithContext

func (c *CloudDirectory) CreateTypedLinkFacetWithContext(ctx aws.Context, input *CreateTypedLinkFacetInput, opts ...request.Option) (*CreateTypedLinkFacetOutput, error)

CreateTypedLinkFacetWithContext is the same as CreateTypedLinkFacet with the addition of the ability to pass a context and additional request options.

See CreateTypedLinkFacet for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) DeleteDirectory

func (c *CloudDirectory) DeleteDirectory(input *DeleteDirectoryInput) (*DeleteDirectoryOutput, error)

DeleteDirectory API operation for Amazon CloudDirectory.

Deletes a directory. Only disabled directories can be deleted. A deleted directory cannot be undone. Exercise extreme caution when deleting directories.

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 CloudDirectory's API operation DeleteDirectory for usage and error information.

Returned Error Codes:

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeDirectoryNotDisabledException "DirectoryNotDisabledException"
An operation can only operate on a disabled directory.

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryDeletedException "DirectoryDeletedException"
A directory that has been deleted and to which access has been attempted.
Note: The requested resource will eventually cease to exist.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteDirectory

func (*CloudDirectory) DeleteDirectoryRequest

func (c *CloudDirectory) DeleteDirectoryRequest(input *DeleteDirectoryInput) (req *request.Request, output *DeleteDirectoryOutput)

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

See DeleteDirectory 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 DeleteDirectory 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 DeleteDirectoryRequest method.
req, resp := client.DeleteDirectoryRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteDirectory

func (*CloudDirectory) DeleteDirectoryWithContext

func (c *CloudDirectory) DeleteDirectoryWithContext(ctx aws.Context, input *DeleteDirectoryInput, opts ...request.Option) (*DeleteDirectoryOutput, error)

DeleteDirectoryWithContext is the same as DeleteDirectory with the addition of the ability to pass a context and additional request options.

See DeleteDirectory for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) DeleteFacet

func (c *CloudDirectory) DeleteFacet(input *DeleteFacetInput) (*DeleteFacetOutput, error)

DeleteFacet API operation for Amazon CloudDirectory.

Deletes a given Facet. All attributes and Rules that are associated with the facet will be deleted. Only development schema facets are allowed deletion.

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 CloudDirectory's API operation DeleteFacet for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetNotFoundException "FacetNotFoundException"
The specified Facet could not be found.

* ErrCodeFacetInUseException "FacetInUseException"
Occurs when deleting a facet that contains an attribute that is a target
to an attribute reference in a different facet.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteFacet

func (*CloudDirectory) DeleteFacetRequest

func (c *CloudDirectory) DeleteFacetRequest(input *DeleteFacetInput) (req *request.Request, output *DeleteFacetOutput)

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

See DeleteFacet 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 DeleteFacet 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 DeleteFacetRequest method.
req, resp := client.DeleteFacetRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteFacet

func (*CloudDirectory) DeleteFacetWithContext

func (c *CloudDirectory) DeleteFacetWithContext(ctx aws.Context, input *DeleteFacetInput, opts ...request.Option) (*DeleteFacetOutput, error)

DeleteFacetWithContext is the same as DeleteFacet with the addition of the ability to pass a context and additional request options.

See DeleteFacet for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) DeleteObject

func (c *CloudDirectory) DeleteObject(input *DeleteObjectInput) (*DeleteObjectOutput, error)

DeleteObject API operation for Amazon CloudDirectory.

Deletes an object and its associated attributes. Only objects with no children and no parents can be deleted.

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 CloudDirectory's API operation DeleteObject for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeObjectNotDetachedException "ObjectNotDetachedException"
Indicates that the requested operation cannot be completed because the object
has not been detached from the tree.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteObject

func (*CloudDirectory) DeleteObjectRequest

func (c *CloudDirectory) DeleteObjectRequest(input *DeleteObjectInput) (req *request.Request, output *DeleteObjectOutput)

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

See DeleteObject 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 DeleteObject 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 DeleteObjectRequest method.
req, resp := client.DeleteObjectRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteObject

func (*CloudDirectory) DeleteObjectWithContext

func (c *CloudDirectory) DeleteObjectWithContext(ctx aws.Context, input *DeleteObjectInput, opts ...request.Option) (*DeleteObjectOutput, error)

DeleteObjectWithContext is the same as DeleteObject with the addition of the ability to pass a context and additional request options.

See DeleteObject for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) DeleteSchema

func (c *CloudDirectory) DeleteSchema(input *DeleteSchemaInput) (*DeleteSchemaOutput, error)

DeleteSchema API operation for Amazon CloudDirectory.

Deletes a given schema. Schemas in a development and published state can only be deleted.

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 CloudDirectory's API operation DeleteSchema for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeStillContainsLinksException "StillContainsLinksException"
The object could not be deleted because links still exist. Remove the links
and then try the operation again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteSchema

func (*CloudDirectory) DeleteSchemaRequest

func (c *CloudDirectory) DeleteSchemaRequest(input *DeleteSchemaInput) (req *request.Request, output *DeleteSchemaOutput)

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

See DeleteSchema 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 DeleteSchema 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 DeleteSchemaRequest method.
req, resp := client.DeleteSchemaRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteSchema

func (*CloudDirectory) DeleteSchemaWithContext

func (c *CloudDirectory) DeleteSchemaWithContext(ctx aws.Context, input *DeleteSchemaInput, opts ...request.Option) (*DeleteSchemaOutput, error)

DeleteSchemaWithContext is the same as DeleteSchema with the addition of the ability to pass a context and additional request options.

See DeleteSchema for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) DeleteTypedLinkFacet

func (c *CloudDirectory) DeleteTypedLinkFacet(input *DeleteTypedLinkFacetInput) (*DeleteTypedLinkFacetOutput, error)

DeleteTypedLinkFacet API operation for Amazon CloudDirectory.

Deletes a TypedLinkFacet. For more information, see Typed link (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink).

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 CloudDirectory's API operation DeleteTypedLinkFacet for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetNotFoundException "FacetNotFoundException"
The specified Facet could not be found.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteTypedLinkFacet

func (*CloudDirectory) DeleteTypedLinkFacetRequest

func (c *CloudDirectory) DeleteTypedLinkFacetRequest(input *DeleteTypedLinkFacetInput) (req *request.Request, output *DeleteTypedLinkFacetOutput)

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

See DeleteTypedLinkFacet 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 DeleteTypedLinkFacet 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 DeleteTypedLinkFacetRequest method.
req, resp := client.DeleteTypedLinkFacetRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteTypedLinkFacet

func (*CloudDirectory) DeleteTypedLinkFacetWithContext

func (c *CloudDirectory) DeleteTypedLinkFacetWithContext(ctx aws.Context, input *DeleteTypedLinkFacetInput, opts ...request.Option) (*DeleteTypedLinkFacetOutput, error)

DeleteTypedLinkFacetWithContext is the same as DeleteTypedLinkFacet with the addition of the ability to pass a context and additional request options.

See DeleteTypedLinkFacet for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) DetachFromIndex

func (c *CloudDirectory) DetachFromIndex(input *DetachFromIndexInput) (*DetachFromIndexOutput, error)

DetachFromIndex API operation for Amazon CloudDirectory.

Detaches the specified object from the specified index.

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 CloudDirectory's API operation DetachFromIndex for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeObjectAlreadyDetachedException "ObjectAlreadyDetachedException"
Indicates that the object is not attached to the index.

* ErrCodeNotIndexException "NotIndexException"
Indicates that the requested operation can only operate on index objects.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachFromIndex

func (*CloudDirectory) DetachFromIndexRequest

func (c *CloudDirectory) DetachFromIndexRequest(input *DetachFromIndexInput) (req *request.Request, output *DetachFromIndexOutput)

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

See DetachFromIndex 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 DetachFromIndex 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 DetachFromIndexRequest method.
req, resp := client.DetachFromIndexRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachFromIndex

func (*CloudDirectory) DetachFromIndexWithContext

func (c *CloudDirectory) DetachFromIndexWithContext(ctx aws.Context, input *DetachFromIndexInput, opts ...request.Option) (*DetachFromIndexOutput, error)

DetachFromIndexWithContext is the same as DetachFromIndex with the addition of the ability to pass a context and additional request options.

See DetachFromIndex for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) DetachObject

func (c *CloudDirectory) DetachObject(input *DetachObjectInput) (*DetachObjectOutput, error)

DetachObject API operation for Amazon CloudDirectory.

Detaches a given object from the parent object. The object that is to be detached from the parent is specified by the link name.

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 CloudDirectory's API operation DetachObject for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachObject

func (*CloudDirectory) DetachObjectRequest

func (c *CloudDirectory) DetachObjectRequest(input *DetachObjectInput) (req *request.Request, output *DetachObjectOutput)

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

See DetachObject 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 DetachObject 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 DetachObjectRequest method.
req, resp := client.DetachObjectRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachObject

func (*CloudDirectory) DetachObjectWithContext

func (c *CloudDirectory) DetachObjectWithContext(ctx aws.Context, input *DetachObjectInput, opts ...request.Option) (*DetachObjectOutput, error)

DetachObjectWithContext is the same as DetachObject with the addition of the ability to pass a context and additional request options.

See DetachObject for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) DetachPolicy

func (c *CloudDirectory) DetachPolicy(input *DetachPolicyInput) (*DetachPolicyOutput, error)

DetachPolicy API operation for Amazon CloudDirectory.

Detaches a policy from an object.

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 CloudDirectory's API operation DetachPolicy for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeNotPolicyException "NotPolicyException"
Indicates that the requested operation can only operate on policy objects.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachPolicy

func (*CloudDirectory) DetachPolicyRequest

func (c *CloudDirectory) DetachPolicyRequest(input *DetachPolicyInput) (req *request.Request, output *DetachPolicyOutput)

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

See DetachPolicy 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 DetachPolicy 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 DetachPolicyRequest method.
req, resp := client.DetachPolicyRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachPolicy

func (*CloudDirectory) DetachPolicyWithContext

func (c *CloudDirectory) DetachPolicyWithContext(ctx aws.Context, input *DetachPolicyInput, opts ...request.Option) (*DetachPolicyOutput, error)

DetachPolicyWithContext is the same as DetachPolicy with the addition of the ability to pass a context and additional request options.

See DetachPolicy for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (c *CloudDirectory) DetachTypedLink(input *DetachTypedLinkInput) (*DetachTypedLinkOutput, error)

DetachTypedLink API operation for Amazon CloudDirectory.

Detaches a typed link from a specified source and target object. For more information, see Typed link (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink).

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 CloudDirectory's API operation DetachTypedLink for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetValidationException "FacetValidationException"
The Facet that you provided was not well formed or could not be validated
with the schema.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachTypedLink

func (*CloudDirectory) DetachTypedLinkRequest

func (c *CloudDirectory) DetachTypedLinkRequest(input *DetachTypedLinkInput) (req *request.Request, output *DetachTypedLinkOutput)

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

See DetachTypedLink 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 DetachTypedLink 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 DetachTypedLinkRequest method.
req, resp := client.DetachTypedLinkRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachTypedLink

func (*CloudDirectory) DetachTypedLinkWithContext

func (c *CloudDirectory) DetachTypedLinkWithContext(ctx aws.Context, input *DetachTypedLinkInput, opts ...request.Option) (*DetachTypedLinkOutput, error)

DetachTypedLinkWithContext is the same as DetachTypedLink with the addition of the ability to pass a context and additional request options.

See DetachTypedLink for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) DisableDirectory

func (c *CloudDirectory) DisableDirectory(input *DisableDirectoryInput) (*DisableDirectoryOutput, error)

DisableDirectory API operation for Amazon CloudDirectory.

Disables the specified directory. Disabled directories cannot be read or written to. Only enabled directories can be disabled. Disabled directories may be reenabled.

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 CloudDirectory's API operation DisableDirectory for usage and error information.

Returned Error Codes:

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeDirectoryDeletedException "DirectoryDeletedException"
A directory that has been deleted and to which access has been attempted.
Note: The requested resource will eventually cease to exist.

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DisableDirectory

func (*CloudDirectory) DisableDirectoryRequest

func (c *CloudDirectory) DisableDirectoryRequest(input *DisableDirectoryInput) (req *request.Request, output *DisableDirectoryOutput)

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

See DisableDirectory 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 DisableDirectory 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 DisableDirectoryRequest method.
req, resp := client.DisableDirectoryRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DisableDirectory

func (*CloudDirectory) DisableDirectoryWithContext

func (c *CloudDirectory) DisableDirectoryWithContext(ctx aws.Context, input *DisableDirectoryInput, opts ...request.Option) (*DisableDirectoryOutput, error)

DisableDirectoryWithContext is the same as DisableDirectory with the addition of the ability to pass a context and additional request options.

See DisableDirectory for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) EnableDirectory

func (c *CloudDirectory) EnableDirectory(input *EnableDirectoryInput) (*EnableDirectoryOutput, error)

EnableDirectory API operation for Amazon CloudDirectory.

Enables the specified directory. Only disabled directories can be enabled. Once enabled, the directory can then be read and written to.

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 CloudDirectory's API operation EnableDirectory for usage and error information.

Returned Error Codes:

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeDirectoryDeletedException "DirectoryDeletedException"
A directory that has been deleted and to which access has been attempted.
Note: The requested resource will eventually cease to exist.

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/EnableDirectory

func (*CloudDirectory) EnableDirectoryRequest

func (c *CloudDirectory) EnableDirectoryRequest(input *EnableDirectoryInput) (req *request.Request, output *EnableDirectoryOutput)

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

See EnableDirectory 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 EnableDirectory 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 EnableDirectoryRequest method.
req, resp := client.EnableDirectoryRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/EnableDirectory

func (*CloudDirectory) EnableDirectoryWithContext

func (c *CloudDirectory) EnableDirectoryWithContext(ctx aws.Context, input *EnableDirectoryInput, opts ...request.Option) (*EnableDirectoryOutput, error)

EnableDirectoryWithContext is the same as EnableDirectory with the addition of the ability to pass a context and additional request options.

See EnableDirectory for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) GetDirectory

func (c *CloudDirectory) GetDirectory(input *GetDirectoryInput) (*GetDirectoryOutput, error)

GetDirectory API operation for Amazon CloudDirectory.

Retrieves metadata about a directory.

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 CloudDirectory's API operation GetDirectory for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetDirectory

func (*CloudDirectory) GetDirectoryRequest

func (c *CloudDirectory) GetDirectoryRequest(input *GetDirectoryInput) (req *request.Request, output *GetDirectoryOutput)

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

See GetDirectory 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 GetDirectory 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 GetDirectoryRequest method.
req, resp := client.GetDirectoryRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetDirectory

func (*CloudDirectory) GetDirectoryWithContext

func (c *CloudDirectory) GetDirectoryWithContext(ctx aws.Context, input *GetDirectoryInput, opts ...request.Option) (*GetDirectoryOutput, error)

GetDirectoryWithContext is the same as GetDirectory with the addition of the ability to pass a context and additional request options.

See GetDirectory for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) GetFacet

func (c *CloudDirectory) GetFacet(input *GetFacetInput) (*GetFacetOutput, error)

GetFacet API operation for Amazon CloudDirectory.

Gets details of the Facet, such as facet name, attributes, Rules, or ObjectType. You can call this on all kinds of schema facets -- published, development, or applied.

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 CloudDirectory's API operation GetFacet for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetNotFoundException "FacetNotFoundException"
The specified Facet could not be found.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetFacet

func (*CloudDirectory) GetFacetRequest

func (c *CloudDirectory) GetFacetRequest(input *GetFacetInput) (req *request.Request, output *GetFacetOutput)

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

See GetFacet 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 GetFacet 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 GetFacetRequest method.
req, resp := client.GetFacetRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetFacet

func (*CloudDirectory) GetFacetWithContext

func (c *CloudDirectory) GetFacetWithContext(ctx aws.Context, input *GetFacetInput, opts ...request.Option) (*GetFacetOutput, error)

GetFacetWithContext is the same as GetFacet with the addition of the ability to pass a context and additional request options.

See GetFacet for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) GetObjectInformation

func (c *CloudDirectory) GetObjectInformation(input *GetObjectInformationInput) (*GetObjectInformationOutput, error)

GetObjectInformation API operation for Amazon CloudDirectory.

Retrieves metadata about an object.

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 CloudDirectory's API operation GetObjectInformation for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetObjectInformation

func (*CloudDirectory) GetObjectInformationRequest

func (c *CloudDirectory) GetObjectInformationRequest(input *GetObjectInformationInput) (req *request.Request, output *GetObjectInformationOutput)

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

See GetObjectInformation 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 GetObjectInformation 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 GetObjectInformationRequest method.
req, resp := client.GetObjectInformationRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetObjectInformation

func (*CloudDirectory) GetObjectInformationWithContext

func (c *CloudDirectory) GetObjectInformationWithContext(ctx aws.Context, input *GetObjectInformationInput, opts ...request.Option) (*GetObjectInformationOutput, error)

GetObjectInformationWithContext is the same as GetObjectInformation with the addition of the ability to pass a context and additional request options.

See GetObjectInformation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) GetSchemaAsJson

func (c *CloudDirectory) GetSchemaAsJson(input *GetSchemaAsJsonInput) (*GetSchemaAsJsonOutput, error)

GetSchemaAsJson API operation for Amazon CloudDirectory.

Retrieves a JSON representation of the schema. See JSON Schema Format (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_schemas.html#jsonformat) for more information.

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 CloudDirectory's API operation GetSchemaAsJson for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetSchemaAsJson

func (*CloudDirectory) GetSchemaAsJsonRequest

func (c *CloudDirectory) GetSchemaAsJsonRequest(input *GetSchemaAsJsonInput) (req *request.Request, output *GetSchemaAsJsonOutput)

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

See GetSchemaAsJson 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 GetSchemaAsJson 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 GetSchemaAsJsonRequest method.
req, resp := client.GetSchemaAsJsonRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetSchemaAsJson

func (*CloudDirectory) GetSchemaAsJsonWithContext

func (c *CloudDirectory) GetSchemaAsJsonWithContext(ctx aws.Context, input *GetSchemaAsJsonInput, opts ...request.Option) (*GetSchemaAsJsonOutput, error)

GetSchemaAsJsonWithContext is the same as GetSchemaAsJson with the addition of the ability to pass a context and additional request options.

See GetSchemaAsJson for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) GetTypedLinkFacetInformation

func (c *CloudDirectory) GetTypedLinkFacetInformation(input *GetTypedLinkFacetInformationInput) (*GetTypedLinkFacetInformationOutput, error)

GetTypedLinkFacetInformation API operation for Amazon CloudDirectory.

Returns the identity attribute order for a specific TypedLinkFacet. For more information, see Typed link (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink).

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 CloudDirectory's API operation GetTypedLinkFacetInformation for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

* ErrCodeFacetNotFoundException "FacetNotFoundException"
The specified Facet could not be found.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetTypedLinkFacetInformation

func (*CloudDirectory) GetTypedLinkFacetInformationRequest

func (c *CloudDirectory) GetTypedLinkFacetInformationRequest(input *GetTypedLinkFacetInformationInput) (req *request.Request, output *GetTypedLinkFacetInformationOutput)

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

See GetTypedLinkFacetInformation 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 GetTypedLinkFacetInformation 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 GetTypedLinkFacetInformationRequest method.
req, resp := client.GetTypedLinkFacetInformationRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetTypedLinkFacetInformation

func (*CloudDirectory) GetTypedLinkFacetInformationWithContext

func (c *CloudDirectory) GetTypedLinkFacetInformationWithContext(ctx aws.Context, input *GetTypedLinkFacetInformationInput, opts ...request.Option) (*GetTypedLinkFacetInformationOutput, error)

GetTypedLinkFacetInformationWithContext is the same as GetTypedLinkFacetInformation with the addition of the ability to pass a context and additional request options.

See GetTypedLinkFacetInformation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListAppliedSchemaArns

func (c *CloudDirectory) ListAppliedSchemaArns(input *ListAppliedSchemaArnsInput) (*ListAppliedSchemaArnsOutput, error)

ListAppliedSchemaArns API operation for Amazon CloudDirectory.

Lists schemas applied to a directory.

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 CloudDirectory's API operation ListAppliedSchemaArns for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListAppliedSchemaArns

func (*CloudDirectory) ListAppliedSchemaArnsPages

func (c *CloudDirectory) ListAppliedSchemaArnsPages(input *ListAppliedSchemaArnsInput, fn func(*ListAppliedSchemaArnsOutput, bool) bool) error

ListAppliedSchemaArnsPages iterates over the pages of a ListAppliedSchemaArns operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListAppliedSchemaArns method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListAppliedSchemaArns operation.
pageNum := 0
err := client.ListAppliedSchemaArnsPages(params,
    func(page *ListAppliedSchemaArnsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListAppliedSchemaArnsPagesWithContext

func (c *CloudDirectory) ListAppliedSchemaArnsPagesWithContext(ctx aws.Context, input *ListAppliedSchemaArnsInput, fn func(*ListAppliedSchemaArnsOutput, bool) bool, opts ...request.Option) error

ListAppliedSchemaArnsPagesWithContext same as ListAppliedSchemaArnsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListAppliedSchemaArnsRequest

func (c *CloudDirectory) ListAppliedSchemaArnsRequest(input *ListAppliedSchemaArnsInput) (req *request.Request, output *ListAppliedSchemaArnsOutput)

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

See ListAppliedSchemaArns 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 ListAppliedSchemaArns 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 ListAppliedSchemaArnsRequest method.
req, resp := client.ListAppliedSchemaArnsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListAppliedSchemaArns

func (*CloudDirectory) ListAppliedSchemaArnsWithContext

func (c *CloudDirectory) ListAppliedSchemaArnsWithContext(ctx aws.Context, input *ListAppliedSchemaArnsInput, opts ...request.Option) (*ListAppliedSchemaArnsOutput, error)

ListAppliedSchemaArnsWithContext is the same as ListAppliedSchemaArns with the addition of the ability to pass a context and additional request options.

See ListAppliedSchemaArns for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListAttachedIndices

func (c *CloudDirectory) ListAttachedIndices(input *ListAttachedIndicesInput) (*ListAttachedIndicesOutput, error)

ListAttachedIndices API operation for Amazon CloudDirectory.

Lists indices attached to an object.

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 CloudDirectory's API operation ListAttachedIndices for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListAttachedIndices

func (*CloudDirectory) ListAttachedIndicesPages

func (c *CloudDirectory) ListAttachedIndicesPages(input *ListAttachedIndicesInput, fn func(*ListAttachedIndicesOutput, bool) bool) error

ListAttachedIndicesPages iterates over the pages of a ListAttachedIndices operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListAttachedIndices method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListAttachedIndices operation.
pageNum := 0
err := client.ListAttachedIndicesPages(params,
    func(page *ListAttachedIndicesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListAttachedIndicesPagesWithContext

func (c *CloudDirectory) ListAttachedIndicesPagesWithContext(ctx aws.Context, input *ListAttachedIndicesInput, fn func(*ListAttachedIndicesOutput, bool) bool, opts ...request.Option) error

ListAttachedIndicesPagesWithContext same as ListAttachedIndicesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListAttachedIndicesRequest

func (c *CloudDirectory) ListAttachedIndicesRequest(input *ListAttachedIndicesInput) (req *request.Request, output *ListAttachedIndicesOutput)

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

See ListAttachedIndices 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 ListAttachedIndices 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 ListAttachedIndicesRequest method.
req, resp := client.ListAttachedIndicesRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListAttachedIndices

func (*CloudDirectory) ListAttachedIndicesWithContext

func (c *CloudDirectory) ListAttachedIndicesWithContext(ctx aws.Context, input *ListAttachedIndicesInput, opts ...request.Option) (*ListAttachedIndicesOutput, error)

ListAttachedIndicesWithContext is the same as ListAttachedIndices with the addition of the ability to pass a context and additional request options.

See ListAttachedIndices for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListDevelopmentSchemaArns

func (c *CloudDirectory) ListDevelopmentSchemaArns(input *ListDevelopmentSchemaArnsInput) (*ListDevelopmentSchemaArnsOutput, error)

ListDevelopmentSchemaArns API operation for Amazon CloudDirectory.

Retrieves each Amazon Resource Name (ARN) of schemas in the development state.

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 CloudDirectory's API operation ListDevelopmentSchemaArns for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListDevelopmentSchemaArns

func (*CloudDirectory) ListDevelopmentSchemaArnsPages

func (c *CloudDirectory) ListDevelopmentSchemaArnsPages(input *ListDevelopmentSchemaArnsInput, fn func(*ListDevelopmentSchemaArnsOutput, bool) bool) error

ListDevelopmentSchemaArnsPages iterates over the pages of a ListDevelopmentSchemaArns operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListDevelopmentSchemaArns method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListDevelopmentSchemaArns operation.
pageNum := 0
err := client.ListDevelopmentSchemaArnsPages(params,
    func(page *ListDevelopmentSchemaArnsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListDevelopmentSchemaArnsPagesWithContext

func (c *CloudDirectory) ListDevelopmentSchemaArnsPagesWithContext(ctx aws.Context, input *ListDevelopmentSchemaArnsInput, fn func(*ListDevelopmentSchemaArnsOutput, bool) bool, opts ...request.Option) error

ListDevelopmentSchemaArnsPagesWithContext same as ListDevelopmentSchemaArnsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListDevelopmentSchemaArnsRequest

func (c *CloudDirectory) ListDevelopmentSchemaArnsRequest(input *ListDevelopmentSchemaArnsInput) (req *request.Request, output *ListDevelopmentSchemaArnsOutput)

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

See ListDevelopmentSchemaArns 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 ListDevelopmentSchemaArns 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 ListDevelopmentSchemaArnsRequest method.
req, resp := client.ListDevelopmentSchemaArnsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListDevelopmentSchemaArns

func (*CloudDirectory) ListDevelopmentSchemaArnsWithContext

func (c *CloudDirectory) ListDevelopmentSchemaArnsWithContext(ctx aws.Context, input *ListDevelopmentSchemaArnsInput, opts ...request.Option) (*ListDevelopmentSchemaArnsOutput, error)

ListDevelopmentSchemaArnsWithContext is the same as ListDevelopmentSchemaArns with the addition of the ability to pass a context and additional request options.

See ListDevelopmentSchemaArns for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListDirectories

func (c *CloudDirectory) ListDirectories(input *ListDirectoriesInput) (*ListDirectoriesOutput, error)

ListDirectories API operation for Amazon CloudDirectory.

Lists directories created within an account.

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 CloudDirectory's API operation ListDirectories for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListDirectories

func (*CloudDirectory) ListDirectoriesPages

func (c *CloudDirectory) ListDirectoriesPages(input *ListDirectoriesInput, fn func(*ListDirectoriesOutput, bool) bool) error

ListDirectoriesPages iterates over the pages of a ListDirectories operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListDirectories method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListDirectories operation.
pageNum := 0
err := client.ListDirectoriesPages(params,
    func(page *ListDirectoriesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListDirectoriesPagesWithContext

func (c *CloudDirectory) ListDirectoriesPagesWithContext(ctx aws.Context, input *ListDirectoriesInput, fn func(*ListDirectoriesOutput, bool) bool, opts ...request.Option) error

ListDirectoriesPagesWithContext same as ListDirectoriesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListDirectoriesRequest

func (c *CloudDirectory) ListDirectoriesRequest(input *ListDirectoriesInput) (req *request.Request, output *ListDirectoriesOutput)

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

See ListDirectories 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 ListDirectories 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 ListDirectoriesRequest method.
req, resp := client.ListDirectoriesRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListDirectories

func (*CloudDirectory) ListDirectoriesWithContext

func (c *CloudDirectory) ListDirectoriesWithContext(ctx aws.Context, input *ListDirectoriesInput, opts ...request.Option) (*ListDirectoriesOutput, error)

ListDirectoriesWithContext is the same as ListDirectories with the addition of the ability to pass a context and additional request options.

See ListDirectories for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListFacetAttributes

func (c *CloudDirectory) ListFacetAttributes(input *ListFacetAttributesInput) (*ListFacetAttributesOutput, error)

ListFacetAttributes API operation for Amazon CloudDirectory.

Retrieves attributes attached to the facet.

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 CloudDirectory's API operation ListFacetAttributes for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetNotFoundException "FacetNotFoundException"
The specified Facet could not be found.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListFacetAttributes

func (*CloudDirectory) ListFacetAttributesPages

func (c *CloudDirectory) ListFacetAttributesPages(input *ListFacetAttributesInput, fn func(*ListFacetAttributesOutput, bool) bool) error

ListFacetAttributesPages iterates over the pages of a ListFacetAttributes operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListFacetAttributes method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListFacetAttributes operation.
pageNum := 0
err := client.ListFacetAttributesPages(params,
    func(page *ListFacetAttributesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListFacetAttributesPagesWithContext

func (c *CloudDirectory) ListFacetAttributesPagesWithContext(ctx aws.Context, input *ListFacetAttributesInput, fn func(*ListFacetAttributesOutput, bool) bool, opts ...request.Option) error

ListFacetAttributesPagesWithContext same as ListFacetAttributesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListFacetAttributesRequest

func (c *CloudDirectory) ListFacetAttributesRequest(input *ListFacetAttributesInput) (req *request.Request, output *ListFacetAttributesOutput)

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

See ListFacetAttributes 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 ListFacetAttributes 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 ListFacetAttributesRequest method.
req, resp := client.ListFacetAttributesRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListFacetAttributes

func (*CloudDirectory) ListFacetAttributesWithContext

func (c *CloudDirectory) ListFacetAttributesWithContext(ctx aws.Context, input *ListFacetAttributesInput, opts ...request.Option) (*ListFacetAttributesOutput, error)

ListFacetAttributesWithContext is the same as ListFacetAttributes with the addition of the ability to pass a context and additional request options.

See ListFacetAttributes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListFacetNames

func (c *CloudDirectory) ListFacetNames(input *ListFacetNamesInput) (*ListFacetNamesOutput, error)

ListFacetNames API operation for Amazon CloudDirectory.

Retrieves the names of facets that exist in a schema.

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 CloudDirectory's API operation ListFacetNames for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListFacetNames

func (*CloudDirectory) ListFacetNamesPages

func (c *CloudDirectory) ListFacetNamesPages(input *ListFacetNamesInput, fn func(*ListFacetNamesOutput, bool) bool) error

ListFacetNamesPages iterates over the pages of a ListFacetNames operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListFacetNames method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListFacetNames operation.
pageNum := 0
err := client.ListFacetNamesPages(params,
    func(page *ListFacetNamesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListFacetNamesPagesWithContext

func (c *CloudDirectory) ListFacetNamesPagesWithContext(ctx aws.Context, input *ListFacetNamesInput, fn func(*ListFacetNamesOutput, bool) bool, opts ...request.Option) error

ListFacetNamesPagesWithContext same as ListFacetNamesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListFacetNamesRequest

func (c *CloudDirectory) ListFacetNamesRequest(input *ListFacetNamesInput) (req *request.Request, output *ListFacetNamesOutput)

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

See ListFacetNames 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 ListFacetNames 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 ListFacetNamesRequest method.
req, resp := client.ListFacetNamesRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListFacetNames

func (*CloudDirectory) ListFacetNamesWithContext

func (c *CloudDirectory) ListFacetNamesWithContext(ctx aws.Context, input *ListFacetNamesInput, opts ...request.Option) (*ListFacetNamesOutput, error)

ListFacetNamesWithContext is the same as ListFacetNames with the addition of the ability to pass a context and additional request options.

See ListFacetNames for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (c *CloudDirectory) ListIncomingTypedLinks(input *ListIncomingTypedLinksInput) (*ListIncomingTypedLinksOutput, error)

ListIncomingTypedLinks API operation for Amazon CloudDirectory.

Returns a paginated list of all the incoming TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed link (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink).

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 CloudDirectory's API operation ListIncomingTypedLinks for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

* ErrCodeFacetValidationException "FacetValidationException"
The Facet that you provided was not well formed or could not be validated
with the schema.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListIncomingTypedLinks

func (*CloudDirectory) ListIncomingTypedLinksRequest

func (c *CloudDirectory) ListIncomingTypedLinksRequest(input *ListIncomingTypedLinksInput) (req *request.Request, output *ListIncomingTypedLinksOutput)

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

See ListIncomingTypedLinks 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 ListIncomingTypedLinks 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 ListIncomingTypedLinksRequest method.
req, resp := client.ListIncomingTypedLinksRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListIncomingTypedLinks

func (*CloudDirectory) ListIncomingTypedLinksWithContext

func (c *CloudDirectory) ListIncomingTypedLinksWithContext(ctx aws.Context, input *ListIncomingTypedLinksInput, opts ...request.Option) (*ListIncomingTypedLinksOutput, error)

ListIncomingTypedLinksWithContext is the same as ListIncomingTypedLinks with the addition of the ability to pass a context and additional request options.

See ListIncomingTypedLinks for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListIndex

func (c *CloudDirectory) ListIndex(input *ListIndexInput) (*ListIndexOutput, error)

ListIndex API operation for Amazon CloudDirectory.

Lists objects attached to the specified index.

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 CloudDirectory's API operation ListIndex for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeNotIndexException "NotIndexException"
Indicates that the requested operation can only operate on index objects.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListIndex

func (*CloudDirectory) ListIndexPages

func (c *CloudDirectory) ListIndexPages(input *ListIndexInput, fn func(*ListIndexOutput, bool) bool) error

ListIndexPages iterates over the pages of a ListIndex operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListIndex method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListIndex operation.
pageNum := 0
err := client.ListIndexPages(params,
    func(page *ListIndexOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListIndexPagesWithContext

func (c *CloudDirectory) ListIndexPagesWithContext(ctx aws.Context, input *ListIndexInput, fn func(*ListIndexOutput, bool) bool, opts ...request.Option) error

ListIndexPagesWithContext same as ListIndexPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListIndexRequest

func (c *CloudDirectory) ListIndexRequest(input *ListIndexInput) (req *request.Request, output *ListIndexOutput)

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

See ListIndex 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 ListIndex 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 ListIndexRequest method.
req, resp := client.ListIndexRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListIndex

func (*CloudDirectory) ListIndexWithContext

func (c *CloudDirectory) ListIndexWithContext(ctx aws.Context, input *ListIndexInput, opts ...request.Option) (*ListIndexOutput, error)

ListIndexWithContext is the same as ListIndex with the addition of the ability to pass a context and additional request options.

See ListIndex for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListObjectAttributes

func (c *CloudDirectory) ListObjectAttributes(input *ListObjectAttributesInput) (*ListObjectAttributesOutput, error)

ListObjectAttributes API operation for Amazon CloudDirectory.

Lists all attributes that are associated with an object.

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 CloudDirectory's API operation ListObjectAttributes for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

* ErrCodeFacetValidationException "FacetValidationException"
The Facet that you provided was not well formed or could not be validated
with the schema.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectAttributes

func (*CloudDirectory) ListObjectAttributesPages

func (c *CloudDirectory) ListObjectAttributesPages(input *ListObjectAttributesInput, fn func(*ListObjectAttributesOutput, bool) bool) error

ListObjectAttributesPages iterates over the pages of a ListObjectAttributes operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListObjectAttributes method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListObjectAttributes operation.
pageNum := 0
err := client.ListObjectAttributesPages(params,
    func(page *ListObjectAttributesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListObjectAttributesPagesWithContext

func (c *CloudDirectory) ListObjectAttributesPagesWithContext(ctx aws.Context, input *ListObjectAttributesInput, fn func(*ListObjectAttributesOutput, bool) bool, opts ...request.Option) error

ListObjectAttributesPagesWithContext same as ListObjectAttributesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListObjectAttributesRequest

func (c *CloudDirectory) ListObjectAttributesRequest(input *ListObjectAttributesInput) (req *request.Request, output *ListObjectAttributesOutput)

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

See ListObjectAttributes 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 ListObjectAttributes 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 ListObjectAttributesRequest method.
req, resp := client.ListObjectAttributesRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectAttributes

func (*CloudDirectory) ListObjectAttributesWithContext

func (c *CloudDirectory) ListObjectAttributesWithContext(ctx aws.Context, input *ListObjectAttributesInput, opts ...request.Option) (*ListObjectAttributesOutput, error)

ListObjectAttributesWithContext is the same as ListObjectAttributes with the addition of the ability to pass a context and additional request options.

See ListObjectAttributes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListObjectChildren

func (c *CloudDirectory) ListObjectChildren(input *ListObjectChildrenInput) (*ListObjectChildrenOutput, error)

ListObjectChildren API operation for Amazon CloudDirectory.

Returns a paginated list of child objects that are associated with a given object.

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 CloudDirectory's API operation ListObjectChildren for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

* ErrCodeNotNodeException "NotNodeException"
Occurs when any invalid operations are performed on an object that is not
a node, such as calling ListObjectChildren for a leaf node object.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectChildren

func (*CloudDirectory) ListObjectChildrenPages

func (c *CloudDirectory) ListObjectChildrenPages(input *ListObjectChildrenInput, fn func(*ListObjectChildrenOutput, bool) bool) error

ListObjectChildrenPages iterates over the pages of a ListObjectChildren operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListObjectChildren method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListObjectChildren operation.
pageNum := 0
err := client.ListObjectChildrenPages(params,
    func(page *ListObjectChildrenOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListObjectChildrenPagesWithContext

func (c *CloudDirectory) ListObjectChildrenPagesWithContext(ctx aws.Context, input *ListObjectChildrenInput, fn func(*ListObjectChildrenOutput, bool) bool, opts ...request.Option) error

ListObjectChildrenPagesWithContext same as ListObjectChildrenPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListObjectChildrenRequest

func (c *CloudDirectory) ListObjectChildrenRequest(input *ListObjectChildrenInput) (req *request.Request, output *ListObjectChildrenOutput)

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

See ListObjectChildren 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 ListObjectChildren 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 ListObjectChildrenRequest method.
req, resp := client.ListObjectChildrenRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectChildren

func (*CloudDirectory) ListObjectChildrenWithContext

func (c *CloudDirectory) ListObjectChildrenWithContext(ctx aws.Context, input *ListObjectChildrenInput, opts ...request.Option) (*ListObjectChildrenOutput, error)

ListObjectChildrenWithContext is the same as ListObjectChildren with the addition of the ability to pass a context and additional request options.

See ListObjectChildren for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListObjectParentPaths

func (c *CloudDirectory) ListObjectParentPaths(input *ListObjectParentPathsInput) (*ListObjectParentPathsOutput, error)

ListObjectParentPaths API operation for Amazon CloudDirectory.

Retrieves all available parent paths for any object type such as node, leaf node, policy node, and index node objects. For more information about objects, see Directory Structure (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#dirstructure).

Use this API to evaluate all parents for an object. The call returns all objects from the root of the directory up to the requested object. The API returns the number of paths based on user-defined MaxResults, in case there are multiple paths to the parent. The order of the paths and nodes returned is consistent among multiple API calls unless the objects are deleted or moved. Paths not leading to the directory root are ignored from the target object.

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 CloudDirectory's API operation ListObjectParentPaths for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectParentPaths

func (*CloudDirectory) ListObjectParentPathsPages

func (c *CloudDirectory) ListObjectParentPathsPages(input *ListObjectParentPathsInput, fn func(*ListObjectParentPathsOutput, bool) bool) error

ListObjectParentPathsPages iterates over the pages of a ListObjectParentPaths operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListObjectParentPaths method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListObjectParentPaths operation.
pageNum := 0
err := client.ListObjectParentPathsPages(params,
    func(page *ListObjectParentPathsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListObjectParentPathsPagesWithContext

func (c *CloudDirectory) ListObjectParentPathsPagesWithContext(ctx aws.Context, input *ListObjectParentPathsInput, fn func(*ListObjectParentPathsOutput, bool) bool, opts ...request.Option) error

ListObjectParentPathsPagesWithContext same as ListObjectParentPathsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListObjectParentPathsRequest

func (c *CloudDirectory) ListObjectParentPathsRequest(input *ListObjectParentPathsInput) (req *request.Request, output *ListObjectParentPathsOutput)

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

See ListObjectParentPaths 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 ListObjectParentPaths 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 ListObjectParentPathsRequest method.
req, resp := client.ListObjectParentPathsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectParentPaths

func (*CloudDirectory) ListObjectParentPathsWithContext

func (c *CloudDirectory) ListObjectParentPathsWithContext(ctx aws.Context, input *ListObjectParentPathsInput, opts ...request.Option) (*ListObjectParentPathsOutput, error)

ListObjectParentPathsWithContext is the same as ListObjectParentPaths with the addition of the ability to pass a context and additional request options.

See ListObjectParentPaths for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListObjectParents

func (c *CloudDirectory) ListObjectParents(input *ListObjectParentsInput) (*ListObjectParentsOutput, error)

ListObjectParents API operation for Amazon CloudDirectory.

Lists parent objects that are associated with a given object in pagination fashion.

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 CloudDirectory's API operation ListObjectParents for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

* ErrCodeCannotListParentOfRootException "CannotListParentOfRootException"
Cannot list the parents of a Directory root.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectParents

func (*CloudDirectory) ListObjectParentsPages

func (c *CloudDirectory) ListObjectParentsPages(input *ListObjectParentsInput, fn func(*ListObjectParentsOutput, bool) bool) error

ListObjectParentsPages iterates over the pages of a ListObjectParents operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListObjectParents method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListObjectParents operation.
pageNum := 0
err := client.ListObjectParentsPages(params,
    func(page *ListObjectParentsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListObjectParentsPagesWithContext

func (c *CloudDirectory) ListObjectParentsPagesWithContext(ctx aws.Context, input *ListObjectParentsInput, fn func(*ListObjectParentsOutput, bool) bool, opts ...request.Option) error

ListObjectParentsPagesWithContext same as ListObjectParentsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListObjectParentsRequest

func (c *CloudDirectory) ListObjectParentsRequest(input *ListObjectParentsInput) (req *request.Request, output *ListObjectParentsOutput)

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

See ListObjectParents 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 ListObjectParents 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 ListObjectParentsRequest method.
req, resp := client.ListObjectParentsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectParents

func (*CloudDirectory) ListObjectParentsWithContext

func (c *CloudDirectory) ListObjectParentsWithContext(ctx aws.Context, input *ListObjectParentsInput, opts ...request.Option) (*ListObjectParentsOutput, error)

ListObjectParentsWithContext is the same as ListObjectParents with the addition of the ability to pass a context and additional request options.

See ListObjectParents for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListObjectPolicies

func (c *CloudDirectory) ListObjectPolicies(input *ListObjectPoliciesInput) (*ListObjectPoliciesOutput, error)

ListObjectPolicies API operation for Amazon CloudDirectory.

Returns policies attached to an object in pagination fashion.

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 CloudDirectory's API operation ListObjectPolicies for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectPolicies

func (*CloudDirectory) ListObjectPoliciesPages

func (c *CloudDirectory) ListObjectPoliciesPages(input *ListObjectPoliciesInput, fn func(*ListObjectPoliciesOutput, bool) bool) error

ListObjectPoliciesPages iterates over the pages of a ListObjectPolicies operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListObjectPolicies method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListObjectPolicies operation.
pageNum := 0
err := client.ListObjectPoliciesPages(params,
    func(page *ListObjectPoliciesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListObjectPoliciesPagesWithContext

func (c *CloudDirectory) ListObjectPoliciesPagesWithContext(ctx aws.Context, input *ListObjectPoliciesInput, fn func(*ListObjectPoliciesOutput, bool) bool, opts ...request.Option) error

ListObjectPoliciesPagesWithContext same as ListObjectPoliciesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListObjectPoliciesRequest

func (c *CloudDirectory) ListObjectPoliciesRequest(input *ListObjectPoliciesInput) (req *request.Request, output *ListObjectPoliciesOutput)

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

See ListObjectPolicies 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 ListObjectPolicies 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 ListObjectPoliciesRequest method.
req, resp := client.ListObjectPoliciesRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectPolicies

func (*CloudDirectory) ListObjectPoliciesWithContext

func (c *CloudDirectory) ListObjectPoliciesWithContext(ctx aws.Context, input *ListObjectPoliciesInput, opts ...request.Option) (*ListObjectPoliciesOutput, error)

ListObjectPoliciesWithContext is the same as ListObjectPolicies with the addition of the ability to pass a context and additional request options.

See ListObjectPolicies for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (c *CloudDirectory) ListOutgoingTypedLinks(input *ListOutgoingTypedLinksInput) (*ListOutgoingTypedLinksOutput, error)

ListOutgoingTypedLinks API operation for Amazon CloudDirectory.

Returns a paginated list of all the outgoing TypedLinkSpecifier information for an object. It also supports filtering by typed link facet and identity attributes. For more information, see Typed link (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink).

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 CloudDirectory's API operation ListOutgoingTypedLinks for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

* ErrCodeFacetValidationException "FacetValidationException"
The Facet that you provided was not well formed or could not be validated
with the schema.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListOutgoingTypedLinks

func (*CloudDirectory) ListOutgoingTypedLinksRequest

func (c *CloudDirectory) ListOutgoingTypedLinksRequest(input *ListOutgoingTypedLinksInput) (req *request.Request, output *ListOutgoingTypedLinksOutput)

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

See ListOutgoingTypedLinks 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 ListOutgoingTypedLinks 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 ListOutgoingTypedLinksRequest method.
req, resp := client.ListOutgoingTypedLinksRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListOutgoingTypedLinks

func (*CloudDirectory) ListOutgoingTypedLinksWithContext

func (c *CloudDirectory) ListOutgoingTypedLinksWithContext(ctx aws.Context, input *ListOutgoingTypedLinksInput, opts ...request.Option) (*ListOutgoingTypedLinksOutput, error)

ListOutgoingTypedLinksWithContext is the same as ListOutgoingTypedLinks with the addition of the ability to pass a context and additional request options.

See ListOutgoingTypedLinks for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListPolicyAttachments

func (c *CloudDirectory) ListPolicyAttachments(input *ListPolicyAttachmentsInput) (*ListPolicyAttachmentsOutput, error)

ListPolicyAttachments API operation for Amazon CloudDirectory.

Returns all of the ObjectIdentifiers to which a given policy is attached.

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 CloudDirectory's API operation ListPolicyAttachments for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeNotPolicyException "NotPolicyException"
Indicates that the requested operation can only operate on policy objects.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListPolicyAttachments

func (*CloudDirectory) ListPolicyAttachmentsPages

func (c *CloudDirectory) ListPolicyAttachmentsPages(input *ListPolicyAttachmentsInput, fn func(*ListPolicyAttachmentsOutput, bool) bool) error

ListPolicyAttachmentsPages iterates over the pages of a ListPolicyAttachments operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListPolicyAttachments method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListPolicyAttachments operation.
pageNum := 0
err := client.ListPolicyAttachmentsPages(params,
    func(page *ListPolicyAttachmentsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListPolicyAttachmentsPagesWithContext

func (c *CloudDirectory) ListPolicyAttachmentsPagesWithContext(ctx aws.Context, input *ListPolicyAttachmentsInput, fn func(*ListPolicyAttachmentsOutput, bool) bool, opts ...request.Option) error

ListPolicyAttachmentsPagesWithContext same as ListPolicyAttachmentsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListPolicyAttachmentsRequest

func (c *CloudDirectory) ListPolicyAttachmentsRequest(input *ListPolicyAttachmentsInput) (req *request.Request, output *ListPolicyAttachmentsOutput)

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

See ListPolicyAttachments 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 ListPolicyAttachments 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 ListPolicyAttachmentsRequest method.
req, resp := client.ListPolicyAttachmentsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListPolicyAttachments

func (*CloudDirectory) ListPolicyAttachmentsWithContext

func (c *CloudDirectory) ListPolicyAttachmentsWithContext(ctx aws.Context, input *ListPolicyAttachmentsInput, opts ...request.Option) (*ListPolicyAttachmentsOutput, error)

ListPolicyAttachmentsWithContext is the same as ListPolicyAttachments with the addition of the ability to pass a context and additional request options.

See ListPolicyAttachments for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListPublishedSchemaArns

func (c *CloudDirectory) ListPublishedSchemaArns(input *ListPublishedSchemaArnsInput) (*ListPublishedSchemaArnsOutput, error)

ListPublishedSchemaArns API operation for Amazon CloudDirectory.

Retrieves each published schema Amazon Resource Name (ARN).

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 CloudDirectory's API operation ListPublishedSchemaArns for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListPublishedSchemaArns

func (*CloudDirectory) ListPublishedSchemaArnsPages

func (c *CloudDirectory) ListPublishedSchemaArnsPages(input *ListPublishedSchemaArnsInput, fn func(*ListPublishedSchemaArnsOutput, bool) bool) error

ListPublishedSchemaArnsPages iterates over the pages of a ListPublishedSchemaArns operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListPublishedSchemaArns method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListPublishedSchemaArns operation.
pageNum := 0
err := client.ListPublishedSchemaArnsPages(params,
    func(page *ListPublishedSchemaArnsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListPublishedSchemaArnsPagesWithContext

func (c *CloudDirectory) ListPublishedSchemaArnsPagesWithContext(ctx aws.Context, input *ListPublishedSchemaArnsInput, fn func(*ListPublishedSchemaArnsOutput, bool) bool, opts ...request.Option) error

ListPublishedSchemaArnsPagesWithContext same as ListPublishedSchemaArnsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListPublishedSchemaArnsRequest

func (c *CloudDirectory) ListPublishedSchemaArnsRequest(input *ListPublishedSchemaArnsInput) (req *request.Request, output *ListPublishedSchemaArnsOutput)

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

See ListPublishedSchemaArns 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 ListPublishedSchemaArns 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 ListPublishedSchemaArnsRequest method.
req, resp := client.ListPublishedSchemaArnsRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListPublishedSchemaArns

func (*CloudDirectory) ListPublishedSchemaArnsWithContext

func (c *CloudDirectory) ListPublishedSchemaArnsWithContext(ctx aws.Context, input *ListPublishedSchemaArnsInput, opts ...request.Option) (*ListPublishedSchemaArnsOutput, error)

ListPublishedSchemaArnsWithContext is the same as ListPublishedSchemaArns with the addition of the ability to pass a context and additional request options.

See ListPublishedSchemaArns for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListTagsForResource

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

ListTagsForResource API operation for Amazon CloudDirectory.

Returns tags for a resource. Tagging is currently supported only for directories with a limit of 50 tags per directory. All 50 tags are returned for a given directory with this API call.

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 CloudDirectory's API operation ListTagsForResource for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidTaggingRequestException "InvalidTaggingRequestException"
Can occur for multiple reasons such as when you tag a resource that doesn’t
exist or if you specify a higher number of tags for a resource than the allowed
limit. Allowed limit is 50 tags per resource.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListTagsForResource

func (*CloudDirectory) ListTagsForResourcePages

func (c *CloudDirectory) ListTagsForResourcePages(input *ListTagsForResourceInput, fn func(*ListTagsForResourceOutput, bool) bool) error

ListTagsForResourcePages iterates over the pages of a ListTagsForResource operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListTagsForResource method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListTagsForResource operation.
pageNum := 0
err := client.ListTagsForResourcePages(params,
    func(page *ListTagsForResourceOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListTagsForResourcePagesWithContext

func (c *CloudDirectory) ListTagsForResourcePagesWithContext(ctx aws.Context, input *ListTagsForResourceInput, fn func(*ListTagsForResourceOutput, bool) bool, opts ...request.Option) error

ListTagsForResourcePagesWithContext same as ListTagsForResourcePages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListTagsForResourceRequest

func (c *CloudDirectory) 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/clouddirectory-2016-05-10/ListTagsForResource

func (*CloudDirectory) ListTagsForResourceWithContext

func (c *CloudDirectory) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)

ListTagsForResourceWithContext is the same as ListTagsForResource with the addition of the ability to pass a context and additional request options.

See ListTagsForResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListTypedLinkFacetAttributes

func (c *CloudDirectory) ListTypedLinkFacetAttributes(input *ListTypedLinkFacetAttributesInput) (*ListTypedLinkFacetAttributesOutput, error)

ListTypedLinkFacetAttributes API operation for Amazon CloudDirectory.

Returns a paginated list of all attribute definitions for a particular TypedLinkFacet. For more information, see Typed link (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink).

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 CloudDirectory's API operation ListTypedLinkFacetAttributes for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetNotFoundException "FacetNotFoundException"
The specified Facet could not be found.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListTypedLinkFacetAttributes

func (*CloudDirectory) ListTypedLinkFacetAttributesPages

func (c *CloudDirectory) ListTypedLinkFacetAttributesPages(input *ListTypedLinkFacetAttributesInput, fn func(*ListTypedLinkFacetAttributesOutput, bool) bool) error

ListTypedLinkFacetAttributesPages iterates over the pages of a ListTypedLinkFacetAttributes operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListTypedLinkFacetAttributes method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListTypedLinkFacetAttributes operation.
pageNum := 0
err := client.ListTypedLinkFacetAttributesPages(params,
    func(page *ListTypedLinkFacetAttributesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListTypedLinkFacetAttributesPagesWithContext

func (c *CloudDirectory) ListTypedLinkFacetAttributesPagesWithContext(ctx aws.Context, input *ListTypedLinkFacetAttributesInput, fn func(*ListTypedLinkFacetAttributesOutput, bool) bool, opts ...request.Option) error

ListTypedLinkFacetAttributesPagesWithContext same as ListTypedLinkFacetAttributesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListTypedLinkFacetAttributesRequest

func (c *CloudDirectory) ListTypedLinkFacetAttributesRequest(input *ListTypedLinkFacetAttributesInput) (req *request.Request, output *ListTypedLinkFacetAttributesOutput)

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

See ListTypedLinkFacetAttributes 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 ListTypedLinkFacetAttributes 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 ListTypedLinkFacetAttributesRequest method.
req, resp := client.ListTypedLinkFacetAttributesRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListTypedLinkFacetAttributes

func (*CloudDirectory) ListTypedLinkFacetAttributesWithContext

func (c *CloudDirectory) ListTypedLinkFacetAttributesWithContext(ctx aws.Context, input *ListTypedLinkFacetAttributesInput, opts ...request.Option) (*ListTypedLinkFacetAttributesOutput, error)

ListTypedLinkFacetAttributesWithContext is the same as ListTypedLinkFacetAttributes with the addition of the ability to pass a context and additional request options.

See ListTypedLinkFacetAttributes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListTypedLinkFacetNames

func (c *CloudDirectory) ListTypedLinkFacetNames(input *ListTypedLinkFacetNamesInput) (*ListTypedLinkFacetNamesOutput, error)

ListTypedLinkFacetNames API operation for Amazon CloudDirectory.

Returns a paginated list of TypedLink facet names for a particular schema. For more information, see Typed link (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink).

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 CloudDirectory's API operation ListTypedLinkFacetNames for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListTypedLinkFacetNames

func (*CloudDirectory) ListTypedLinkFacetNamesPages

func (c *CloudDirectory) ListTypedLinkFacetNamesPages(input *ListTypedLinkFacetNamesInput, fn func(*ListTypedLinkFacetNamesOutput, bool) bool) error

ListTypedLinkFacetNamesPages iterates over the pages of a ListTypedLinkFacetNames operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListTypedLinkFacetNames method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListTypedLinkFacetNames operation.
pageNum := 0
err := client.ListTypedLinkFacetNamesPages(params,
    func(page *ListTypedLinkFacetNamesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) ListTypedLinkFacetNamesPagesWithContext

func (c *CloudDirectory) ListTypedLinkFacetNamesPagesWithContext(ctx aws.Context, input *ListTypedLinkFacetNamesInput, fn func(*ListTypedLinkFacetNamesOutput, bool) bool, opts ...request.Option) error

ListTypedLinkFacetNamesPagesWithContext same as ListTypedLinkFacetNamesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) ListTypedLinkFacetNamesRequest

func (c *CloudDirectory) ListTypedLinkFacetNamesRequest(input *ListTypedLinkFacetNamesInput) (req *request.Request, output *ListTypedLinkFacetNamesOutput)

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

See ListTypedLinkFacetNames 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 ListTypedLinkFacetNames 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 ListTypedLinkFacetNamesRequest method.
req, resp := client.ListTypedLinkFacetNamesRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListTypedLinkFacetNames

func (*CloudDirectory) ListTypedLinkFacetNamesWithContext

func (c *CloudDirectory) ListTypedLinkFacetNamesWithContext(ctx aws.Context, input *ListTypedLinkFacetNamesInput, opts ...request.Option) (*ListTypedLinkFacetNamesOutput, error)

ListTypedLinkFacetNamesWithContext is the same as ListTypedLinkFacetNames with the addition of the ability to pass a context and additional request options.

See ListTypedLinkFacetNames for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) LookupPolicy

func (c *CloudDirectory) LookupPolicy(input *LookupPolicyInput) (*LookupPolicyOutput, error)

LookupPolicy API operation for Amazon CloudDirectory.

Lists all policies from the root of the Directory to the object specified. If there are no policies present, an empty list is returned. If policies are present, and if some objects don't have the policies attached, it returns the ObjectIdentifier for such objects. If policies are present, it returns ObjectIdentifier, policyId, and policyType. Paths that don't lead to the root from the target object are ignored. For more information, see Policies (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#policies).

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 CloudDirectory's API operation LookupPolicy for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeInvalidNextTokenException "InvalidNextTokenException"
Indicates that the NextToken value is not valid.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/LookupPolicy

func (*CloudDirectory) LookupPolicyPages

func (c *CloudDirectory) LookupPolicyPages(input *LookupPolicyInput, fn func(*LookupPolicyOutput, bool) bool) error

LookupPolicyPages iterates over the pages of a LookupPolicy operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See LookupPolicy method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a LookupPolicy operation.
pageNum := 0
err := client.LookupPolicyPages(params,
    func(page *LookupPolicyOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CloudDirectory) LookupPolicyPagesWithContext

func (c *CloudDirectory) LookupPolicyPagesWithContext(ctx aws.Context, input *LookupPolicyInput, fn func(*LookupPolicyOutput, bool) bool, opts ...request.Option) error

LookupPolicyPagesWithContext same as LookupPolicyPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) LookupPolicyRequest

func (c *CloudDirectory) LookupPolicyRequest(input *LookupPolicyInput) (req *request.Request, output *LookupPolicyOutput)

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

See LookupPolicy 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 LookupPolicy 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 LookupPolicyRequest method.
req, resp := client.LookupPolicyRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/LookupPolicy

func (*CloudDirectory) LookupPolicyWithContext

func (c *CloudDirectory) LookupPolicyWithContext(ctx aws.Context, input *LookupPolicyInput, opts ...request.Option) (*LookupPolicyOutput, error)

LookupPolicyWithContext is the same as LookupPolicy with the addition of the ability to pass a context and additional request options.

See LookupPolicy for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) PublishSchema

func (c *CloudDirectory) PublishSchema(input *PublishSchemaInput) (*PublishSchemaOutput, error)

PublishSchema API operation for Amazon CloudDirectory.

Publishes a development schema with a version. If description and attributes are specified, PublishSchema overrides the development schema description and attributes. If not, the development schema description and attributes are used.

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 CloudDirectory's API operation PublishSchema for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeSchemaAlreadyPublishedException "SchemaAlreadyPublishedException"
Indicates that a schema is already published.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/PublishSchema

func (*CloudDirectory) PublishSchemaRequest

func (c *CloudDirectory) PublishSchemaRequest(input *PublishSchemaInput) (req *request.Request, output *PublishSchemaOutput)

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

See PublishSchema 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 PublishSchema 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 PublishSchemaRequest method.
req, resp := client.PublishSchemaRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/PublishSchema

func (*CloudDirectory) PublishSchemaWithContext

func (c *CloudDirectory) PublishSchemaWithContext(ctx aws.Context, input *PublishSchemaInput, opts ...request.Option) (*PublishSchemaOutput, error)

PublishSchemaWithContext is the same as PublishSchema with the addition of the ability to pass a context and additional request options.

See PublishSchema for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) PutSchemaFromJson

func (c *CloudDirectory) PutSchemaFromJson(input *PutSchemaFromJsonInput) (*PutSchemaFromJsonOutput, error)

PutSchemaFromJson API operation for Amazon CloudDirectory.

Allows a schema to be updated using JSON upload. Only available for development schemas. See JSON Schema Format (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_schemas.html#jsonformat) for more information.

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 CloudDirectory's API operation PutSchemaFromJson for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeInvalidSchemaDocException "InvalidSchemaDocException"
Indicates that the provided SchemaDoc value is not valid.

* ErrCodeInvalidRuleException "InvalidRuleException"
Occurs when any of the rule parameter keys or values are invalid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/PutSchemaFromJson

func (*CloudDirectory) PutSchemaFromJsonRequest

func (c *CloudDirectory) PutSchemaFromJsonRequest(input *PutSchemaFromJsonInput) (req *request.Request, output *PutSchemaFromJsonOutput)

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

See PutSchemaFromJson 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 PutSchemaFromJson 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 PutSchemaFromJsonRequest method.
req, resp := client.PutSchemaFromJsonRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/PutSchemaFromJson

func (*CloudDirectory) PutSchemaFromJsonWithContext

func (c *CloudDirectory) PutSchemaFromJsonWithContext(ctx aws.Context, input *PutSchemaFromJsonInput, opts ...request.Option) (*PutSchemaFromJsonOutput, error)

PutSchemaFromJsonWithContext is the same as PutSchemaFromJson with the addition of the ability to pass a context and additional request options.

See PutSchemaFromJson for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) RemoveFacetFromObject

func (c *CloudDirectory) RemoveFacetFromObject(input *RemoveFacetFromObjectInput) (*RemoveFacetFromObjectOutput, error)

RemoveFacetFromObject API operation for Amazon CloudDirectory.

Removes the specified facet from the specified object.

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 CloudDirectory's API operation RemoveFacetFromObject for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetValidationException "FacetValidationException"
The Facet that you provided was not well formed or could not be validated
with the schema.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/RemoveFacetFromObject

func (*CloudDirectory) RemoveFacetFromObjectRequest

func (c *CloudDirectory) RemoveFacetFromObjectRequest(input *RemoveFacetFromObjectInput) (req *request.Request, output *RemoveFacetFromObjectOutput)

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

See RemoveFacetFromObject 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 RemoveFacetFromObject 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 RemoveFacetFromObjectRequest method.
req, resp := client.RemoveFacetFromObjectRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/RemoveFacetFromObject

func (*CloudDirectory) RemoveFacetFromObjectWithContext

func (c *CloudDirectory) RemoveFacetFromObjectWithContext(ctx aws.Context, input *RemoveFacetFromObjectInput, opts ...request.Option) (*RemoveFacetFromObjectOutput, error)

RemoveFacetFromObjectWithContext is the same as RemoveFacetFromObject with the addition of the ability to pass a context and additional request options.

See RemoveFacetFromObject for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) TagResource

func (c *CloudDirectory) TagResource(input *TagResourceInput) (*TagResourceOutput, error)

TagResource API operation for Amazon CloudDirectory.

An API operation for adding tags to a 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 CloudDirectory's API operation TagResource for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidTaggingRequestException "InvalidTaggingRequestException"
Can occur for multiple reasons such as when you tag a resource that doesn’t
exist or if you specify a higher number of tags for a resource than the allowed
limit. Allowed limit is 50 tags per resource.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/TagResource

func (*CloudDirectory) TagResourceRequest

func (c *CloudDirectory) TagResourceRequest(input *TagResourceInput) (req *request.Request, output *TagResourceOutput)

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

See TagResource 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 TagResource 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 TagResourceRequest method.
req, resp := client.TagResourceRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/TagResource

func (*CloudDirectory) TagResourceWithContext

func (c *CloudDirectory) TagResourceWithContext(ctx aws.Context, input *TagResourceInput, opts ...request.Option) (*TagResourceOutput, error)

TagResourceWithContext is the same as TagResource with the addition of the ability to pass a context and additional request options.

See TagResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) UntagResource

func (c *CloudDirectory) UntagResource(input *UntagResourceInput) (*UntagResourceOutput, error)

UntagResource API operation for Amazon CloudDirectory.

An API operation for removing tags from a 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 CloudDirectory's API operation UntagResource for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeInvalidTaggingRequestException "InvalidTaggingRequestException"
Can occur for multiple reasons such as when you tag a resource that doesn’t
exist or if you specify a higher number of tags for a resource than the allowed
limit. Allowed limit is 50 tags per resource.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UntagResource

func (*CloudDirectory) UntagResourceRequest

func (c *CloudDirectory) UntagResourceRequest(input *UntagResourceInput) (req *request.Request, output *UntagResourceOutput)

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

See UntagResource 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 UntagResource 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 UntagResourceRequest method.
req, resp := client.UntagResourceRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UntagResource

func (*CloudDirectory) UntagResourceWithContext

func (c *CloudDirectory) UntagResourceWithContext(ctx aws.Context, input *UntagResourceInput, opts ...request.Option) (*UntagResourceOutput, error)

UntagResourceWithContext is the same as UntagResource with the addition of the ability to pass a context and additional request options.

See UntagResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) UpdateFacet

func (c *CloudDirectory) UpdateFacet(input *UpdateFacetInput) (*UpdateFacetOutput, error)

UpdateFacet API operation for Amazon CloudDirectory.

Does the following:

Adds new Attributes, Rules, or ObjectTypes.

Updates existing Attributes, Rules, or ObjectTypes.

Deletes existing Attributes, Rules, or ObjectTypes.

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 CloudDirectory's API operation UpdateFacet for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeInvalidFacetUpdateException "InvalidFacetUpdateException"
An attempt to modify a Facet resulted in an invalid schema exception.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetNotFoundException "FacetNotFoundException"
The specified Facet could not be found.

* ErrCodeInvalidRuleException "InvalidRuleException"
Occurs when any of the rule parameter keys or values are invalid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateFacet

func (*CloudDirectory) UpdateFacetRequest

func (c *CloudDirectory) UpdateFacetRequest(input *UpdateFacetInput) (req *request.Request, output *UpdateFacetOutput)

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

See UpdateFacet 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 UpdateFacet 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 UpdateFacetRequest method.
req, resp := client.UpdateFacetRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateFacet

func (*CloudDirectory) UpdateFacetWithContext

func (c *CloudDirectory) UpdateFacetWithContext(ctx aws.Context, input *UpdateFacetInput, opts ...request.Option) (*UpdateFacetOutput, error)

UpdateFacetWithContext is the same as UpdateFacet with the addition of the ability to pass a context and additional request options.

See UpdateFacet for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) UpdateObjectAttributes

func (c *CloudDirectory) UpdateObjectAttributes(input *UpdateObjectAttributesInput) (*UpdateObjectAttributesOutput, error)

UpdateObjectAttributes API operation for Amazon CloudDirectory.

Updates a given object's attributes.

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 CloudDirectory's API operation UpdateObjectAttributes for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeDirectoryNotEnabledException "DirectoryNotEnabledException"
An operation can only operate on a directory that is not enabled.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetValidationException "FacetValidationException"
The Facet that you provided was not well formed or could not be validated
with the schema.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateObjectAttributes

func (*CloudDirectory) UpdateObjectAttributesRequest

func (c *CloudDirectory) UpdateObjectAttributesRequest(input *UpdateObjectAttributesInput) (req *request.Request, output *UpdateObjectAttributesOutput)

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

See UpdateObjectAttributes 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 UpdateObjectAttributes 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 UpdateObjectAttributesRequest method.
req, resp := client.UpdateObjectAttributesRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateObjectAttributes

func (*CloudDirectory) UpdateObjectAttributesWithContext

func (c *CloudDirectory) UpdateObjectAttributesWithContext(ctx aws.Context, input *UpdateObjectAttributesInput, opts ...request.Option) (*UpdateObjectAttributesOutput, error)

UpdateObjectAttributesWithContext is the same as UpdateObjectAttributes with the addition of the ability to pass a context and additional request options.

See UpdateObjectAttributes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) UpdateSchema

func (c *CloudDirectory) UpdateSchema(input *UpdateSchemaInput) (*UpdateSchemaOutput, error)

UpdateSchema API operation for Amazon CloudDirectory.

Updates the schema name with a new name. Only development schema names can be updated.

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 CloudDirectory's API operation UpdateSchema for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateSchema

func (*CloudDirectory) UpdateSchemaRequest

func (c *CloudDirectory) UpdateSchemaRequest(input *UpdateSchemaInput) (req *request.Request, output *UpdateSchemaOutput)

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

See UpdateSchema 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 UpdateSchema 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 UpdateSchemaRequest method.
req, resp := client.UpdateSchemaRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateSchema

func (*CloudDirectory) UpdateSchemaWithContext

func (c *CloudDirectory) UpdateSchemaWithContext(ctx aws.Context, input *UpdateSchemaInput, opts ...request.Option) (*UpdateSchemaOutput, error)

UpdateSchemaWithContext is the same as UpdateSchema with the addition of the ability to pass a context and additional request options.

See UpdateSchema for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CloudDirectory) UpdateTypedLinkFacet

func (c *CloudDirectory) UpdateTypedLinkFacet(input *UpdateTypedLinkFacetInput) (*UpdateTypedLinkFacetOutput, error)

UpdateTypedLinkFacet API operation for Amazon CloudDirectory.

Updates a TypedLinkFacet. For more information, see Typed link (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink).

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 CloudDirectory's API operation UpdateTypedLinkFacet for usage and error information.

Returned Error Codes:

* ErrCodeInternalServiceException "InternalServiceException"
Indicates a problem that must be resolved by Amazon Web Services. This might
be a transient error in which case you can retry your request until it succeeds.
Otherwise, go to the AWS Service Health Dashboard (http://status.aws.amazon.com/)
site to see if there are any operational issues with the service.

* ErrCodeInvalidArnException "InvalidArnException"
Indicates that the provided ARN value is not valid.

* ErrCodeRetryableConflictException "RetryableConflictException"
Occurs when a conflict with a previous successful write is detected. For
example, if a write operation occurs on an object and then an attempt is
made to read the object using “SERIALIZABLE” consistency, this exception
may result. This generally occurs when the previous write did not have time
to propagate to the host serving the current request. A retry (with appropriate
backoff logic) is the recommended response to this exception.

* ErrCodeValidationException "ValidationException"
Indicates that your request is malformed in some manner. See the exception
message.

* ErrCodeLimitExceededException "LimitExceededException"
Indicates that limits are exceeded. See Limits (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html)
for more information.

* ErrCodeAccessDeniedException "AccessDeniedException"
Access denied. Check your permissions.

* ErrCodeFacetValidationException "FacetValidationException"
The Facet that you provided was not well formed or could not be validated
with the schema.

* ErrCodeInvalidFacetUpdateException "InvalidFacetUpdateException"
An attempt to modify a Facet resulted in an invalid schema exception.

* ErrCodeResourceNotFoundException "ResourceNotFoundException"
The specified resource could not be found.

* ErrCodeFacetNotFoundException "FacetNotFoundException"
The specified Facet could not be found.

* ErrCodeInvalidRuleException "InvalidRuleException"
Occurs when any of the rule parameter keys or values are invalid.

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateTypedLinkFacet

func (*CloudDirectory) UpdateTypedLinkFacetRequest

func (c *CloudDirectory) UpdateTypedLinkFacetRequest(input *UpdateTypedLinkFacetInput) (req *request.Request, output *UpdateTypedLinkFacetOutput)

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

See UpdateTypedLinkFacet 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 UpdateTypedLinkFacet 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 UpdateTypedLinkFacetRequest method.
req, resp := client.UpdateTypedLinkFacetRequest(params)

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateTypedLinkFacet

func (*CloudDirectory) UpdateTypedLinkFacetWithContext

func (c *CloudDirectory) UpdateTypedLinkFacetWithContext(ctx aws.Context, input *UpdateTypedLinkFacetInput, opts ...request.Option) (*UpdateTypedLinkFacetOutput, error)

UpdateTypedLinkFacetWithContext is the same as UpdateTypedLinkFacet with the addition of the ability to pass a context and additional request options.

See UpdateTypedLinkFacet for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

type CreateDirectoryInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateDirectoryRequest

type CreateDirectoryInput struct {

    // The name of the Directory. Should be unique per account, per region.
    //
    // Name is a required field
    Name *string `min:"1" type:"string" required:"true"`

    // The Amazon Resource Name (ARN) of the published schema that will be copied
    // into the data Directory. For more information, see arns.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateDirectoryInput) GoString

func (s CreateDirectoryInput) GoString() string

GoString returns the string representation

func (*CreateDirectoryInput) SetName

func (s *CreateDirectoryInput) SetName(v string) *CreateDirectoryInput

SetName sets the Name field's value.

func (*CreateDirectoryInput) SetSchemaArn

func (s *CreateDirectoryInput) SetSchemaArn(v string) *CreateDirectoryInput

SetSchemaArn sets the SchemaArn field's value.

func (CreateDirectoryInput) String

func (s CreateDirectoryInput) String() string

String returns the string representation

func (*CreateDirectoryInput) Validate

func (s *CreateDirectoryInput) Validate() error

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

type CreateDirectoryOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateDirectoryResponse

type CreateDirectoryOutput struct {

    // The ARN of the published schema in the Directory. Once a published schema
    // is copied into the directory, it has its own ARN, which is referred to applied
    // schema ARN. For more information, see arns.
    //
    // AppliedSchemaArn is a required field
    AppliedSchemaArn *string `type:"string" required:"true"`

    // The ARN that is associated with the Directory. For more information, see
    // arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `type:"string" required:"true"`

    // The name of the Directory.
    //
    // Name is a required field
    Name *string `min:"1" type:"string" required:"true"`

    // The root object node of the created directory.
    //
    // ObjectIdentifier is a required field
    ObjectIdentifier *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateDirectoryOutput) GoString

func (s CreateDirectoryOutput) GoString() string

GoString returns the string representation

func (*CreateDirectoryOutput) SetAppliedSchemaArn

func (s *CreateDirectoryOutput) SetAppliedSchemaArn(v string) *CreateDirectoryOutput

SetAppliedSchemaArn sets the AppliedSchemaArn field's value.

func (*CreateDirectoryOutput) SetDirectoryArn

func (s *CreateDirectoryOutput) SetDirectoryArn(v string) *CreateDirectoryOutput

SetDirectoryArn sets the DirectoryArn field's value.

func (*CreateDirectoryOutput) SetName

func (s *CreateDirectoryOutput) SetName(v string) *CreateDirectoryOutput

SetName sets the Name field's value.

func (*CreateDirectoryOutput) SetObjectIdentifier

func (s *CreateDirectoryOutput) SetObjectIdentifier(v string) *CreateDirectoryOutput

SetObjectIdentifier sets the ObjectIdentifier field's value.

func (CreateDirectoryOutput) String

func (s CreateDirectoryOutput) String() string

String returns the string representation

type CreateFacetInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateFacetRequest

type CreateFacetInput struct {

    // The attributes that are associated with the Facet.
    Attributes []*FacetAttribute `type:"list"`

    // The name of the Facet, which is unique for a given schema.
    //
    // Name is a required field
    Name *string `min:"1" type:"string" required:"true"`

    // Specifies whether a given object created from this facet is of type node,
    // leaf node, policy or index.
    //
    //    * Node: Can have multiple children but one parent.
    //
    //    * Leaf node: Cannot have children but can have multiple parents.
    //
    //    * Policy: Allows you to store a policy document and policy type. For more
    //    information, see Policies (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#policies).
    //
    //    * Index: Can be created with the Index API.
    //
    // ObjectType is a required field
    ObjectType *string `type:"string" required:"true" enum:"ObjectType"`

    // The schema ARN in which the new Facet will be created. For more information,
    // see arns.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateFacetInput) GoString

func (s CreateFacetInput) GoString() string

GoString returns the string representation

func (*CreateFacetInput) SetAttributes

func (s *CreateFacetInput) SetAttributes(v []*FacetAttribute) *CreateFacetInput

SetAttributes sets the Attributes field's value.

func (*CreateFacetInput) SetName

func (s *CreateFacetInput) SetName(v string) *CreateFacetInput

SetName sets the Name field's value.

func (*CreateFacetInput) SetObjectType

func (s *CreateFacetInput) SetObjectType(v string) *CreateFacetInput

SetObjectType sets the ObjectType field's value.

func (*CreateFacetInput) SetSchemaArn

func (s *CreateFacetInput) SetSchemaArn(v string) *CreateFacetInput

SetSchemaArn sets the SchemaArn field's value.

func (CreateFacetInput) String

func (s CreateFacetInput) String() string

String returns the string representation

func (*CreateFacetInput) Validate

func (s *CreateFacetInput) Validate() error

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

type CreateFacetOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateFacetResponse

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

func (CreateFacetOutput) GoString

func (s CreateFacetOutput) GoString() string

GoString returns the string representation

func (CreateFacetOutput) String

func (s CreateFacetOutput) String() string

String returns the string representation

type CreateIndexInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateIndexRequest

type CreateIndexInput struct {

    // The ARN of the directory where the index should be created.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // Indicates whether the attribute that is being indexed has unique values or
    // not.
    //
    // IsUnique is a required field
    IsUnique *bool `type:"boolean" required:"true"`

    // The name of the link between the parent object and the index object.
    LinkName *string `min:"1" type:"string"`

    // Specifies the attributes that should be indexed on. Currently only a single
    // attribute is supported.
    //
    // OrderedIndexedAttributeList is a required field
    OrderedIndexedAttributeList []*AttributeKey `type:"list" required:"true"`

    // A reference to the parent object that contains the index object.
    ParentReference *ObjectReference `type:"structure"`
    // contains filtered or unexported fields
}

func (CreateIndexInput) GoString

func (s CreateIndexInput) GoString() string

GoString returns the string representation

func (*CreateIndexInput) SetDirectoryArn

func (s *CreateIndexInput) SetDirectoryArn(v string) *CreateIndexInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*CreateIndexInput) SetIsUnique

func (s *CreateIndexInput) SetIsUnique(v bool) *CreateIndexInput

SetIsUnique sets the IsUnique field's value.

func (*CreateIndexInput) SetLinkName

func (s *CreateIndexInput) SetLinkName(v string) *CreateIndexInput

SetLinkName sets the LinkName field's value.

func (*CreateIndexInput) SetOrderedIndexedAttributeList

func (s *CreateIndexInput) SetOrderedIndexedAttributeList(v []*AttributeKey) *CreateIndexInput

SetOrderedIndexedAttributeList sets the OrderedIndexedAttributeList field's value.

func (*CreateIndexInput) SetParentReference

func (s *CreateIndexInput) SetParentReference(v *ObjectReference) *CreateIndexInput

SetParentReference sets the ParentReference field's value.

func (CreateIndexInput) String

func (s CreateIndexInput) String() string

String returns the string representation

func (*CreateIndexInput) Validate

func (s *CreateIndexInput) Validate() error

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

type CreateIndexOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateIndexResponse

type CreateIndexOutput struct {

    // The ObjectIdentifier of the index created by this operation.
    ObjectIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (CreateIndexOutput) GoString

func (s CreateIndexOutput) GoString() string

GoString returns the string representation

func (*CreateIndexOutput) SetObjectIdentifier

func (s *CreateIndexOutput) SetObjectIdentifier(v string) *CreateIndexOutput

SetObjectIdentifier sets the ObjectIdentifier field's value.

func (CreateIndexOutput) String

func (s CreateIndexOutput) String() string

String returns the string representation

type CreateObjectInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateObjectRequest

type CreateObjectInput struct {

    // The Amazon Resource Name (ARN) that is associated with the Directory in which
    // the object will be created. For more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // The name of link that is used to attach this object to a parent.
    LinkName *string `min:"1" type:"string"`

    // The attribute map whose attribute ARN contains the key and attribute value
    // as the map value.
    ObjectAttributeList []*AttributeKeyAndValue `type:"list"`

    // If specified, the parent reference to which this object will be attached.
    ParentReference *ObjectReference `type:"structure"`

    // A list of schema facets to be associated with the object that contains SchemaArn
    // and facet name. For more information, see arns.
    //
    // SchemaFacets is a required field
    SchemaFacets []*SchemaFacet `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (CreateObjectInput) GoString

func (s CreateObjectInput) GoString() string

GoString returns the string representation

func (*CreateObjectInput) SetDirectoryArn

func (s *CreateObjectInput) SetDirectoryArn(v string) *CreateObjectInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*CreateObjectInput) SetLinkName

func (s *CreateObjectInput) SetLinkName(v string) *CreateObjectInput

SetLinkName sets the LinkName field's value.

func (*CreateObjectInput) SetObjectAttributeList

func (s *CreateObjectInput) SetObjectAttributeList(v []*AttributeKeyAndValue) *CreateObjectInput

SetObjectAttributeList sets the ObjectAttributeList field's value.

func (*CreateObjectInput) SetParentReference

func (s *CreateObjectInput) SetParentReference(v *ObjectReference) *CreateObjectInput

SetParentReference sets the ParentReference field's value.

func (*CreateObjectInput) SetSchemaFacets

func (s *CreateObjectInput) SetSchemaFacets(v []*SchemaFacet) *CreateObjectInput

SetSchemaFacets sets the SchemaFacets field's value.

func (CreateObjectInput) String

func (s CreateObjectInput) String() string

String returns the string representation

func (*CreateObjectInput) Validate

func (s *CreateObjectInput) Validate() error

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

type CreateObjectOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateObjectResponse

type CreateObjectOutput struct {

    // The identifier that is associated with the object.
    ObjectIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (CreateObjectOutput) GoString

func (s CreateObjectOutput) GoString() string

GoString returns the string representation

func (*CreateObjectOutput) SetObjectIdentifier

func (s *CreateObjectOutput) SetObjectIdentifier(v string) *CreateObjectOutput

SetObjectIdentifier sets the ObjectIdentifier field's value.

func (CreateObjectOutput) String

func (s CreateObjectOutput) String() string

String returns the string representation

type CreateSchemaInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateSchemaRequest

type CreateSchemaInput struct {

    // The name that is associated with the schema. This is unique to each account
    // and in each region.
    //
    // Name is a required field
    Name *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateSchemaInput) GoString

func (s CreateSchemaInput) GoString() string

GoString returns the string representation

func (*CreateSchemaInput) SetName

func (s *CreateSchemaInput) SetName(v string) *CreateSchemaInput

SetName sets the Name field's value.

func (CreateSchemaInput) String

func (s CreateSchemaInput) String() string

String returns the string representation

func (*CreateSchemaInput) Validate

func (s *CreateSchemaInput) Validate() error

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

type CreateSchemaOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateSchemaResponse

type CreateSchemaOutput struct {

    // The Amazon Resource Name (ARN) that is associated with the schema. For more
    // information, see arns.
    SchemaArn *string `type:"string"`
    // contains filtered or unexported fields
}

func (CreateSchemaOutput) GoString

func (s CreateSchemaOutput) GoString() string

GoString returns the string representation

func (*CreateSchemaOutput) SetSchemaArn

func (s *CreateSchemaOutput) SetSchemaArn(v string) *CreateSchemaOutput

SetSchemaArn sets the SchemaArn field's value.

func (CreateSchemaOutput) String

func (s CreateSchemaOutput) String() string

String returns the string representation

type CreateTypedLinkFacetInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateTypedLinkFacetRequest

type CreateTypedLinkFacetInput struct {

    // Facet structure that is associated with the typed link facet.
    //
    // Facet is a required field
    Facet *TypedLinkFacet `type:"structure" required:"true"`

    // The Amazon Resource Name (ARN) that is associated with the schema. For more
    // information, see arns.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateTypedLinkFacetInput) GoString

func (s CreateTypedLinkFacetInput) GoString() string

GoString returns the string representation

func (*CreateTypedLinkFacetInput) SetFacet

func (s *CreateTypedLinkFacetInput) SetFacet(v *TypedLinkFacet) *CreateTypedLinkFacetInput

SetFacet sets the Facet field's value.

func (*CreateTypedLinkFacetInput) SetSchemaArn

func (s *CreateTypedLinkFacetInput) SetSchemaArn(v string) *CreateTypedLinkFacetInput

SetSchemaArn sets the SchemaArn field's value.

func (CreateTypedLinkFacetInput) String

func (s CreateTypedLinkFacetInput) String() string

String returns the string representation

func (*CreateTypedLinkFacetInput) Validate

func (s *CreateTypedLinkFacetInput) Validate() error

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

type CreateTypedLinkFacetOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/CreateTypedLinkFacetResponse

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

func (CreateTypedLinkFacetOutput) GoString

func (s CreateTypedLinkFacetOutput) GoString() string

GoString returns the string representation

func (CreateTypedLinkFacetOutput) String

func (s CreateTypedLinkFacetOutput) String() string

String returns the string representation

type DeleteDirectoryInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteDirectoryRequest

type DeleteDirectoryInput struct {

    // The ARN of the directory to delete.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteDirectoryInput) GoString

func (s DeleteDirectoryInput) GoString() string

GoString returns the string representation

func (*DeleteDirectoryInput) SetDirectoryArn

func (s *DeleteDirectoryInput) SetDirectoryArn(v string) *DeleteDirectoryInput

SetDirectoryArn sets the DirectoryArn field's value.

func (DeleteDirectoryInput) String

func (s DeleteDirectoryInput) String() string

String returns the string representation

func (*DeleteDirectoryInput) Validate

func (s *DeleteDirectoryInput) Validate() error

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

type DeleteDirectoryOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteDirectoryResponse

type DeleteDirectoryOutput struct {

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

func (DeleteDirectoryOutput) GoString

func (s DeleteDirectoryOutput) GoString() string

GoString returns the string representation

func (*DeleteDirectoryOutput) SetDirectoryArn

func (s *DeleteDirectoryOutput) SetDirectoryArn(v string) *DeleteDirectoryOutput

SetDirectoryArn sets the DirectoryArn field's value.

func (DeleteDirectoryOutput) String

func (s DeleteDirectoryOutput) String() string

String returns the string representation

type DeleteFacetInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteFacetRequest

type DeleteFacetInput struct {

    // The name of the facet to delete.
    //
    // Name is a required field
    Name *string `min:"1" type:"string" required:"true"`

    // The Amazon Resource Name (ARN) that is associated with the Facet. For more
    // information, see arns.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteFacetInput) GoString

func (s DeleteFacetInput) GoString() string

GoString returns the string representation

func (*DeleteFacetInput) SetName

func (s *DeleteFacetInput) SetName(v string) *DeleteFacetInput

SetName sets the Name field's value.

func (*DeleteFacetInput) SetSchemaArn

func (s *DeleteFacetInput) SetSchemaArn(v string) *DeleteFacetInput

SetSchemaArn sets the SchemaArn field's value.

func (DeleteFacetInput) String

func (s DeleteFacetInput) String() string

String returns the string representation

func (*DeleteFacetInput) Validate

func (s *DeleteFacetInput) Validate() error

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

type DeleteFacetOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteFacetResponse

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

func (DeleteFacetOutput) GoString

func (s DeleteFacetOutput) GoString() string

GoString returns the string representation

func (DeleteFacetOutput) String

func (s DeleteFacetOutput) String() string

String returns the string representation

type DeleteObjectInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteObjectRequest

type DeleteObjectInput struct {

    // The Amazon Resource Name (ARN) that is associated with the Directory where
    // the object resides. For more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // A reference that identifies the object.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteObjectInput) GoString

func (s DeleteObjectInput) GoString() string

GoString returns the string representation

func (*DeleteObjectInput) SetDirectoryArn

func (s *DeleteObjectInput) SetDirectoryArn(v string) *DeleteObjectInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*DeleteObjectInput) SetObjectReference

func (s *DeleteObjectInput) SetObjectReference(v *ObjectReference) *DeleteObjectInput

SetObjectReference sets the ObjectReference field's value.

func (DeleteObjectInput) String

func (s DeleteObjectInput) String() string

String returns the string representation

func (*DeleteObjectInput) Validate

func (s *DeleteObjectInput) Validate() error

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

type DeleteObjectOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteObjectResponse

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

func (DeleteObjectOutput) GoString

func (s DeleteObjectOutput) GoString() string

GoString returns the string representation

func (DeleteObjectOutput) String

func (s DeleteObjectOutput) String() string

String returns the string representation

type DeleteSchemaInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteSchemaRequest

type DeleteSchemaInput struct {

    // The Amazon Resource Name (ARN) of the development schema. For more information,
    // see arns.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteSchemaInput) GoString

func (s DeleteSchemaInput) GoString() string

GoString returns the string representation

func (*DeleteSchemaInput) SetSchemaArn

func (s *DeleteSchemaInput) SetSchemaArn(v string) *DeleteSchemaInput

SetSchemaArn sets the SchemaArn field's value.

func (DeleteSchemaInput) String

func (s DeleteSchemaInput) String() string

String returns the string representation

func (*DeleteSchemaInput) Validate

func (s *DeleteSchemaInput) Validate() error

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

type DeleteSchemaOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteSchemaResponse

type DeleteSchemaOutput struct {

    // The input ARN that is returned as part of the response. For more information,
    // see arns.
    SchemaArn *string `type:"string"`
    // contains filtered or unexported fields
}

func (DeleteSchemaOutput) GoString

func (s DeleteSchemaOutput) GoString() string

GoString returns the string representation

func (*DeleteSchemaOutput) SetSchemaArn

func (s *DeleteSchemaOutput) SetSchemaArn(v string) *DeleteSchemaOutput

SetSchemaArn sets the SchemaArn field's value.

func (DeleteSchemaOutput) String

func (s DeleteSchemaOutput) String() string

String returns the string representation

type DeleteTypedLinkFacetInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteTypedLinkFacetRequest

type DeleteTypedLinkFacetInput struct {

    // The unique name of the typed link facet.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`

    // The Amazon Resource Name (ARN) that is associated with the schema. For more
    // information, see arns.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteTypedLinkFacetInput) GoString

func (s DeleteTypedLinkFacetInput) GoString() string

GoString returns the string representation

func (*DeleteTypedLinkFacetInput) SetName

func (s *DeleteTypedLinkFacetInput) SetName(v string) *DeleteTypedLinkFacetInput

SetName sets the Name field's value.

func (*DeleteTypedLinkFacetInput) SetSchemaArn

func (s *DeleteTypedLinkFacetInput) SetSchemaArn(v string) *DeleteTypedLinkFacetInput

SetSchemaArn sets the SchemaArn field's value.

func (DeleteTypedLinkFacetInput) String

func (s DeleteTypedLinkFacetInput) String() string

String returns the string representation

func (*DeleteTypedLinkFacetInput) Validate

func (s *DeleteTypedLinkFacetInput) Validate() error

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

type DeleteTypedLinkFacetOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DeleteTypedLinkFacetResponse

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

func (DeleteTypedLinkFacetOutput) GoString

func (s DeleteTypedLinkFacetOutput) GoString() string

GoString returns the string representation

func (DeleteTypedLinkFacetOutput) String

func (s DeleteTypedLinkFacetOutput) String() string

String returns the string representation

type DetachFromIndexInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachFromIndexRequest

type DetachFromIndexInput struct {

    // The Amazon Resource Name (ARN) of the directory the index and object exist
    // in.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // A reference to the index object.
    //
    // IndexReference is a required field
    IndexReference *ObjectReference `type:"structure" required:"true"`

    // A reference to the object being detached from the index.
    //
    // TargetReference is a required field
    TargetReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (DetachFromIndexInput) GoString

func (s DetachFromIndexInput) GoString() string

GoString returns the string representation

func (*DetachFromIndexInput) SetDirectoryArn

func (s *DetachFromIndexInput) SetDirectoryArn(v string) *DetachFromIndexInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*DetachFromIndexInput) SetIndexReference

func (s *DetachFromIndexInput) SetIndexReference(v *ObjectReference) *DetachFromIndexInput

SetIndexReference sets the IndexReference field's value.

func (*DetachFromIndexInput) SetTargetReference

func (s *DetachFromIndexInput) SetTargetReference(v *ObjectReference) *DetachFromIndexInput

SetTargetReference sets the TargetReference field's value.

func (DetachFromIndexInput) String

func (s DetachFromIndexInput) String() string

String returns the string representation

func (*DetachFromIndexInput) Validate

func (s *DetachFromIndexInput) Validate() error

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

type DetachFromIndexOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachFromIndexResponse

type DetachFromIndexOutput struct {

    // The ObjectIdentifier of the object that was detached from the index.
    DetachedObjectIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (DetachFromIndexOutput) GoString

func (s DetachFromIndexOutput) GoString() string

GoString returns the string representation

func (*DetachFromIndexOutput) SetDetachedObjectIdentifier

func (s *DetachFromIndexOutput) SetDetachedObjectIdentifier(v string) *DetachFromIndexOutput

SetDetachedObjectIdentifier sets the DetachedObjectIdentifier field's value.

func (DetachFromIndexOutput) String

func (s DetachFromIndexOutput) String() string

String returns the string representation

type DetachObjectInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachObjectRequest

type DetachObjectInput struct {

    // The Amazon Resource Name (ARN) that is associated with the Directory where
    // objects reside. For more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // The link name associated with the object that needs to be detached.
    //
    // LinkName is a required field
    LinkName *string `min:"1" type:"string" required:"true"`

    // The parent reference from which the object with the specified link name is
    // detached.
    //
    // ParentReference is a required field
    ParentReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (DetachObjectInput) GoString

func (s DetachObjectInput) GoString() string

GoString returns the string representation

func (*DetachObjectInput) SetDirectoryArn

func (s *DetachObjectInput) SetDirectoryArn(v string) *DetachObjectInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*DetachObjectInput) SetLinkName

func (s *DetachObjectInput) SetLinkName(v string) *DetachObjectInput

SetLinkName sets the LinkName field's value.

func (*DetachObjectInput) SetParentReference

func (s *DetachObjectInput) SetParentReference(v *ObjectReference) *DetachObjectInput

SetParentReference sets the ParentReference field's value.

func (DetachObjectInput) String

func (s DetachObjectInput) String() string

String returns the string representation

func (*DetachObjectInput) Validate

func (s *DetachObjectInput) Validate() error

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

type DetachObjectOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachObjectResponse

type DetachObjectOutput struct {

    // The ObjectIdentifier that was detached from the object.
    DetachedObjectIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (DetachObjectOutput) GoString

func (s DetachObjectOutput) GoString() string

GoString returns the string representation

func (*DetachObjectOutput) SetDetachedObjectIdentifier

func (s *DetachObjectOutput) SetDetachedObjectIdentifier(v string) *DetachObjectOutput

SetDetachedObjectIdentifier sets the DetachedObjectIdentifier field's value.

func (DetachObjectOutput) String

func (s DetachObjectOutput) String() string

String returns the string representation

type DetachPolicyInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachPolicyRequest

type DetachPolicyInput struct {

    // The Amazon Resource Name (ARN) that is associated with the Directory where
    // both objects reside. For more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // Reference that identifies the object whose policy object will be detached.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`

    // Reference that identifies the policy object.
    //
    // PolicyReference is a required field
    PolicyReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (DetachPolicyInput) GoString

func (s DetachPolicyInput) GoString() string

GoString returns the string representation

func (*DetachPolicyInput) SetDirectoryArn

func (s *DetachPolicyInput) SetDirectoryArn(v string) *DetachPolicyInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*DetachPolicyInput) SetObjectReference

func (s *DetachPolicyInput) SetObjectReference(v *ObjectReference) *DetachPolicyInput

SetObjectReference sets the ObjectReference field's value.

func (*DetachPolicyInput) SetPolicyReference

func (s *DetachPolicyInput) SetPolicyReference(v *ObjectReference) *DetachPolicyInput

SetPolicyReference sets the PolicyReference field's value.

func (DetachPolicyInput) String

func (s DetachPolicyInput) String() string

String returns the string representation

func (*DetachPolicyInput) Validate

func (s *DetachPolicyInput) Validate() error

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

type DetachPolicyOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachPolicyResponse

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

func (DetachPolicyOutput) GoString

func (s DetachPolicyOutput) GoString() string

GoString returns the string representation

func (DetachPolicyOutput) String

func (s DetachPolicyOutput) String() string

String returns the string representation

type DetachTypedLinkInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachTypedLinkRequest

type DetachTypedLinkInput struct {

    // The Amazon Resource Name (ARN) of the directory where you want to detach
    // the typed link.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // Used to accept a typed link specifier as input.
    //
    // TypedLinkSpecifier is a required field
    TypedLinkSpecifier *TypedLinkSpecifier `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (DetachTypedLinkInput) GoString

func (s DetachTypedLinkInput) GoString() string

GoString returns the string representation

func (*DetachTypedLinkInput) SetDirectoryArn

func (s *DetachTypedLinkInput) SetDirectoryArn(v string) *DetachTypedLinkInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*DetachTypedLinkInput) SetTypedLinkSpecifier

func (s *DetachTypedLinkInput) SetTypedLinkSpecifier(v *TypedLinkSpecifier) *DetachTypedLinkInput

SetTypedLinkSpecifier sets the TypedLinkSpecifier field's value.

func (DetachTypedLinkInput) String

func (s DetachTypedLinkInput) String() string

String returns the string representation

func (*DetachTypedLinkInput) Validate

func (s *DetachTypedLinkInput) Validate() error

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

type DetachTypedLinkOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DetachTypedLinkOutput

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

func (DetachTypedLinkOutput) GoString

func (s DetachTypedLinkOutput) GoString() string

GoString returns the string representation

func (DetachTypedLinkOutput) String

func (s DetachTypedLinkOutput) String() string

String returns the string representation

type Directory

Directory structure that includes the directory name and directory ARN. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/Directory

type Directory struct {

    // The date and time when the directory was created.
    CreationDateTime *time.Time `type:"timestamp" timestampFormat:"unix"`

    // The Amazon Resource Name (ARN) that is associated with the directory. For
    // more information, see arns.
    DirectoryArn *string `type:"string"`

    // The name of the directory.
    Name *string `min:"1" type:"string"`

    // The state of the directory. Can be either Enabled, Disabled, or Deleted.
    State *string `type:"string" enum:"DirectoryState"`
    // contains filtered or unexported fields
}

func (Directory) GoString

func (s Directory) GoString() string

GoString returns the string representation

func (*Directory) SetCreationDateTime

func (s *Directory) SetCreationDateTime(v time.Time) *Directory

SetCreationDateTime sets the CreationDateTime field's value.

func (*Directory) SetDirectoryArn

func (s *Directory) SetDirectoryArn(v string) *Directory

SetDirectoryArn sets the DirectoryArn field's value.

func (*Directory) SetName

func (s *Directory) SetName(v string) *Directory

SetName sets the Name field's value.

func (*Directory) SetState

func (s *Directory) SetState(v string) *Directory

SetState sets the State field's value.

func (Directory) String

func (s Directory) String() string

String returns the string representation

type DisableDirectoryInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DisableDirectoryRequest

type DisableDirectoryInput struct {

    // The ARN of the directory to disable.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DisableDirectoryInput) GoString

func (s DisableDirectoryInput) GoString() string

GoString returns the string representation

func (*DisableDirectoryInput) SetDirectoryArn

func (s *DisableDirectoryInput) SetDirectoryArn(v string) *DisableDirectoryInput

SetDirectoryArn sets the DirectoryArn field's value.

func (DisableDirectoryInput) String

func (s DisableDirectoryInput) String() string

String returns the string representation

func (*DisableDirectoryInput) Validate

func (s *DisableDirectoryInput) Validate() error

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

type DisableDirectoryOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/DisableDirectoryResponse

type DisableDirectoryOutput struct {

    // The ARN of the directory that has been disabled.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DisableDirectoryOutput) GoString

func (s DisableDirectoryOutput) GoString() string

GoString returns the string representation

func (*DisableDirectoryOutput) SetDirectoryArn

func (s *DisableDirectoryOutput) SetDirectoryArn(v string) *DisableDirectoryOutput

SetDirectoryArn sets the DirectoryArn field's value.

func (DisableDirectoryOutput) String

func (s DisableDirectoryOutput) String() string

String returns the string representation

type EnableDirectoryInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/EnableDirectoryRequest

type EnableDirectoryInput struct {

    // The ARN of the directory to enable.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (EnableDirectoryInput) GoString

func (s EnableDirectoryInput) GoString() string

GoString returns the string representation

func (*EnableDirectoryInput) SetDirectoryArn

func (s *EnableDirectoryInput) SetDirectoryArn(v string) *EnableDirectoryInput

SetDirectoryArn sets the DirectoryArn field's value.

func (EnableDirectoryInput) String

func (s EnableDirectoryInput) String() string

String returns the string representation

func (*EnableDirectoryInput) Validate

func (s *EnableDirectoryInput) Validate() error

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

type EnableDirectoryOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/EnableDirectoryResponse

type EnableDirectoryOutput struct {

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

func (EnableDirectoryOutput) GoString

func (s EnableDirectoryOutput) GoString() string

GoString returns the string representation

func (*EnableDirectoryOutput) SetDirectoryArn

func (s *EnableDirectoryOutput) SetDirectoryArn(v string) *EnableDirectoryOutput

SetDirectoryArn sets the DirectoryArn field's value.

func (EnableDirectoryOutput) String

func (s EnableDirectoryOutput) String() string

String returns the string representation

type Facet

A structure that contains Name, ARN, Attributes, Rules, and ObjectTypes. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/Facet

type Facet struct {

    // The name of the Facet.
    Name *string `min:"1" type:"string"`

    // The object type that is associated with the facet. See CreateFacetRequest$ObjectType
    // for more details.
    ObjectType *string `type:"string" enum:"ObjectType"`
    // contains filtered or unexported fields
}

func (Facet) GoString

func (s Facet) GoString() string

GoString returns the string representation

func (*Facet) SetName

func (s *Facet) SetName(v string) *Facet

SetName sets the Name field's value.

func (*Facet) SetObjectType

func (s *Facet) SetObjectType(v string) *Facet

SetObjectType sets the ObjectType field's value.

func (Facet) String

func (s Facet) String() string

String returns the string representation

type FacetAttribute

An attribute that is associated with the Facet. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/FacetAttribute

type FacetAttribute struct {

    // A facet attribute consists of either a definition or a reference. This structure
    // contains the attribute definition. See Attribute References (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#attributereferences)
    // for more information.
    AttributeDefinition *FacetAttributeDefinition `type:"structure"`

    // An attribute reference that is associated with the attribute. See Attribute
    // References (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#attributereferences)
    // for more information.
    AttributeReference *FacetAttributeReference `type:"structure"`

    // The name of the facet attribute.
    //
    // Name is a required field
    Name *string `min:"1" type:"string" required:"true"`

    // The required behavior of the FacetAttribute.
    RequiredBehavior *string `type:"string" enum:"RequiredAttributeBehavior"`
    // contains filtered or unexported fields
}

func (FacetAttribute) GoString

func (s FacetAttribute) GoString() string

GoString returns the string representation

func (*FacetAttribute) SetAttributeDefinition

func (s *FacetAttribute) SetAttributeDefinition(v *FacetAttributeDefinition) *FacetAttribute

SetAttributeDefinition sets the AttributeDefinition field's value.

func (*FacetAttribute) SetAttributeReference

func (s *FacetAttribute) SetAttributeReference(v *FacetAttributeReference) *FacetAttribute

SetAttributeReference sets the AttributeReference field's value.

func (*FacetAttribute) SetName

func (s *FacetAttribute) SetName(v string) *FacetAttribute

SetName sets the Name field's value.

func (*FacetAttribute) SetRequiredBehavior

func (s *FacetAttribute) SetRequiredBehavior(v string) *FacetAttribute

SetRequiredBehavior sets the RequiredBehavior field's value.

func (FacetAttribute) String

func (s FacetAttribute) String() string

String returns the string representation

func (*FacetAttribute) Validate

func (s *FacetAttribute) Validate() error

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

type FacetAttributeDefinition

A facet attribute definition. See Attribute References (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#attributereferences) for more information. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/FacetAttributeDefinition

type FacetAttributeDefinition struct {

    // The default value of the attribute (if configured).
    DefaultValue *TypedAttributeValue `type:"structure"`

    // Whether the attribute is mutable or not.
    IsImmutable *bool `type:"boolean"`

    // Validation rules attached to the attribute definition.
    Rules map[string]*Rule `type:"map"`

    // The type of the attribute.
    //
    // Type is a required field
    Type *string `type:"string" required:"true" enum:"FacetAttributeType"`
    // contains filtered or unexported fields
}

func (FacetAttributeDefinition) GoString

func (s FacetAttributeDefinition) GoString() string

GoString returns the string representation

func (*FacetAttributeDefinition) SetDefaultValue

func (s *FacetAttributeDefinition) SetDefaultValue(v *TypedAttributeValue) *FacetAttributeDefinition

SetDefaultValue sets the DefaultValue field's value.

func (*FacetAttributeDefinition) SetIsImmutable

func (s *FacetAttributeDefinition) SetIsImmutable(v bool) *FacetAttributeDefinition

SetIsImmutable sets the IsImmutable field's value.

func (*FacetAttributeDefinition) SetRules

func (s *FacetAttributeDefinition) SetRules(v map[string]*Rule) *FacetAttributeDefinition

SetRules sets the Rules field's value.

func (*FacetAttributeDefinition) SetType

func (s *FacetAttributeDefinition) SetType(v string) *FacetAttributeDefinition

SetType sets the Type field's value.

func (FacetAttributeDefinition) String

func (s FacetAttributeDefinition) String() string

String returns the string representation

func (*FacetAttributeDefinition) Validate

func (s *FacetAttributeDefinition) Validate() error

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

type FacetAttributeReference

The facet attribute reference that specifies the attribute definition that contains the attribute facet name and attribute name. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/FacetAttributeReference

type FacetAttributeReference struct {

    // The target attribute name that is associated with the facet reference. See
    // Attribute References (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#attributereferences)
    // for more information.
    //
    // TargetAttributeName is a required field
    TargetAttributeName *string `min:"1" type:"string" required:"true"`

    // The target facet name that is associated with the facet reference. See Attribute
    // References (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#attributereferences)
    // for more information.
    //
    // TargetFacetName is a required field
    TargetFacetName *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (FacetAttributeReference) GoString

func (s FacetAttributeReference) GoString() string

GoString returns the string representation

func (*FacetAttributeReference) SetTargetAttributeName

func (s *FacetAttributeReference) SetTargetAttributeName(v string) *FacetAttributeReference

SetTargetAttributeName sets the TargetAttributeName field's value.

func (*FacetAttributeReference) SetTargetFacetName

func (s *FacetAttributeReference) SetTargetFacetName(v string) *FacetAttributeReference

SetTargetFacetName sets the TargetFacetName field's value.

func (FacetAttributeReference) String

func (s FacetAttributeReference) String() string

String returns the string representation

func (*FacetAttributeReference) Validate

func (s *FacetAttributeReference) Validate() error

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

type FacetAttributeUpdate

A structure that contains information used to update an attribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/FacetAttributeUpdate

type FacetAttributeUpdate struct {

    // The action to perform when updating the attribute.
    Action *string `type:"string" enum:"UpdateActionType"`

    // The attribute to update.
    Attribute *FacetAttribute `type:"structure"`
    // contains filtered or unexported fields
}

func (FacetAttributeUpdate) GoString

func (s FacetAttributeUpdate) GoString() string

GoString returns the string representation

func (*FacetAttributeUpdate) SetAction

func (s *FacetAttributeUpdate) SetAction(v string) *FacetAttributeUpdate

SetAction sets the Action field's value.

func (*FacetAttributeUpdate) SetAttribute

func (s *FacetAttributeUpdate) SetAttribute(v *FacetAttribute) *FacetAttributeUpdate

SetAttribute sets the Attribute field's value.

func (FacetAttributeUpdate) String

func (s FacetAttributeUpdate) String() string

String returns the string representation

func (*FacetAttributeUpdate) Validate

func (s *FacetAttributeUpdate) Validate() error

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

type GetDirectoryInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetDirectoryRequest

type GetDirectoryInput struct {

    // The ARN of the directory.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetDirectoryInput) GoString

func (s GetDirectoryInput) GoString() string

GoString returns the string representation

func (*GetDirectoryInput) SetDirectoryArn

func (s *GetDirectoryInput) SetDirectoryArn(v string) *GetDirectoryInput

SetDirectoryArn sets the DirectoryArn field's value.

func (GetDirectoryInput) String

func (s GetDirectoryInput) String() string

String returns the string representation

func (*GetDirectoryInput) Validate

func (s *GetDirectoryInput) Validate() error

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

type GetDirectoryOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetDirectoryResponse

type GetDirectoryOutput struct {

    // Metadata about the directory.
    //
    // Directory is a required field
    Directory *Directory `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (GetDirectoryOutput) GoString

func (s GetDirectoryOutput) GoString() string

GoString returns the string representation

func (*GetDirectoryOutput) SetDirectory

func (s *GetDirectoryOutput) SetDirectory(v *Directory) *GetDirectoryOutput

SetDirectory sets the Directory field's value.

func (GetDirectoryOutput) String

func (s GetDirectoryOutput) String() string

String returns the string representation

type GetFacetInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetFacetRequest

type GetFacetInput struct {

    // The name of the facet to retrieve.
    //
    // Name is a required field
    Name *string `min:"1" type:"string" required:"true"`

    // The Amazon Resource Name (ARN) that is associated with the Facet. For more
    // information, see arns.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetFacetInput) GoString

func (s GetFacetInput) GoString() string

GoString returns the string representation

func (*GetFacetInput) SetName

func (s *GetFacetInput) SetName(v string) *GetFacetInput

SetName sets the Name field's value.

func (*GetFacetInput) SetSchemaArn

func (s *GetFacetInput) SetSchemaArn(v string) *GetFacetInput

SetSchemaArn sets the SchemaArn field's value.

func (GetFacetInput) String

func (s GetFacetInput) String() string

String returns the string representation

func (*GetFacetInput) Validate

func (s *GetFacetInput) Validate() error

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

type GetFacetOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetFacetResponse

type GetFacetOutput struct {

    // The Facet structure that is associated with the facet.
    Facet *Facet `type:"structure"`
    // contains filtered or unexported fields
}

func (GetFacetOutput) GoString

func (s GetFacetOutput) GoString() string

GoString returns the string representation

func (*GetFacetOutput) SetFacet

func (s *GetFacetOutput) SetFacet(v *Facet) *GetFacetOutput

SetFacet sets the Facet field's value.

func (GetFacetOutput) String

func (s GetFacetOutput) String() string

String returns the string representation

type GetObjectInformationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetObjectInformationRequest

type GetObjectInformationInput struct {

    // The consistency level at which to retrieve the object information.
    ConsistencyLevel *string `location:"header" locationName:"x-amz-consistency-level" type:"string" enum:"ConsistencyLevel"`

    // The ARN of the directory being retrieved.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // A reference to the object.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (GetObjectInformationInput) GoString

func (s GetObjectInformationInput) GoString() string

GoString returns the string representation

func (*GetObjectInformationInput) SetConsistencyLevel

func (s *GetObjectInformationInput) SetConsistencyLevel(v string) *GetObjectInformationInput

SetConsistencyLevel sets the ConsistencyLevel field's value.

func (*GetObjectInformationInput) SetDirectoryArn

func (s *GetObjectInformationInput) SetDirectoryArn(v string) *GetObjectInformationInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*GetObjectInformationInput) SetObjectReference

func (s *GetObjectInformationInput) SetObjectReference(v *ObjectReference) *GetObjectInformationInput

SetObjectReference sets the ObjectReference field's value.

func (GetObjectInformationInput) String

func (s GetObjectInformationInput) String() string

String returns the string representation

func (*GetObjectInformationInput) Validate

func (s *GetObjectInformationInput) Validate() error

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

type GetObjectInformationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetObjectInformationResponse

type GetObjectInformationOutput struct {

    // The ObjectIdentifier of the specified object.
    ObjectIdentifier *string `type:"string"`

    // The facets attached to the specified object.
    SchemaFacets []*SchemaFacet `type:"list"`
    // contains filtered or unexported fields
}

func (GetObjectInformationOutput) GoString

func (s GetObjectInformationOutput) GoString() string

GoString returns the string representation

func (*GetObjectInformationOutput) SetObjectIdentifier

func (s *GetObjectInformationOutput) SetObjectIdentifier(v string) *GetObjectInformationOutput

SetObjectIdentifier sets the ObjectIdentifier field's value.

func (*GetObjectInformationOutput) SetSchemaFacets

func (s *GetObjectInformationOutput) SetSchemaFacets(v []*SchemaFacet) *GetObjectInformationOutput

SetSchemaFacets sets the SchemaFacets field's value.

func (GetObjectInformationOutput) String

func (s GetObjectInformationOutput) String() string

String returns the string representation

type GetSchemaAsJsonInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetSchemaAsJsonRequest

type GetSchemaAsJsonInput struct {

    // The ARN of the schema to retrieve.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetSchemaAsJsonInput) GoString

func (s GetSchemaAsJsonInput) GoString() string

GoString returns the string representation

func (*GetSchemaAsJsonInput) SetSchemaArn

func (s *GetSchemaAsJsonInput) SetSchemaArn(v string) *GetSchemaAsJsonInput

SetSchemaArn sets the SchemaArn field's value.

func (GetSchemaAsJsonInput) String

func (s GetSchemaAsJsonInput) String() string

String returns the string representation

func (*GetSchemaAsJsonInput) Validate

func (s *GetSchemaAsJsonInput) Validate() error

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

type GetSchemaAsJsonOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetSchemaAsJsonResponse

type GetSchemaAsJsonOutput struct {

    // The JSON representation of the schema document.
    Document *string `type:"string"`

    // The name of the retrieved schema.
    Name *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (GetSchemaAsJsonOutput) GoString

func (s GetSchemaAsJsonOutput) GoString() string

GoString returns the string representation

func (*GetSchemaAsJsonOutput) SetDocument

func (s *GetSchemaAsJsonOutput) SetDocument(v string) *GetSchemaAsJsonOutput

SetDocument sets the Document field's value.

func (*GetSchemaAsJsonOutput) SetName

func (s *GetSchemaAsJsonOutput) SetName(v string) *GetSchemaAsJsonOutput

SetName sets the Name field's value.

func (GetSchemaAsJsonOutput) String

func (s GetSchemaAsJsonOutput) String() string

String returns the string representation

type GetTypedLinkFacetInformationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetTypedLinkFacetInformationRequest

type GetTypedLinkFacetInformationInput struct {

    // The unique name of the typed link facet.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`

    // The Amazon Resource Name (ARN) that is associated with the schema. For more
    // information, see arns.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetTypedLinkFacetInformationInput) GoString

func (s GetTypedLinkFacetInformationInput) GoString() string

GoString returns the string representation

func (*GetTypedLinkFacetInformationInput) SetName

func (s *GetTypedLinkFacetInformationInput) SetName(v string) *GetTypedLinkFacetInformationInput

SetName sets the Name field's value.

func (*GetTypedLinkFacetInformationInput) SetSchemaArn

func (s *GetTypedLinkFacetInformationInput) SetSchemaArn(v string) *GetTypedLinkFacetInformationInput

SetSchemaArn sets the SchemaArn field's value.

func (GetTypedLinkFacetInformationInput) String

func (s GetTypedLinkFacetInformationInput) String() string

String returns the string representation

func (*GetTypedLinkFacetInformationInput) Validate

func (s *GetTypedLinkFacetInformationInput) Validate() error

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

type GetTypedLinkFacetInformationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/GetTypedLinkFacetInformationResponse

type GetTypedLinkFacetInformationOutput struct {

    // The order of identity attributes for the facet, from most significant to
    // least significant. The ability to filter typed links considers the order
    // that the attributes are defined on the typed link facet. When providing ranges
    // to typed link selection, any inexact ranges must be specified at the end.
    // Any attributes that do not have a range specified are presumed to match the
    // entire range. Filters are interpreted in the order of the attributes on the
    // typed link facet, not the order in which they are supplied to any API calls.
    // For more information about identity attributes, see Typed link (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink).
    IdentityAttributeOrder []*string `type:"list"`
    // contains filtered or unexported fields
}

func (GetTypedLinkFacetInformationOutput) GoString

func (s GetTypedLinkFacetInformationOutput) GoString() string

GoString returns the string representation

func (*GetTypedLinkFacetInformationOutput) SetIdentityAttributeOrder

func (s *GetTypedLinkFacetInformationOutput) SetIdentityAttributeOrder(v []*string) *GetTypedLinkFacetInformationOutput

SetIdentityAttributeOrder sets the IdentityAttributeOrder field's value.

func (GetTypedLinkFacetInformationOutput) String

func (s GetTypedLinkFacetInformationOutput) String() string

String returns the string representation

type IndexAttachment

Represents an index and an attached object. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/IndexAttachment

type IndexAttachment struct {

    // The indexed attribute values.
    IndexedAttributes []*AttributeKeyAndValue `type:"list"`

    // The ObjectIdentifier of the object attached to the index.
    ObjectIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (IndexAttachment) GoString

func (s IndexAttachment) GoString() string

GoString returns the string representation

func (*IndexAttachment) SetIndexedAttributes

func (s *IndexAttachment) SetIndexedAttributes(v []*AttributeKeyAndValue) *IndexAttachment

SetIndexedAttributes sets the IndexedAttributes field's value.

func (*IndexAttachment) SetObjectIdentifier

func (s *IndexAttachment) SetObjectIdentifier(v string) *IndexAttachment

SetObjectIdentifier sets the ObjectIdentifier field's value.

func (IndexAttachment) String

func (s IndexAttachment) String() string

String returns the string representation

type ListAppliedSchemaArnsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListAppliedSchemaArnsRequest

type ListAppliedSchemaArnsInput struct {

    // The ARN of the directory you are listing.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `type:"string" required:"true"`

    // The maximum number of results to retrieve.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListAppliedSchemaArnsInput) GoString

func (s ListAppliedSchemaArnsInput) GoString() string

GoString returns the string representation

func (*ListAppliedSchemaArnsInput) SetDirectoryArn

func (s *ListAppliedSchemaArnsInput) SetDirectoryArn(v string) *ListAppliedSchemaArnsInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*ListAppliedSchemaArnsInput) SetMaxResults

func (s *ListAppliedSchemaArnsInput) SetMaxResults(v int64) *ListAppliedSchemaArnsInput

SetMaxResults sets the MaxResults field's value.

func (*ListAppliedSchemaArnsInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (ListAppliedSchemaArnsInput) String

func (s ListAppliedSchemaArnsInput) String() string

String returns the string representation

func (*ListAppliedSchemaArnsInput) Validate

func (s *ListAppliedSchemaArnsInput) Validate() error

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

type ListAppliedSchemaArnsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListAppliedSchemaArnsResponse

type ListAppliedSchemaArnsOutput struct {

    // The pagination token.
    NextToken *string `type:"string"`

    // The ARNs of schemas that are applied to the directory.
    SchemaArns []*string `type:"list"`
    // contains filtered or unexported fields
}

func (ListAppliedSchemaArnsOutput) GoString

func (s ListAppliedSchemaArnsOutput) GoString() string

GoString returns the string representation

func (*ListAppliedSchemaArnsOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListAppliedSchemaArnsOutput) SetSchemaArns

func (s *ListAppliedSchemaArnsOutput) SetSchemaArns(v []*string) *ListAppliedSchemaArnsOutput

SetSchemaArns sets the SchemaArns field's value.

func (ListAppliedSchemaArnsOutput) String

func (s ListAppliedSchemaArnsOutput) String() string

String returns the string representation

type ListAttachedIndicesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListAttachedIndicesRequest

type ListAttachedIndicesInput struct {

    // The consistency level to use for this operation.
    ConsistencyLevel *string `location:"header" locationName:"x-amz-consistency-level" type:"string" enum:"ConsistencyLevel"`

    // The ARN of the directory.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // The maximum number of results to retrieve.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // A reference to the object to that has indices attached.
    //
    // TargetReference is a required field
    TargetReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ListAttachedIndicesInput) GoString

func (s ListAttachedIndicesInput) GoString() string

GoString returns the string representation

func (*ListAttachedIndicesInput) SetConsistencyLevel

func (s *ListAttachedIndicesInput) SetConsistencyLevel(v string) *ListAttachedIndicesInput

SetConsistencyLevel sets the ConsistencyLevel field's value.

func (*ListAttachedIndicesInput) SetDirectoryArn

func (s *ListAttachedIndicesInput) SetDirectoryArn(v string) *ListAttachedIndicesInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*ListAttachedIndicesInput) SetMaxResults

func (s *ListAttachedIndicesInput) SetMaxResults(v int64) *ListAttachedIndicesInput

SetMaxResults sets the MaxResults field's value.

func (*ListAttachedIndicesInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListAttachedIndicesInput) SetTargetReference

func (s *ListAttachedIndicesInput) SetTargetReference(v *ObjectReference) *ListAttachedIndicesInput

SetTargetReference sets the TargetReference field's value.

func (ListAttachedIndicesInput) String

func (s ListAttachedIndicesInput) String() string

String returns the string representation

func (*ListAttachedIndicesInput) Validate

func (s *ListAttachedIndicesInput) Validate() error

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

type ListAttachedIndicesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListAttachedIndicesResponse

type ListAttachedIndicesOutput struct {

    // The indices attached to the specified object.
    IndexAttachments []*IndexAttachment `type:"list"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListAttachedIndicesOutput) GoString

func (s ListAttachedIndicesOutput) GoString() string

GoString returns the string representation

func (*ListAttachedIndicesOutput) SetIndexAttachments

func (s *ListAttachedIndicesOutput) SetIndexAttachments(v []*IndexAttachment) *ListAttachedIndicesOutput

SetIndexAttachments sets the IndexAttachments field's value.

func (*ListAttachedIndicesOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (ListAttachedIndicesOutput) String

func (s ListAttachedIndicesOutput) String() string

String returns the string representation

type ListDevelopmentSchemaArnsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListDevelopmentSchemaArnsRequest

type ListDevelopmentSchemaArnsInput struct {

    // The maximum number of results to retrieve.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListDevelopmentSchemaArnsInput) GoString

func (s ListDevelopmentSchemaArnsInput) GoString() string

GoString returns the string representation

func (*ListDevelopmentSchemaArnsInput) SetMaxResults

func (s *ListDevelopmentSchemaArnsInput) SetMaxResults(v int64) *ListDevelopmentSchemaArnsInput

SetMaxResults sets the MaxResults field's value.

func (*ListDevelopmentSchemaArnsInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (ListDevelopmentSchemaArnsInput) String

func (s ListDevelopmentSchemaArnsInput) String() string

String returns the string representation

func (*ListDevelopmentSchemaArnsInput) Validate

func (s *ListDevelopmentSchemaArnsInput) Validate() error

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

type ListDevelopmentSchemaArnsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListDevelopmentSchemaArnsResponse

type ListDevelopmentSchemaArnsOutput struct {

    // The pagination token.
    NextToken *string `type:"string"`

    // The ARNs of retrieved development schemas.
    SchemaArns []*string `type:"list"`
    // contains filtered or unexported fields
}

func (ListDevelopmentSchemaArnsOutput) GoString

func (s ListDevelopmentSchemaArnsOutput) GoString() string

GoString returns the string representation

func (*ListDevelopmentSchemaArnsOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListDevelopmentSchemaArnsOutput) SetSchemaArns

func (s *ListDevelopmentSchemaArnsOutput) SetSchemaArns(v []*string) *ListDevelopmentSchemaArnsOutput

SetSchemaArns sets the SchemaArns field's value.

func (ListDevelopmentSchemaArnsOutput) String

func (s ListDevelopmentSchemaArnsOutput) String() string

String returns the string representation

type ListDirectoriesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListDirectoriesRequest

type ListDirectoriesInput struct {

    // The maximum number of results to retrieve.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // The state of the directories in the list. Can be either Enabled, Disabled,
    // or Deleted.
    State *string `locationName:"state" type:"string" enum:"DirectoryState"`
    // contains filtered or unexported fields
}

func (ListDirectoriesInput) GoString

func (s ListDirectoriesInput) GoString() string

GoString returns the string representation

func (*ListDirectoriesInput) SetMaxResults

func (s *ListDirectoriesInput) SetMaxResults(v int64) *ListDirectoriesInput

SetMaxResults sets the MaxResults field's value.

func (*ListDirectoriesInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListDirectoriesInput) SetState

func (s *ListDirectoriesInput) SetState(v string) *ListDirectoriesInput

SetState sets the State field's value.

func (ListDirectoriesInput) String

func (s ListDirectoriesInput) String() string

String returns the string representation

func (*ListDirectoriesInput) Validate

func (s *ListDirectoriesInput) Validate() error

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

type ListDirectoriesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListDirectoriesResponse

type ListDirectoriesOutput struct {

    // Lists all directories that are associated with your account in pagination
    // fashion.
    //
    // Directories is a required field
    Directories []*Directory `type:"list" required:"true"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListDirectoriesOutput) GoString

func (s ListDirectoriesOutput) GoString() string

GoString returns the string representation

func (*ListDirectoriesOutput) SetDirectories

func (s *ListDirectoriesOutput) SetDirectories(v []*Directory) *ListDirectoriesOutput

SetDirectories sets the Directories field's value.

func (*ListDirectoriesOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (ListDirectoriesOutput) String

func (s ListDirectoriesOutput) String() string

String returns the string representation

type ListFacetAttributesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListFacetAttributesRequest

type ListFacetAttributesInput struct {

    // The maximum number of results to retrieve.
    MaxResults *int64 `min:"1" type:"integer"`

    // The name of the facet whose attributes will be retrieved.
    //
    // Name is a required field
    Name *string `min:"1" type:"string" required:"true"`

    // The pagination token.
    NextToken *string `type:"string"`

    // The ARN of the schema where the facet resides.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ListFacetAttributesInput) GoString

func (s ListFacetAttributesInput) GoString() string

GoString returns the string representation

func (*ListFacetAttributesInput) SetMaxResults

func (s *ListFacetAttributesInput) SetMaxResults(v int64) *ListFacetAttributesInput

SetMaxResults sets the MaxResults field's value.

func (*ListFacetAttributesInput) SetName

func (s *ListFacetAttributesInput) SetName(v string) *ListFacetAttributesInput

SetName sets the Name field's value.

func (*ListFacetAttributesInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListFacetAttributesInput) SetSchemaArn

func (s *ListFacetAttributesInput) SetSchemaArn(v string) *ListFacetAttributesInput

SetSchemaArn sets the SchemaArn field's value.

func (ListFacetAttributesInput) String

func (s ListFacetAttributesInput) String() string

String returns the string representation

func (*ListFacetAttributesInput) Validate

func (s *ListFacetAttributesInput) Validate() error

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

type ListFacetAttributesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListFacetAttributesResponse

type ListFacetAttributesOutput struct {

    // The attributes attached to the facet.
    Attributes []*FacetAttribute `type:"list"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListFacetAttributesOutput) GoString

func (s ListFacetAttributesOutput) GoString() string

GoString returns the string representation

func (*ListFacetAttributesOutput) SetAttributes

func (s *ListFacetAttributesOutput) SetAttributes(v []*FacetAttribute) *ListFacetAttributesOutput

SetAttributes sets the Attributes field's value.

func (*ListFacetAttributesOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (ListFacetAttributesOutput) String

func (s ListFacetAttributesOutput) String() string

String returns the string representation

type ListFacetNamesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListFacetNamesRequest

type ListFacetNamesInput struct {

    // The maximum number of results to retrieve.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // The Amazon Resource Name (ARN) to retrieve facet names from.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ListFacetNamesInput) GoString

func (s ListFacetNamesInput) GoString() string

GoString returns the string representation

func (*ListFacetNamesInput) SetMaxResults

func (s *ListFacetNamesInput) SetMaxResults(v int64) *ListFacetNamesInput

SetMaxResults sets the MaxResults field's value.

func (*ListFacetNamesInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListFacetNamesInput) SetSchemaArn

func (s *ListFacetNamesInput) SetSchemaArn(v string) *ListFacetNamesInput

SetSchemaArn sets the SchemaArn field's value.

func (ListFacetNamesInput) String

func (s ListFacetNamesInput) String() string

String returns the string representation

func (*ListFacetNamesInput) Validate

func (s *ListFacetNamesInput) Validate() error

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

type ListFacetNamesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListFacetNamesResponse

type ListFacetNamesOutput struct {

    // The names of facets that exist within the schema.
    FacetNames []*string `type:"list"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListFacetNamesOutput) GoString

func (s ListFacetNamesOutput) GoString() string

GoString returns the string representation

func (*ListFacetNamesOutput) SetFacetNames

func (s *ListFacetNamesOutput) SetFacetNames(v []*string) *ListFacetNamesOutput

SetFacetNames sets the FacetNames field's value.

func (*ListFacetNamesOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (ListFacetNamesOutput) String

func (s ListFacetNamesOutput) String() string

String returns the string representation

type ListIncomingTypedLinksInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListIncomingTypedLinksRequest

type ListIncomingTypedLinksInput struct {

    // The consistency level to execute the request at.
    ConsistencyLevel *string `type:"string" enum:"ConsistencyLevel"`

    // The Amazon Resource Name (ARN) of the directory where you want to list the
    // typed links.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // Provides range filters for multiple attributes. When providing ranges to
    // typed link selection, any inexact ranges must be specified at the end. Any
    // attributes that do not have a range specified are presumed to match the entire
    // range.
    FilterAttributeRanges []*TypedLinkAttributeRange `type:"list"`

    // Filters are interpreted in the order of the attributes on the typed link
    // facet, not the order in which they are supplied to any API calls.
    FilterTypedLink *TypedLinkSchemaAndFacetName `type:"structure"`

    // The maximum number of results to retrieve.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // Reference that identifies the object whose attributes will be listed.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ListIncomingTypedLinksInput) GoString

func (s ListIncomingTypedLinksInput) GoString() string

GoString returns the string representation

func (*ListIncomingTypedLinksInput) SetConsistencyLevel

func (s *ListIncomingTypedLinksInput) SetConsistencyLevel(v string) *ListIncomingTypedLinksInput

SetConsistencyLevel sets the ConsistencyLevel field's value.

func (*ListIncomingTypedLinksInput) SetDirectoryArn

func (s *ListIncomingTypedLinksInput) SetDirectoryArn(v string) *ListIncomingTypedLinksInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*ListIncomingTypedLinksInput) SetFilterAttributeRanges

func (s *ListIncomingTypedLinksInput) SetFilterAttributeRanges(v []*TypedLinkAttributeRange) *ListIncomingTypedLinksInput

SetFilterAttributeRanges sets the FilterAttributeRanges field's value.

func (s *ListIncomingTypedLinksInput) SetFilterTypedLink(v *TypedLinkSchemaAndFacetName) *ListIncomingTypedLinksInput

SetFilterTypedLink sets the FilterTypedLink field's value.

func (*ListIncomingTypedLinksInput) SetMaxResults

func (s *ListIncomingTypedLinksInput) SetMaxResults(v int64) *ListIncomingTypedLinksInput

SetMaxResults sets the MaxResults field's value.

func (*ListIncomingTypedLinksInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListIncomingTypedLinksInput) SetObjectReference

func (s *ListIncomingTypedLinksInput) SetObjectReference(v *ObjectReference) *ListIncomingTypedLinksInput

SetObjectReference sets the ObjectReference field's value.

func (ListIncomingTypedLinksInput) String

func (s ListIncomingTypedLinksInput) String() string

String returns the string representation

func (*ListIncomingTypedLinksInput) Validate

func (s *ListIncomingTypedLinksInput) Validate() error

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

type ListIncomingTypedLinksOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListIncomingTypedLinksResponse

type ListIncomingTypedLinksOutput struct {

    // Returns one or more typed link specifiers as output.
    LinkSpecifiers []*TypedLinkSpecifier `type:"list"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListIncomingTypedLinksOutput) GoString

func (s ListIncomingTypedLinksOutput) GoString() string

GoString returns the string representation

func (*ListIncomingTypedLinksOutput) SetLinkSpecifiers

func (s *ListIncomingTypedLinksOutput) SetLinkSpecifiers(v []*TypedLinkSpecifier) *ListIncomingTypedLinksOutput

SetLinkSpecifiers sets the LinkSpecifiers field's value.

func (*ListIncomingTypedLinksOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (ListIncomingTypedLinksOutput) String

func (s ListIncomingTypedLinksOutput) String() string

String returns the string representation

type ListIndexInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListIndexRequest

type ListIndexInput struct {

    // The consistency level to execute the request at.
    ConsistencyLevel *string `location:"header" locationName:"x-amz-consistency-level" type:"string" enum:"ConsistencyLevel"`

    // The ARN of the directory that the index exists in.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // The reference to the index to list.
    //
    // IndexReference is a required field
    IndexReference *ObjectReference `type:"structure" required:"true"`

    // The maximum number of results to retrieve from the index.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // Specifies the ranges of indexed values that you want to query.
    RangesOnIndexedValues []*ObjectAttributeRange `type:"list"`
    // contains filtered or unexported fields
}

func (ListIndexInput) GoString

func (s ListIndexInput) GoString() string

GoString returns the string representation

func (*ListIndexInput) SetConsistencyLevel

func (s *ListIndexInput) SetConsistencyLevel(v string) *ListIndexInput

SetConsistencyLevel sets the ConsistencyLevel field's value.

func (*ListIndexInput) SetDirectoryArn

func (s *ListIndexInput) SetDirectoryArn(v string) *ListIndexInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*ListIndexInput) SetIndexReference

func (s *ListIndexInput) SetIndexReference(v *ObjectReference) *ListIndexInput

SetIndexReference sets the IndexReference field's value.

func (*ListIndexInput) SetMaxResults

func (s *ListIndexInput) SetMaxResults(v int64) *ListIndexInput

SetMaxResults sets the MaxResults field's value.

func (*ListIndexInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListIndexInput) SetRangesOnIndexedValues

func (s *ListIndexInput) SetRangesOnIndexedValues(v []*ObjectAttributeRange) *ListIndexInput

SetRangesOnIndexedValues sets the RangesOnIndexedValues field's value.

func (ListIndexInput) String

func (s ListIndexInput) String() string

String returns the string representation

func (*ListIndexInput) Validate

func (s *ListIndexInput) Validate() error

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

type ListIndexOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListIndexResponse

type ListIndexOutput struct {

    // The objects and indexed values attached to the index.
    IndexAttachments []*IndexAttachment `type:"list"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListIndexOutput) GoString

func (s ListIndexOutput) GoString() string

GoString returns the string representation

func (*ListIndexOutput) SetIndexAttachments

func (s *ListIndexOutput) SetIndexAttachments(v []*IndexAttachment) *ListIndexOutput

SetIndexAttachments sets the IndexAttachments field's value.

func (*ListIndexOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (ListIndexOutput) String

func (s ListIndexOutput) String() string

String returns the string representation

type ListObjectAttributesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectAttributesRequest

type ListObjectAttributesInput struct {

    // Represents the manner and timing in which the successful write or update
    // of an object is reflected in a subsequent read operation of that same object.
    ConsistencyLevel *string `location:"header" locationName:"x-amz-consistency-level" type:"string" enum:"ConsistencyLevel"`

    // The Amazon Resource Name (ARN) that is associated with the Directory where
    // the object resides. For more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // Used to filter the list of object attributes that are associated with a certain
    // facet.
    FacetFilter *SchemaFacet `type:"structure"`

    // The maximum number of items to be retrieved in a single call. This is an
    // approximate number.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // The reference that identifies the object whose attributes will be listed.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ListObjectAttributesInput) GoString

func (s ListObjectAttributesInput) GoString() string

GoString returns the string representation

func (*ListObjectAttributesInput) SetConsistencyLevel

func (s *ListObjectAttributesInput) SetConsistencyLevel(v string) *ListObjectAttributesInput

SetConsistencyLevel sets the ConsistencyLevel field's value.

func (*ListObjectAttributesInput) SetDirectoryArn

func (s *ListObjectAttributesInput) SetDirectoryArn(v string) *ListObjectAttributesInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*ListObjectAttributesInput) SetFacetFilter

func (s *ListObjectAttributesInput) SetFacetFilter(v *SchemaFacet) *ListObjectAttributesInput

SetFacetFilter sets the FacetFilter field's value.

func (*ListObjectAttributesInput) SetMaxResults

func (s *ListObjectAttributesInput) SetMaxResults(v int64) *ListObjectAttributesInput

SetMaxResults sets the MaxResults field's value.

func (*ListObjectAttributesInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListObjectAttributesInput) SetObjectReference

func (s *ListObjectAttributesInput) SetObjectReference(v *ObjectReference) *ListObjectAttributesInput

SetObjectReference sets the ObjectReference field's value.

func (ListObjectAttributesInput) String

func (s ListObjectAttributesInput) String() string

String returns the string representation

func (*ListObjectAttributesInput) Validate

func (s *ListObjectAttributesInput) Validate() error

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

type ListObjectAttributesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectAttributesResponse

type ListObjectAttributesOutput struct {

    // Attributes map that is associated with the object. AttributeArn is the key,
    // and attribute value is the value.
    Attributes []*AttributeKeyAndValue `type:"list"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListObjectAttributesOutput) GoString

func (s ListObjectAttributesOutput) GoString() string

GoString returns the string representation

func (*ListObjectAttributesOutput) SetAttributes

func (s *ListObjectAttributesOutput) SetAttributes(v []*AttributeKeyAndValue) *ListObjectAttributesOutput

SetAttributes sets the Attributes field's value.

func (*ListObjectAttributesOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (ListObjectAttributesOutput) String

func (s ListObjectAttributesOutput) String() string

String returns the string representation

type ListObjectChildrenInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectChildrenRequest

type ListObjectChildrenInput struct {

    // Represents the manner and timing in which the successful write or update
    // of an object is reflected in a subsequent read operation of that same object.
    ConsistencyLevel *string `location:"header" locationName:"x-amz-consistency-level" type:"string" enum:"ConsistencyLevel"`

    // The Amazon Resource Name (ARN) that is associated with the Directory where
    // the object resides. For more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // The maximum number of items to be retrieved in a single call. This is an
    // approximate number.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // The reference that identifies the object for which child objects are being
    // listed.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ListObjectChildrenInput) GoString

func (s ListObjectChildrenInput) GoString() string

GoString returns the string representation

func (*ListObjectChildrenInput) SetConsistencyLevel

func (s *ListObjectChildrenInput) SetConsistencyLevel(v string) *ListObjectChildrenInput

SetConsistencyLevel sets the ConsistencyLevel field's value.

func (*ListObjectChildrenInput) SetDirectoryArn

func (s *ListObjectChildrenInput) SetDirectoryArn(v string) *ListObjectChildrenInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*ListObjectChildrenInput) SetMaxResults

func (s *ListObjectChildrenInput) SetMaxResults(v int64) *ListObjectChildrenInput

SetMaxResults sets the MaxResults field's value.

func (*ListObjectChildrenInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListObjectChildrenInput) SetObjectReference

func (s *ListObjectChildrenInput) SetObjectReference(v *ObjectReference) *ListObjectChildrenInput

SetObjectReference sets the ObjectReference field's value.

func (ListObjectChildrenInput) String

func (s ListObjectChildrenInput) String() string

String returns the string representation

func (*ListObjectChildrenInput) Validate

func (s *ListObjectChildrenInput) Validate() error

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

type ListObjectChildrenOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectChildrenResponse

type ListObjectChildrenOutput struct {

    // Children structure, which is a map with key as the LinkName and ObjectIdentifier
    // as the value.
    Children map[string]*string `type:"map"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListObjectChildrenOutput) GoString

func (s ListObjectChildrenOutput) GoString() string

GoString returns the string representation

func (*ListObjectChildrenOutput) SetChildren

func (s *ListObjectChildrenOutput) SetChildren(v map[string]*string) *ListObjectChildrenOutput

SetChildren sets the Children field's value.

func (*ListObjectChildrenOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (ListObjectChildrenOutput) String

func (s ListObjectChildrenOutput) String() string

String returns the string representation

type ListObjectParentPathsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectParentPathsRequest

type ListObjectParentPathsInput struct {

    // The ARN of the directory to which the parent path applies.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // The maximum number of items to be retrieved in a single call. This is an
    // approximate number.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // The reference that identifies the object whose parent paths are listed.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ListObjectParentPathsInput) GoString

func (s ListObjectParentPathsInput) GoString() string

GoString returns the string representation

func (*ListObjectParentPathsInput) SetDirectoryArn

func (s *ListObjectParentPathsInput) SetDirectoryArn(v string) *ListObjectParentPathsInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*ListObjectParentPathsInput) SetMaxResults

func (s *ListObjectParentPathsInput) SetMaxResults(v int64) *ListObjectParentPathsInput

SetMaxResults sets the MaxResults field's value.

func (*ListObjectParentPathsInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListObjectParentPathsInput) SetObjectReference

func (s *ListObjectParentPathsInput) SetObjectReference(v *ObjectReference) *ListObjectParentPathsInput

SetObjectReference sets the ObjectReference field's value.

func (ListObjectParentPathsInput) String

func (s ListObjectParentPathsInput) String() string

String returns the string representation

func (*ListObjectParentPathsInput) Validate

func (s *ListObjectParentPathsInput) Validate() error

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

type ListObjectParentPathsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectParentPathsResponse

type ListObjectParentPathsOutput struct {

    // The pagination token.
    NextToken *string `type:"string"`

    // Returns the path to the ObjectIdentifiers that are associated with the directory.
    PathToObjectIdentifiersList []*PathToObjectIdentifiers `type:"list"`
    // contains filtered or unexported fields
}

func (ListObjectParentPathsOutput) GoString

func (s ListObjectParentPathsOutput) GoString() string

GoString returns the string representation

func (*ListObjectParentPathsOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListObjectParentPathsOutput) SetPathToObjectIdentifiersList

func (s *ListObjectParentPathsOutput) SetPathToObjectIdentifiersList(v []*PathToObjectIdentifiers) *ListObjectParentPathsOutput

SetPathToObjectIdentifiersList sets the PathToObjectIdentifiersList field's value.

func (ListObjectParentPathsOutput) String

func (s ListObjectParentPathsOutput) String() string

String returns the string representation

type ListObjectParentsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectParentsRequest

type ListObjectParentsInput struct {

    // Represents the manner and timing in which the successful write or update
    // of an object is reflected in a subsequent read operation of that same object.
    ConsistencyLevel *string `location:"header" locationName:"x-amz-consistency-level" type:"string" enum:"ConsistencyLevel"`

    // The Amazon Resource Name (ARN) that is associated with the Directory where
    // the object resides. For more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // The maximum number of items to be retrieved in a single call. This is an
    // approximate number.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // The reference that identifies the object for which parent objects are being
    // listed.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ListObjectParentsInput) GoString

func (s ListObjectParentsInput) GoString() string

GoString returns the string representation

func (*ListObjectParentsInput) SetConsistencyLevel

func (s *ListObjectParentsInput) SetConsistencyLevel(v string) *ListObjectParentsInput

SetConsistencyLevel sets the ConsistencyLevel field's value.

func (*ListObjectParentsInput) SetDirectoryArn

func (s *ListObjectParentsInput) SetDirectoryArn(v string) *ListObjectParentsInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*ListObjectParentsInput) SetMaxResults

func (s *ListObjectParentsInput) SetMaxResults(v int64) *ListObjectParentsInput

SetMaxResults sets the MaxResults field's value.

func (*ListObjectParentsInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListObjectParentsInput) SetObjectReference

func (s *ListObjectParentsInput) SetObjectReference(v *ObjectReference) *ListObjectParentsInput

SetObjectReference sets the ObjectReference field's value.

func (ListObjectParentsInput) String

func (s ListObjectParentsInput) String() string

String returns the string representation

func (*ListObjectParentsInput) Validate

func (s *ListObjectParentsInput) Validate() error

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

type ListObjectParentsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectParentsResponse

type ListObjectParentsOutput struct {

    // The pagination token.
    NextToken *string `type:"string"`

    // The parent structure, which is a map with key as the ObjectIdentifier and
    // LinkName as the value.
    Parents map[string]*string `type:"map"`
    // contains filtered or unexported fields
}

func (ListObjectParentsOutput) GoString

func (s ListObjectParentsOutput) GoString() string

GoString returns the string representation

func (*ListObjectParentsOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListObjectParentsOutput) SetParents

func (s *ListObjectParentsOutput) SetParents(v map[string]*string) *ListObjectParentsOutput

SetParents sets the Parents field's value.

func (ListObjectParentsOutput) String

func (s ListObjectParentsOutput) String() string

String returns the string representation

type ListObjectPoliciesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectPoliciesRequest

type ListObjectPoliciesInput struct {

    // Represents the manner and timing in which the successful write or update
    // of an object is reflected in a subsequent read operation of that same object.
    ConsistencyLevel *string `location:"header" locationName:"x-amz-consistency-level" type:"string" enum:"ConsistencyLevel"`

    // The Amazon Resource Name (ARN) that is associated with the Directory where
    // objects reside. For more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // The maximum number of items to be retrieved in a single call. This is an
    // approximate number.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // Reference that identifies the object for which policies will be listed.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ListObjectPoliciesInput) GoString

func (s ListObjectPoliciesInput) GoString() string

GoString returns the string representation

func (*ListObjectPoliciesInput) SetConsistencyLevel

func (s *ListObjectPoliciesInput) SetConsistencyLevel(v string) *ListObjectPoliciesInput

SetConsistencyLevel sets the ConsistencyLevel field's value.

func (*ListObjectPoliciesInput) SetDirectoryArn

func (s *ListObjectPoliciesInput) SetDirectoryArn(v string) *ListObjectPoliciesInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*ListObjectPoliciesInput) SetMaxResults

func (s *ListObjectPoliciesInput) SetMaxResults(v int64) *ListObjectPoliciesInput

SetMaxResults sets the MaxResults field's value.

func (*ListObjectPoliciesInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListObjectPoliciesInput) SetObjectReference

func (s *ListObjectPoliciesInput) SetObjectReference(v *ObjectReference) *ListObjectPoliciesInput

SetObjectReference sets the ObjectReference field's value.

func (ListObjectPoliciesInput) String

func (s ListObjectPoliciesInput) String() string

String returns the string representation

func (*ListObjectPoliciesInput) Validate

func (s *ListObjectPoliciesInput) Validate() error

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

type ListObjectPoliciesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListObjectPoliciesResponse

type ListObjectPoliciesOutput struct {

    // A list of policy ObjectIdentifiers, that are attached to the object.
    AttachedPolicyIds []*string `type:"list"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListObjectPoliciesOutput) GoString

func (s ListObjectPoliciesOutput) GoString() string

GoString returns the string representation

func (*ListObjectPoliciesOutput) SetAttachedPolicyIds

func (s *ListObjectPoliciesOutput) SetAttachedPolicyIds(v []*string) *ListObjectPoliciesOutput

SetAttachedPolicyIds sets the AttachedPolicyIds field's value.

func (*ListObjectPoliciesOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (ListObjectPoliciesOutput) String

func (s ListObjectPoliciesOutput) String() string

String returns the string representation

type ListOutgoingTypedLinksInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListOutgoingTypedLinksRequest

type ListOutgoingTypedLinksInput struct {

    // The consistency level to execute the request at.
    ConsistencyLevel *string `type:"string" enum:"ConsistencyLevel"`

    // The Amazon Resource Name (ARN) of the directory where you want to list the
    // typed links.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // Provides range filters for multiple attributes. When providing ranges to
    // typed link selection, any inexact ranges must be specified at the end. Any
    // attributes that do not have a range specified are presumed to match the entire
    // range.
    FilterAttributeRanges []*TypedLinkAttributeRange `type:"list"`

    // Filters are interpreted in the order of the attributes defined on the typed
    // link facet, not the order they are supplied to any API calls.
    FilterTypedLink *TypedLinkSchemaAndFacetName `type:"structure"`

    // The maximum number of results to retrieve.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // A reference that identifies the object whose attributes will be listed.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ListOutgoingTypedLinksInput) GoString

func (s ListOutgoingTypedLinksInput) GoString() string

GoString returns the string representation

func (*ListOutgoingTypedLinksInput) SetConsistencyLevel

func (s *ListOutgoingTypedLinksInput) SetConsistencyLevel(v string) *ListOutgoingTypedLinksInput

SetConsistencyLevel sets the ConsistencyLevel field's value.

func (*ListOutgoingTypedLinksInput) SetDirectoryArn

func (s *ListOutgoingTypedLinksInput) SetDirectoryArn(v string) *ListOutgoingTypedLinksInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*ListOutgoingTypedLinksInput) SetFilterAttributeRanges

func (s *ListOutgoingTypedLinksInput) SetFilterAttributeRanges(v []*TypedLinkAttributeRange) *ListOutgoingTypedLinksInput

SetFilterAttributeRanges sets the FilterAttributeRanges field's value.

func (s *ListOutgoingTypedLinksInput) SetFilterTypedLink(v *TypedLinkSchemaAndFacetName) *ListOutgoingTypedLinksInput

SetFilterTypedLink sets the FilterTypedLink field's value.

func (*ListOutgoingTypedLinksInput) SetMaxResults

func (s *ListOutgoingTypedLinksInput) SetMaxResults(v int64) *ListOutgoingTypedLinksInput

SetMaxResults sets the MaxResults field's value.

func (*ListOutgoingTypedLinksInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListOutgoingTypedLinksInput) SetObjectReference

func (s *ListOutgoingTypedLinksInput) SetObjectReference(v *ObjectReference) *ListOutgoingTypedLinksInput

SetObjectReference sets the ObjectReference field's value.

func (ListOutgoingTypedLinksInput) String

func (s ListOutgoingTypedLinksInput) String() string

String returns the string representation

func (*ListOutgoingTypedLinksInput) Validate

func (s *ListOutgoingTypedLinksInput) Validate() error

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

type ListOutgoingTypedLinksOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListOutgoingTypedLinksResponse

type ListOutgoingTypedLinksOutput struct {

    // The pagination token.
    NextToken *string `type:"string"`

    // Returns a typed link specifier as output.
    TypedLinkSpecifiers []*TypedLinkSpecifier `type:"list"`
    // contains filtered or unexported fields
}

func (ListOutgoingTypedLinksOutput) GoString

func (s ListOutgoingTypedLinksOutput) GoString() string

GoString returns the string representation

func (*ListOutgoingTypedLinksOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListOutgoingTypedLinksOutput) SetTypedLinkSpecifiers

func (s *ListOutgoingTypedLinksOutput) SetTypedLinkSpecifiers(v []*TypedLinkSpecifier) *ListOutgoingTypedLinksOutput

SetTypedLinkSpecifiers sets the TypedLinkSpecifiers field's value.

func (ListOutgoingTypedLinksOutput) String

func (s ListOutgoingTypedLinksOutput) String() string

String returns the string representation

type ListPolicyAttachmentsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListPolicyAttachmentsRequest

type ListPolicyAttachmentsInput struct {

    // Represents the manner and timing in which the successful write or update
    // of an object is reflected in a subsequent read operation of that same object.
    ConsistencyLevel *string `location:"header" locationName:"x-amz-consistency-level" type:"string" enum:"ConsistencyLevel"`

    // The Amazon Resource Name (ARN) that is associated with the Directory where
    // objects reside. For more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // The maximum number of items to be retrieved in a single call. This is an
    // approximate number.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // The reference that identifies the policy object.
    //
    // PolicyReference is a required field
    PolicyReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ListPolicyAttachmentsInput) GoString

func (s ListPolicyAttachmentsInput) GoString() string

GoString returns the string representation

func (*ListPolicyAttachmentsInput) SetConsistencyLevel

func (s *ListPolicyAttachmentsInput) SetConsistencyLevel(v string) *ListPolicyAttachmentsInput

SetConsistencyLevel sets the ConsistencyLevel field's value.

func (*ListPolicyAttachmentsInput) SetDirectoryArn

func (s *ListPolicyAttachmentsInput) SetDirectoryArn(v string) *ListPolicyAttachmentsInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*ListPolicyAttachmentsInput) SetMaxResults

func (s *ListPolicyAttachmentsInput) SetMaxResults(v int64) *ListPolicyAttachmentsInput

SetMaxResults sets the MaxResults field's value.

func (*ListPolicyAttachmentsInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListPolicyAttachmentsInput) SetPolicyReference

func (s *ListPolicyAttachmentsInput) SetPolicyReference(v *ObjectReference) *ListPolicyAttachmentsInput

SetPolicyReference sets the PolicyReference field's value.

func (ListPolicyAttachmentsInput) String

func (s ListPolicyAttachmentsInput) String() string

String returns the string representation

func (*ListPolicyAttachmentsInput) Validate

func (s *ListPolicyAttachmentsInput) Validate() error

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

type ListPolicyAttachmentsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListPolicyAttachmentsResponse

type ListPolicyAttachmentsOutput struct {

    // The pagination token.
    NextToken *string `type:"string"`

    // A list of ObjectIdentifiers to which the policy is attached.
    ObjectIdentifiers []*string `type:"list"`
    // contains filtered or unexported fields
}

func (ListPolicyAttachmentsOutput) GoString

func (s ListPolicyAttachmentsOutput) GoString() string

GoString returns the string representation

func (*ListPolicyAttachmentsOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListPolicyAttachmentsOutput) SetObjectIdentifiers

func (s *ListPolicyAttachmentsOutput) SetObjectIdentifiers(v []*string) *ListPolicyAttachmentsOutput

SetObjectIdentifiers sets the ObjectIdentifiers field's value.

func (ListPolicyAttachmentsOutput) String

func (s ListPolicyAttachmentsOutput) String() string

String returns the string representation

type ListPublishedSchemaArnsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListPublishedSchemaArnsRequest

type ListPublishedSchemaArnsInput struct {

    // The maximum number of results to retrieve.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListPublishedSchemaArnsInput) GoString

func (s ListPublishedSchemaArnsInput) GoString() string

GoString returns the string representation

func (*ListPublishedSchemaArnsInput) SetMaxResults

func (s *ListPublishedSchemaArnsInput) SetMaxResults(v int64) *ListPublishedSchemaArnsInput

SetMaxResults sets the MaxResults field's value.

func (*ListPublishedSchemaArnsInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (ListPublishedSchemaArnsInput) String

func (s ListPublishedSchemaArnsInput) String() string

String returns the string representation

func (*ListPublishedSchemaArnsInput) Validate

func (s *ListPublishedSchemaArnsInput) Validate() error

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

type ListPublishedSchemaArnsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListPublishedSchemaArnsResponse

type ListPublishedSchemaArnsOutput struct {

    // The pagination token.
    NextToken *string `type:"string"`

    // The ARNs of published schemas.
    SchemaArns []*string `type:"list"`
    // contains filtered or unexported fields
}

func (ListPublishedSchemaArnsOutput) GoString

func (s ListPublishedSchemaArnsOutput) GoString() string

GoString returns the string representation

func (*ListPublishedSchemaArnsOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListPublishedSchemaArnsOutput) SetSchemaArns

func (s *ListPublishedSchemaArnsOutput) SetSchemaArns(v []*string) *ListPublishedSchemaArnsOutput

SetSchemaArns sets the SchemaArns field's value.

func (ListPublishedSchemaArnsOutput) String

func (s ListPublishedSchemaArnsOutput) String() string

String returns the string representation

type ListTagsForResourceInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListTagsForResourceRequest

type ListTagsForResourceInput struct {

    // The MaxResults parameter sets the maximum number of results returned in a
    // single page. This is for future use and is not supported currently.
    MaxResults *int64 `min:"50" type:"integer"`

    // The pagination token. This is for future use. Currently pagination is not
    // supported for tagging.
    NextToken *string `type:"string"`

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

func (ListTagsForResourceInput) GoString

func (s ListTagsForResourceInput) GoString() string

GoString returns the string representation

func (*ListTagsForResourceInput) SetMaxResults

func (s *ListTagsForResourceInput) SetMaxResults(v int64) *ListTagsForResourceInput

SetMaxResults sets the MaxResults field's value.

func (*ListTagsForResourceInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListTagsForResourceInput) SetResourceArn

func (s *ListTagsForResourceInput) SetResourceArn(v string) *ListTagsForResourceInput

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

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListTagsForResourceResponse

type ListTagsForResourceOutput struct {

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `type:"string"`

    // A list of tag key value pairs that are associated with the response.
    Tags []*Tag `type:"list"`
    // contains filtered or unexported fields
}

func (ListTagsForResourceOutput) GoString

func (s ListTagsForResourceOutput) GoString() string

GoString returns the string representation

func (*ListTagsForResourceOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListTagsForResourceOutput) SetTags

func (s *ListTagsForResourceOutput) SetTags(v []*Tag) *ListTagsForResourceOutput

SetTags sets the Tags field's value.

func (ListTagsForResourceOutput) String

func (s ListTagsForResourceOutput) String() string

String returns the string representation

type ListTypedLinkFacetAttributesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListTypedLinkFacetAttributesRequest

type ListTypedLinkFacetAttributesInput struct {

    // The maximum number of results to retrieve.
    MaxResults *int64 `min:"1" type:"integer"`

    // The unique name of the typed link facet.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`

    // The pagination token.
    NextToken *string `type:"string"`

    // The Amazon Resource Name (ARN) that is associated with the schema. For more
    // information, see arns.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ListTypedLinkFacetAttributesInput) GoString

func (s ListTypedLinkFacetAttributesInput) GoString() string

GoString returns the string representation

func (*ListTypedLinkFacetAttributesInput) SetMaxResults

func (s *ListTypedLinkFacetAttributesInput) SetMaxResults(v int64) *ListTypedLinkFacetAttributesInput

SetMaxResults sets the MaxResults field's value.

func (*ListTypedLinkFacetAttributesInput) SetName

func (s *ListTypedLinkFacetAttributesInput) SetName(v string) *ListTypedLinkFacetAttributesInput

SetName sets the Name field's value.

func (*ListTypedLinkFacetAttributesInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListTypedLinkFacetAttributesInput) SetSchemaArn

func (s *ListTypedLinkFacetAttributesInput) SetSchemaArn(v string) *ListTypedLinkFacetAttributesInput

SetSchemaArn sets the SchemaArn field's value.

func (ListTypedLinkFacetAttributesInput) String

func (s ListTypedLinkFacetAttributesInput) String() string

String returns the string representation

func (*ListTypedLinkFacetAttributesInput) Validate

func (s *ListTypedLinkFacetAttributesInput) Validate() error

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

type ListTypedLinkFacetAttributesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListTypedLinkFacetAttributesResponse

type ListTypedLinkFacetAttributesOutput struct {

    // An ordered set of attributes associate with the typed link.
    Attributes []*TypedLinkAttributeDefinition `type:"list"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListTypedLinkFacetAttributesOutput) GoString

func (s ListTypedLinkFacetAttributesOutput) GoString() string

GoString returns the string representation

func (*ListTypedLinkFacetAttributesOutput) SetAttributes

func (s *ListTypedLinkFacetAttributesOutput) SetAttributes(v []*TypedLinkAttributeDefinition) *ListTypedLinkFacetAttributesOutput

SetAttributes sets the Attributes field's value.

func (*ListTypedLinkFacetAttributesOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (ListTypedLinkFacetAttributesOutput) String

func (s ListTypedLinkFacetAttributesOutput) String() string

String returns the string representation

type ListTypedLinkFacetNamesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListTypedLinkFacetNamesRequest

type ListTypedLinkFacetNamesInput struct {

    // The maximum number of results to retrieve.
    MaxResults *int64 `min:"1" type:"integer"`

    // The pagination token.
    NextToken *string `type:"string"`

    // The Amazon Resource Name (ARN) that is associated with the schema. For more
    // information, see arns.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ListTypedLinkFacetNamesInput) GoString

func (s ListTypedLinkFacetNamesInput) GoString() string

GoString returns the string representation

func (*ListTypedLinkFacetNamesInput) SetMaxResults

func (s *ListTypedLinkFacetNamesInput) SetMaxResults(v int64) *ListTypedLinkFacetNamesInput

SetMaxResults sets the MaxResults field's value.

func (*ListTypedLinkFacetNamesInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*ListTypedLinkFacetNamesInput) SetSchemaArn

func (s *ListTypedLinkFacetNamesInput) SetSchemaArn(v string) *ListTypedLinkFacetNamesInput

SetSchemaArn sets the SchemaArn field's value.

func (ListTypedLinkFacetNamesInput) String

func (s ListTypedLinkFacetNamesInput) String() string

String returns the string representation

func (*ListTypedLinkFacetNamesInput) Validate

func (s *ListTypedLinkFacetNamesInput) Validate() error

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

type ListTypedLinkFacetNamesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ListTypedLinkFacetNamesResponse

type ListTypedLinkFacetNamesOutput struct {

    // The names of typed link facets that exist within the schema.
    FacetNames []*string `type:"list"`

    // The pagination token.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (ListTypedLinkFacetNamesOutput) GoString

func (s ListTypedLinkFacetNamesOutput) GoString() string

GoString returns the string representation

func (*ListTypedLinkFacetNamesOutput) SetFacetNames

func (s *ListTypedLinkFacetNamesOutput) SetFacetNames(v []*string) *ListTypedLinkFacetNamesOutput

SetFacetNames sets the FacetNames field's value.

func (*ListTypedLinkFacetNamesOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (ListTypedLinkFacetNamesOutput) String

func (s ListTypedLinkFacetNamesOutput) String() string

String returns the string representation

type LookupPolicyInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/LookupPolicyRequest

type LookupPolicyInput struct {

    // The Amazon Resource Name (ARN) that is associated with the Directory. For
    // more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // The maximum number of items to be retrieved in a single call. This is an
    // approximate number.
    MaxResults *int64 `min:"1" type:"integer"`

    // The token to request the next page of results.
    NextToken *string `type:"string"`

    // Reference that identifies the object whose policies will be looked up.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (LookupPolicyInput) GoString

func (s LookupPolicyInput) GoString() string

GoString returns the string representation

func (*LookupPolicyInput) SetDirectoryArn

func (s *LookupPolicyInput) SetDirectoryArn(v string) *LookupPolicyInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*LookupPolicyInput) SetMaxResults

func (s *LookupPolicyInput) SetMaxResults(v int64) *LookupPolicyInput

SetMaxResults sets the MaxResults field's value.

func (*LookupPolicyInput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*LookupPolicyInput) SetObjectReference

func (s *LookupPolicyInput) SetObjectReference(v *ObjectReference) *LookupPolicyInput

SetObjectReference sets the ObjectReference field's value.

func (LookupPolicyInput) String

func (s LookupPolicyInput) String() string

String returns the string representation

func (*LookupPolicyInput) Validate

func (s *LookupPolicyInput) Validate() error

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

type LookupPolicyOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/LookupPolicyResponse

type LookupPolicyOutput struct {

    // The pagination token.
    NextToken *string `type:"string"`

    // Provides list of path to policies. Policies contain PolicyId, ObjectIdentifier,
    // and PolicyType. For more information, see Policies (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#policies).
    PolicyToPathList []*PolicyToPath `type:"list"`
    // contains filtered or unexported fields
}

func (LookupPolicyOutput) GoString

func (s LookupPolicyOutput) GoString() string

GoString returns the string representation

func (*LookupPolicyOutput) SetNextToken

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

SetNextToken sets the NextToken field's value.

func (*LookupPolicyOutput) SetPolicyToPathList

func (s *LookupPolicyOutput) SetPolicyToPathList(v []*PolicyToPath) *LookupPolicyOutput

SetPolicyToPathList sets the PolicyToPathList field's value.

func (LookupPolicyOutput) String

func (s LookupPolicyOutput) String() string

String returns the string representation

type ObjectAttributeAction

The action to take on the object attribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ObjectAttributeAction

type ObjectAttributeAction struct {

    // A type that can be either Update or Delete.
    ObjectAttributeActionType *string `type:"string" enum:"UpdateActionType"`

    // The value that you want to update to.
    ObjectAttributeUpdateValue *TypedAttributeValue `type:"structure"`
    // contains filtered or unexported fields
}

func (ObjectAttributeAction) GoString

func (s ObjectAttributeAction) GoString() string

GoString returns the string representation

func (*ObjectAttributeAction) SetObjectAttributeActionType

func (s *ObjectAttributeAction) SetObjectAttributeActionType(v string) *ObjectAttributeAction

SetObjectAttributeActionType sets the ObjectAttributeActionType field's value.

func (*ObjectAttributeAction) SetObjectAttributeUpdateValue

func (s *ObjectAttributeAction) SetObjectAttributeUpdateValue(v *TypedAttributeValue) *ObjectAttributeAction

SetObjectAttributeUpdateValue sets the ObjectAttributeUpdateValue field's value.

func (ObjectAttributeAction) String

func (s ObjectAttributeAction) String() string

String returns the string representation

type ObjectAttributeRange

A range of attributes. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ObjectAttributeRange

type ObjectAttributeRange struct {

    // The key of the attribute that the attribute range covers.
    AttributeKey *AttributeKey `type:"structure"`

    // The range of attribute values being selected.
    Range *TypedAttributeValueRange `type:"structure"`
    // contains filtered or unexported fields
}

func (ObjectAttributeRange) GoString

func (s ObjectAttributeRange) GoString() string

GoString returns the string representation

func (*ObjectAttributeRange) SetAttributeKey

func (s *ObjectAttributeRange) SetAttributeKey(v *AttributeKey) *ObjectAttributeRange

SetAttributeKey sets the AttributeKey field's value.

func (*ObjectAttributeRange) SetRange

func (s *ObjectAttributeRange) SetRange(v *TypedAttributeValueRange) *ObjectAttributeRange

SetRange sets the Range field's value.

func (ObjectAttributeRange) String

func (s ObjectAttributeRange) String() string

String returns the string representation

func (*ObjectAttributeRange) Validate

func (s *ObjectAttributeRange) Validate() error

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

type ObjectAttributeUpdate

Structure that contains attribute update information. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ObjectAttributeUpdate

type ObjectAttributeUpdate struct {

    // The action to perform as part of the attribute update.
    ObjectAttributeAction *ObjectAttributeAction `type:"structure"`

    // The key of the attribute being updated.
    ObjectAttributeKey *AttributeKey `type:"structure"`
    // contains filtered or unexported fields
}

func (ObjectAttributeUpdate) GoString

func (s ObjectAttributeUpdate) GoString() string

GoString returns the string representation

func (*ObjectAttributeUpdate) SetObjectAttributeAction

func (s *ObjectAttributeUpdate) SetObjectAttributeAction(v *ObjectAttributeAction) *ObjectAttributeUpdate

SetObjectAttributeAction sets the ObjectAttributeAction field's value.

func (*ObjectAttributeUpdate) SetObjectAttributeKey

func (s *ObjectAttributeUpdate) SetObjectAttributeKey(v *AttributeKey) *ObjectAttributeUpdate

SetObjectAttributeKey sets the ObjectAttributeKey field's value.

func (ObjectAttributeUpdate) String

func (s ObjectAttributeUpdate) String() string

String returns the string representation

func (*ObjectAttributeUpdate) Validate

func (s *ObjectAttributeUpdate) Validate() error

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

type ObjectReference

The reference that identifies an object. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/ObjectReference

type ObjectReference struct {

    // A path selector supports easy selection of an object by the parent/child
    // links leading to it from the directory root. Use the link names from each
    // parent/child link to construct the path. Path selectors start with a slash
    // (/) and link names are separated by slashes. For more information about paths,
    // see Accessing Objects (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#accessingobjects).
    // You can identify an object in one of the following ways:
    //
    //    * $ObjectIdentifier - An object identifier is an opaque string provided
    //    by Amazon Cloud Directory. When creating objects, the system will provide
    //    you with the identifier of the created object. An object’s identifier
    //    is immutable and no two objects will ever share the same object identifier
    //
    //    * /some/path - Identifies the object based on path
    //
    //    * #SomeBatchReference - Identifies the object in a batch call
    Selector *string `type:"string"`
    // contains filtered or unexported fields
}

func (ObjectReference) GoString

func (s ObjectReference) GoString() string

GoString returns the string representation

func (*ObjectReference) SetSelector

func (s *ObjectReference) SetSelector(v string) *ObjectReference

SetSelector sets the Selector field's value.

func (ObjectReference) String

func (s ObjectReference) String() string

String returns the string representation

type PathToObjectIdentifiers

Returns the path to the ObjectIdentifiers that is associated with the directory. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/PathToObjectIdentifiers

type PathToObjectIdentifiers struct {

    // Lists ObjectIdentifiers starting from directory root to the object in the
    // request.
    ObjectIdentifiers []*string `type:"list"`

    // The path that is used to identify the object starting from directory root.
    Path *string `type:"string"`
    // contains filtered or unexported fields
}

func (PathToObjectIdentifiers) GoString

func (s PathToObjectIdentifiers) GoString() string

GoString returns the string representation

func (*PathToObjectIdentifiers) SetObjectIdentifiers

func (s *PathToObjectIdentifiers) SetObjectIdentifiers(v []*string) *PathToObjectIdentifiers

SetObjectIdentifiers sets the ObjectIdentifiers field's value.

func (*PathToObjectIdentifiers) SetPath

func (s *PathToObjectIdentifiers) SetPath(v string) *PathToObjectIdentifiers

SetPath sets the Path field's value.

func (PathToObjectIdentifiers) String

func (s PathToObjectIdentifiers) String() string

String returns the string representation

type PolicyAttachment

Contains the PolicyType, PolicyId, and the ObjectIdentifier to which it is attached. For more information, see Policies (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#policies). Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/PolicyAttachment

type PolicyAttachment struct {

    // The ObjectIdentifier that is associated with PolicyAttachment.
    ObjectIdentifier *string `type:"string"`

    // The ID of PolicyAttachment.
    PolicyId *string `type:"string"`

    // The type of policy that can be associated with PolicyAttachment.
    PolicyType *string `type:"string"`
    // contains filtered or unexported fields
}

func (PolicyAttachment) GoString

func (s PolicyAttachment) GoString() string

GoString returns the string representation

func (*PolicyAttachment) SetObjectIdentifier

func (s *PolicyAttachment) SetObjectIdentifier(v string) *PolicyAttachment

SetObjectIdentifier sets the ObjectIdentifier field's value.

func (*PolicyAttachment) SetPolicyId

func (s *PolicyAttachment) SetPolicyId(v string) *PolicyAttachment

SetPolicyId sets the PolicyId field's value.

func (*PolicyAttachment) SetPolicyType

func (s *PolicyAttachment) SetPolicyType(v string) *PolicyAttachment

SetPolicyType sets the PolicyType field's value.

func (PolicyAttachment) String

func (s PolicyAttachment) String() string

String returns the string representation

type PolicyToPath

Used when a regular object exists in a Directory and you want to find all of the policies that are associated with that object and the parent to that object. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/PolicyToPath

type PolicyToPath struct {

    // The path that is referenced from the root.
    Path *string `type:"string"`

    // List of policy objects.
    Policies []*PolicyAttachment `type:"list"`
    // contains filtered or unexported fields
}

func (PolicyToPath) GoString

func (s PolicyToPath) GoString() string

GoString returns the string representation

func (*PolicyToPath) SetPath

func (s *PolicyToPath) SetPath(v string) *PolicyToPath

SetPath sets the Path field's value.

func (*PolicyToPath) SetPolicies

func (s *PolicyToPath) SetPolicies(v []*PolicyAttachment) *PolicyToPath

SetPolicies sets the Policies field's value.

func (PolicyToPath) String

func (s PolicyToPath) String() string

String returns the string representation

type PublishSchemaInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/PublishSchemaRequest

type PublishSchemaInput struct {

    // The Amazon Resource Name (ARN) that is associated with the development schema.
    // For more information, see arns.
    //
    // DevelopmentSchemaArn is a required field
    DevelopmentSchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // The new name under which the schema will be published. If this is not provided,
    // the development schema is considered.
    Name *string `min:"1" type:"string"`

    // The version under which the schema will be published.
    //
    // Version is a required field
    Version *string `min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (PublishSchemaInput) GoString

func (s PublishSchemaInput) GoString() string

GoString returns the string representation

func (*PublishSchemaInput) SetDevelopmentSchemaArn

func (s *PublishSchemaInput) SetDevelopmentSchemaArn(v string) *PublishSchemaInput

SetDevelopmentSchemaArn sets the DevelopmentSchemaArn field's value.

func (*PublishSchemaInput) SetName

func (s *PublishSchemaInput) SetName(v string) *PublishSchemaInput

SetName sets the Name field's value.

func (*PublishSchemaInput) SetVersion

func (s *PublishSchemaInput) SetVersion(v string) *PublishSchemaInput

SetVersion sets the Version field's value.

func (PublishSchemaInput) String

func (s PublishSchemaInput) String() string

String returns the string representation

func (*PublishSchemaInput) Validate

func (s *PublishSchemaInput) Validate() error

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

type PublishSchemaOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/PublishSchemaResponse

type PublishSchemaOutput struct {

    // The ARN that is associated with the published schema. For more information,
    // see arns.
    PublishedSchemaArn *string `type:"string"`
    // contains filtered or unexported fields
}

func (PublishSchemaOutput) GoString

func (s PublishSchemaOutput) GoString() string

GoString returns the string representation

func (*PublishSchemaOutput) SetPublishedSchemaArn

func (s *PublishSchemaOutput) SetPublishedSchemaArn(v string) *PublishSchemaOutput

SetPublishedSchemaArn sets the PublishedSchemaArn field's value.

func (PublishSchemaOutput) String

func (s PublishSchemaOutput) String() string

String returns the string representation

type PutSchemaFromJsonInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/PutSchemaFromJsonRequest

type PutSchemaFromJsonInput struct {

    // The replacement JSON schema.
    //
    // Document is a required field
    Document *string `type:"string" required:"true"`

    // The ARN of the schema to update.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (PutSchemaFromJsonInput) GoString

func (s PutSchemaFromJsonInput) GoString() string

GoString returns the string representation

func (*PutSchemaFromJsonInput) SetDocument

func (s *PutSchemaFromJsonInput) SetDocument(v string) *PutSchemaFromJsonInput

SetDocument sets the Document field's value.

func (*PutSchemaFromJsonInput) SetSchemaArn

func (s *PutSchemaFromJsonInput) SetSchemaArn(v string) *PutSchemaFromJsonInput

SetSchemaArn sets the SchemaArn field's value.

func (PutSchemaFromJsonInput) String

func (s PutSchemaFromJsonInput) String() string

String returns the string representation

func (*PutSchemaFromJsonInput) Validate

func (s *PutSchemaFromJsonInput) Validate() error

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

type PutSchemaFromJsonOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/PutSchemaFromJsonResponse

type PutSchemaFromJsonOutput struct {

    // The ARN of the schema to update.
    Arn *string `type:"string"`
    // contains filtered or unexported fields
}

func (PutSchemaFromJsonOutput) GoString

func (s PutSchemaFromJsonOutput) GoString() string

GoString returns the string representation

func (*PutSchemaFromJsonOutput) SetArn

func (s *PutSchemaFromJsonOutput) SetArn(v string) *PutSchemaFromJsonOutput

SetArn sets the Arn field's value.

func (PutSchemaFromJsonOutput) String

func (s PutSchemaFromJsonOutput) String() string

String returns the string representation

type RemoveFacetFromObjectInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/RemoveFacetFromObjectRequest

type RemoveFacetFromObjectInput struct {

    // The ARN of the directory in which the object resides.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // A reference to the object to remove the facet from.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`

    // The facet to remove.
    //
    // SchemaFacet is a required field
    SchemaFacet *SchemaFacet `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (RemoveFacetFromObjectInput) GoString

func (s RemoveFacetFromObjectInput) GoString() string

GoString returns the string representation

func (*RemoveFacetFromObjectInput) SetDirectoryArn

func (s *RemoveFacetFromObjectInput) SetDirectoryArn(v string) *RemoveFacetFromObjectInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*RemoveFacetFromObjectInput) SetObjectReference

func (s *RemoveFacetFromObjectInput) SetObjectReference(v *ObjectReference) *RemoveFacetFromObjectInput

SetObjectReference sets the ObjectReference field's value.

func (*RemoveFacetFromObjectInput) SetSchemaFacet

func (s *RemoveFacetFromObjectInput) SetSchemaFacet(v *SchemaFacet) *RemoveFacetFromObjectInput

SetSchemaFacet sets the SchemaFacet field's value.

func (RemoveFacetFromObjectInput) String

func (s RemoveFacetFromObjectInput) String() string

String returns the string representation

func (*RemoveFacetFromObjectInput) Validate

func (s *RemoveFacetFromObjectInput) Validate() error

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

type RemoveFacetFromObjectOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/RemoveFacetFromObjectResponse

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

func (RemoveFacetFromObjectOutput) GoString

func (s RemoveFacetFromObjectOutput) GoString() string

GoString returns the string representation

func (RemoveFacetFromObjectOutput) String

func (s RemoveFacetFromObjectOutput) String() string

String returns the string representation

type Rule

Contains an Amazon Resource Name (ARN) and parameters that are associated with the rule. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/Rule

type Rule struct {

    // The minimum and maximum parameters that are associated with the rule.
    Parameters map[string]*string `type:"map"`

    // The type of attribute validation rule.
    Type *string `type:"string" enum:"RuleType"`
    // contains filtered or unexported fields
}

func (Rule) GoString

func (s Rule) GoString() string

GoString returns the string representation

func (*Rule) SetParameters

func (s *Rule) SetParameters(v map[string]*string) *Rule

SetParameters sets the Parameters field's value.

func (*Rule) SetType

func (s *Rule) SetType(v string) *Rule

SetType sets the Type field's value.

func (Rule) String

func (s Rule) String() string

String returns the string representation

type SchemaFacet

A facet. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/SchemaFacet

type SchemaFacet struct {

    // The name of the facet.
    FacetName *string `min:"1" type:"string"`

    // The ARN of the schema that contains the facet.
    SchemaArn *string `type:"string"`
    // contains filtered or unexported fields
}

func (SchemaFacet) GoString

func (s SchemaFacet) GoString() string

GoString returns the string representation

func (*SchemaFacet) SetFacetName

func (s *SchemaFacet) SetFacetName(v string) *SchemaFacet

SetFacetName sets the FacetName field's value.

func (*SchemaFacet) SetSchemaArn

func (s *SchemaFacet) SetSchemaArn(v string) *SchemaFacet

SetSchemaArn sets the SchemaArn field's value.

func (SchemaFacet) String

func (s SchemaFacet) String() string

String returns the string representation

func (*SchemaFacet) Validate

func (s *SchemaFacet) Validate() error

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

type Tag

The tag structure that contains a tag key and value. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/Tag

type Tag struct {

    // The key that is associated with the tag.
    Key *string `type:"string"`

    // The value that is associated with the tag.
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

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

type TagResourceInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/TagResourceRequest

type TagResourceInput struct {

    // The Amazon Resource Name (ARN) of the resource. Tagging is only supported
    // for directories.
    //
    // ResourceArn is a required field
    ResourceArn *string `type:"string" required:"true"`

    // A list of tag key-value pairs.
    //
    // Tags is a required field
    Tags []*Tag `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (TagResourceInput) GoString

func (s TagResourceInput) GoString() string

GoString returns the string representation

func (*TagResourceInput) SetResourceArn

func (s *TagResourceInput) SetResourceArn(v string) *TagResourceInput

SetResourceArn sets the ResourceArn field's value.

func (*TagResourceInput) SetTags

func (s *TagResourceInput) SetTags(v []*Tag) *TagResourceInput

SetTags sets the Tags field's value.

func (TagResourceInput) String

func (s TagResourceInput) String() string

String returns the string representation

func (*TagResourceInput) Validate

func (s *TagResourceInput) Validate() error

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

type TagResourceOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/TagResourceResponse

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

func (TagResourceOutput) GoString

func (s TagResourceOutput) GoString() string

GoString returns the string representation

func (TagResourceOutput) String

func (s TagResourceOutput) String() string

String returns the string representation

type TypedAttributeValue

Represents the data for a typed attribute. You can set one, and only one, of the elements. Each attribute in an item is a name-value pair. Attributes have a single value. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/TypedAttributeValue

type TypedAttributeValue struct {

    // A binary data value.
    //
    // BinaryValue is automatically base64 encoded/decoded by the SDK.
    BinaryValue []byte `type:"blob"`

    // A Boolean data value.
    BooleanValue *bool `type:"boolean"`

    // A date and time value.
    DatetimeValue *time.Time `type:"timestamp" timestampFormat:"unix"`

    // A number data value.
    NumberValue *string `type:"string"`

    // A string data value.
    StringValue *string `type:"string"`
    // contains filtered or unexported fields
}

func (TypedAttributeValue) GoString

func (s TypedAttributeValue) GoString() string

GoString returns the string representation

func (*TypedAttributeValue) SetBinaryValue

func (s *TypedAttributeValue) SetBinaryValue(v []byte) *TypedAttributeValue

SetBinaryValue sets the BinaryValue field's value.

func (*TypedAttributeValue) SetBooleanValue

func (s *TypedAttributeValue) SetBooleanValue(v bool) *TypedAttributeValue

SetBooleanValue sets the BooleanValue field's value.

func (*TypedAttributeValue) SetDatetimeValue

func (s *TypedAttributeValue) SetDatetimeValue(v time.Time) *TypedAttributeValue

SetDatetimeValue sets the DatetimeValue field's value.

func (*TypedAttributeValue) SetNumberValue

func (s *TypedAttributeValue) SetNumberValue(v string) *TypedAttributeValue

SetNumberValue sets the NumberValue field's value.

func (*TypedAttributeValue) SetStringValue

func (s *TypedAttributeValue) SetStringValue(v string) *TypedAttributeValue

SetStringValue sets the StringValue field's value.

func (TypedAttributeValue) String

func (s TypedAttributeValue) String() string

String returns the string representation

type TypedAttributeValueRange

A range of attribute values. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/TypedAttributeValueRange

type TypedAttributeValueRange struct {

    // The inclusive or exclusive range end.
    //
    // EndMode is a required field
    EndMode *string `type:"string" required:"true" enum:"RangeMode"`

    // The attribute value to terminate the range at.
    EndValue *TypedAttributeValue `type:"structure"`

    // The inclusive or exclusive range start.
    //
    // StartMode is a required field
    StartMode *string `type:"string" required:"true" enum:"RangeMode"`

    // The value to start the range at.
    StartValue *TypedAttributeValue `type:"structure"`
    // contains filtered or unexported fields
}

func (TypedAttributeValueRange) GoString

func (s TypedAttributeValueRange) GoString() string

GoString returns the string representation

func (*TypedAttributeValueRange) SetEndMode

func (s *TypedAttributeValueRange) SetEndMode(v string) *TypedAttributeValueRange

SetEndMode sets the EndMode field's value.

func (*TypedAttributeValueRange) SetEndValue

func (s *TypedAttributeValueRange) SetEndValue(v *TypedAttributeValue) *TypedAttributeValueRange

SetEndValue sets the EndValue field's value.

func (*TypedAttributeValueRange) SetStartMode

func (s *TypedAttributeValueRange) SetStartMode(v string) *TypedAttributeValueRange

SetStartMode sets the StartMode field's value.

func (*TypedAttributeValueRange) SetStartValue

func (s *TypedAttributeValueRange) SetStartValue(v *TypedAttributeValue) *TypedAttributeValueRange

SetStartValue sets the StartValue field's value.

func (TypedAttributeValueRange) String

func (s TypedAttributeValueRange) String() string

String returns the string representation

func (*TypedAttributeValueRange) Validate

func (s *TypedAttributeValueRange) Validate() error

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

type TypedLinkAttributeDefinition

A typed link attribute definition. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/TypedLinkAttributeDefinition

type TypedLinkAttributeDefinition struct {

    // The default value of the attribute (if configured).
    DefaultValue *TypedAttributeValue `type:"structure"`

    // Whether the attribute is mutable or not.
    IsImmutable *bool `type:"boolean"`

    // The unique name of the typed link attribute.
    //
    // Name is a required field
    Name *string `min:"1" type:"string" required:"true"`

    // The required behavior of the TypedLinkAttributeDefinition.
    //
    // RequiredBehavior is a required field
    RequiredBehavior *string `type:"string" required:"true" enum:"RequiredAttributeBehavior"`

    // Validation rules that are attached to the attribute definition.
    Rules map[string]*Rule `type:"map"`

    // The type of the attribute.
    //
    // Type is a required field
    Type *string `type:"string" required:"true" enum:"FacetAttributeType"`
    // contains filtered or unexported fields
}

func (TypedLinkAttributeDefinition) GoString

func (s TypedLinkAttributeDefinition) GoString() string

GoString returns the string representation

func (*TypedLinkAttributeDefinition) SetDefaultValue

func (s *TypedLinkAttributeDefinition) SetDefaultValue(v *TypedAttributeValue) *TypedLinkAttributeDefinition

SetDefaultValue sets the DefaultValue field's value.

func (*TypedLinkAttributeDefinition) SetIsImmutable

func (s *TypedLinkAttributeDefinition) SetIsImmutable(v bool) *TypedLinkAttributeDefinition

SetIsImmutable sets the IsImmutable field's value.

func (*TypedLinkAttributeDefinition) SetName

func (s *TypedLinkAttributeDefinition) SetName(v string) *TypedLinkAttributeDefinition

SetName sets the Name field's value.

func (*TypedLinkAttributeDefinition) SetRequiredBehavior

func (s *TypedLinkAttributeDefinition) SetRequiredBehavior(v string) *TypedLinkAttributeDefinition

SetRequiredBehavior sets the RequiredBehavior field's value.

func (*TypedLinkAttributeDefinition) SetRules

func (s *TypedLinkAttributeDefinition) SetRules(v map[string]*Rule) *TypedLinkAttributeDefinition

SetRules sets the Rules field's value.

func (*TypedLinkAttributeDefinition) SetType

func (s *TypedLinkAttributeDefinition) SetType(v string) *TypedLinkAttributeDefinition

SetType sets the Type field's value.

func (TypedLinkAttributeDefinition) String

func (s TypedLinkAttributeDefinition) String() string

String returns the string representation

func (*TypedLinkAttributeDefinition) Validate

func (s *TypedLinkAttributeDefinition) Validate() error

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

type TypedLinkAttributeRange

Identifies the range of attributes that are used by a specified filter. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/TypedLinkAttributeRange

type TypedLinkAttributeRange struct {

    // The unique name of the typed link attribute.
    AttributeName *string `min:"1" type:"string"`

    // The range of attribute values that are being selected.
    //
    // Range is a required field
    Range *TypedAttributeValueRange `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (TypedLinkAttributeRange) GoString

func (s TypedLinkAttributeRange) GoString() string

GoString returns the string representation

func (*TypedLinkAttributeRange) SetAttributeName

func (s *TypedLinkAttributeRange) SetAttributeName(v string) *TypedLinkAttributeRange

SetAttributeName sets the AttributeName field's value.

func (*TypedLinkAttributeRange) SetRange

func (s *TypedLinkAttributeRange) SetRange(v *TypedAttributeValueRange) *TypedLinkAttributeRange

SetRange sets the Range field's value.

func (TypedLinkAttributeRange) String

func (s TypedLinkAttributeRange) String() string

String returns the string representation

func (*TypedLinkAttributeRange) Validate

func (s *TypedLinkAttributeRange) Validate() error

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

type TypedLinkFacet

Defines the typed links structure and its attributes. To create a typed link facet, use the CreateTypedLinkFacet API. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/TypedLinkFacet

type TypedLinkFacet struct {

    // A set of key-value pairs associated with the typed link. Typed link attributes
    // are used when you have data values that are related to the link itself, and
    // not to one of the two objects being linked. Identity attributes also serve
    // to distinguish the link from others of the same type between the same objects.
    //
    // Attributes is a required field
    Attributes []*TypedLinkAttributeDefinition `type:"list" required:"true"`

    // The set of attributes that distinguish links made from this facet from each
    // other, in the order of significance. Listing typed links can filter on the
    // values of these attributes. See ListOutgoingTypedLinks and ListIncomingTypeLinks
    // for details.
    //
    // IdentityAttributeOrder is a required field
    IdentityAttributeOrder []*string `type:"list" required:"true"`

    // The unique name of the typed link facet.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (TypedLinkFacet) GoString

func (s TypedLinkFacet) GoString() string

GoString returns the string representation

func (*TypedLinkFacet) SetAttributes

func (s *TypedLinkFacet) SetAttributes(v []*TypedLinkAttributeDefinition) *TypedLinkFacet

SetAttributes sets the Attributes field's value.

func (*TypedLinkFacet) SetIdentityAttributeOrder

func (s *TypedLinkFacet) SetIdentityAttributeOrder(v []*string) *TypedLinkFacet

SetIdentityAttributeOrder sets the IdentityAttributeOrder field's value.

func (*TypedLinkFacet) SetName

func (s *TypedLinkFacet) SetName(v string) *TypedLinkFacet

SetName sets the Name field's value.

func (TypedLinkFacet) String

func (s TypedLinkFacet) String() string

String returns the string representation

func (*TypedLinkFacet) Validate

func (s *TypedLinkFacet) Validate() error

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

type TypedLinkFacetAttributeUpdate

A typed link facet attribute update. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/TypedLinkFacetAttributeUpdate

type TypedLinkFacetAttributeUpdate struct {

    // The action to perform when updating the attribute.
    //
    // Action is a required field
    Action *string `type:"string" required:"true" enum:"UpdateActionType"`

    // The attribute to update.
    //
    // Attribute is a required field
    Attribute *TypedLinkAttributeDefinition `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (TypedLinkFacetAttributeUpdate) GoString

func (s TypedLinkFacetAttributeUpdate) GoString() string

GoString returns the string representation

func (*TypedLinkFacetAttributeUpdate) SetAction

func (s *TypedLinkFacetAttributeUpdate) SetAction(v string) *TypedLinkFacetAttributeUpdate

SetAction sets the Action field's value.

func (*TypedLinkFacetAttributeUpdate) SetAttribute

func (s *TypedLinkFacetAttributeUpdate) SetAttribute(v *TypedLinkAttributeDefinition) *TypedLinkFacetAttributeUpdate

SetAttribute sets the Attribute field's value.

func (TypedLinkFacetAttributeUpdate) String

func (s TypedLinkFacetAttributeUpdate) String() string

String returns the string representation

func (*TypedLinkFacetAttributeUpdate) Validate

func (s *TypedLinkFacetAttributeUpdate) Validate() error

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

type TypedLinkSchemaAndFacetName

Identifies the schema Amazon Resource Name (ARN) and facet name for the typed link. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/TypedLinkSchemaAndFacetName

type TypedLinkSchemaAndFacetName struct {

    // The Amazon Resource Name (ARN) that is associated with the schema. For more
    // information, see arns.
    //
    // SchemaArn is a required field
    SchemaArn *string `type:"string" required:"true"`

    // The unique name of the typed link facet.
    //
    // TypedLinkName is a required field
    TypedLinkName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (TypedLinkSchemaAndFacetName) GoString

func (s TypedLinkSchemaAndFacetName) GoString() string

GoString returns the string representation

func (*TypedLinkSchemaAndFacetName) SetSchemaArn

func (s *TypedLinkSchemaAndFacetName) SetSchemaArn(v string) *TypedLinkSchemaAndFacetName

SetSchemaArn sets the SchemaArn field's value.

func (*TypedLinkSchemaAndFacetName) SetTypedLinkName

func (s *TypedLinkSchemaAndFacetName) SetTypedLinkName(v string) *TypedLinkSchemaAndFacetName

SetTypedLinkName sets the TypedLinkName field's value.

func (TypedLinkSchemaAndFacetName) String

func (s TypedLinkSchemaAndFacetName) String() string

String returns the string representation

func (*TypedLinkSchemaAndFacetName) Validate

func (s *TypedLinkSchemaAndFacetName) Validate() error

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

type TypedLinkSpecifier

Contains all the information that is used to uniquely identify a typed link. The parameters discussed in this topic are used to uniquely specify the typed link being operated on. The AttachTypedLink API returns a typed link specifier while the DetachTypedLink API accepts one as input. Similarly, the ListIncomingTypedLinks and ListOutgoingTypedLinks API operations provide typed link specifiers as output. You can also construct a typed link specifier from scratch. Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/TypedLinkSpecifier

type TypedLinkSpecifier struct {

    // Identifies the attribute value to update.
    //
    // IdentityAttributeValues is a required field
    IdentityAttributeValues []*AttributeNameAndValue `type:"list" required:"true"`

    // Identifies the source object that the typed link will attach to.
    //
    // SourceObjectReference is a required field
    SourceObjectReference *ObjectReference `type:"structure" required:"true"`

    // Identifies the target object that the typed link will attach to.
    //
    // TargetObjectReference is a required field
    TargetObjectReference *ObjectReference `type:"structure" required:"true"`

    // Identifies the typed link facet that is associated with the typed link.
    //
    // TypedLinkFacet is a required field
    TypedLinkFacet *TypedLinkSchemaAndFacetName `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (TypedLinkSpecifier) GoString

func (s TypedLinkSpecifier) GoString() string

GoString returns the string representation

func (*TypedLinkSpecifier) SetIdentityAttributeValues

func (s *TypedLinkSpecifier) SetIdentityAttributeValues(v []*AttributeNameAndValue) *TypedLinkSpecifier

SetIdentityAttributeValues sets the IdentityAttributeValues field's value.

func (*TypedLinkSpecifier) SetSourceObjectReference

func (s *TypedLinkSpecifier) SetSourceObjectReference(v *ObjectReference) *TypedLinkSpecifier

SetSourceObjectReference sets the SourceObjectReference field's value.

func (*TypedLinkSpecifier) SetTargetObjectReference

func (s *TypedLinkSpecifier) SetTargetObjectReference(v *ObjectReference) *TypedLinkSpecifier

SetTargetObjectReference sets the TargetObjectReference field's value.

func (*TypedLinkSpecifier) SetTypedLinkFacet

func (s *TypedLinkSpecifier) SetTypedLinkFacet(v *TypedLinkSchemaAndFacetName) *TypedLinkSpecifier

SetTypedLinkFacet sets the TypedLinkFacet field's value.

func (TypedLinkSpecifier) String

func (s TypedLinkSpecifier) String() string

String returns the string representation

func (*TypedLinkSpecifier) Validate

func (s *TypedLinkSpecifier) Validate() error

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

type UntagResourceInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UntagResourceRequest

type UntagResourceInput struct {

    // The Amazon Resource Name (ARN) of the resource. Tagging is only supported
    // for directories.
    //
    // ResourceArn is a required field
    ResourceArn *string `type:"string" required:"true"`

    // Keys of the tag that need to be removed from the resource.
    //
    // TagKeys is a required field
    TagKeys []*string `type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (UntagResourceInput) GoString

func (s UntagResourceInput) GoString() string

GoString returns the string representation

func (*UntagResourceInput) SetResourceArn

func (s *UntagResourceInput) SetResourceArn(v string) *UntagResourceInput

SetResourceArn sets the ResourceArn field's value.

func (*UntagResourceInput) SetTagKeys

func (s *UntagResourceInput) SetTagKeys(v []*string) *UntagResourceInput

SetTagKeys sets the TagKeys field's value.

func (UntagResourceInput) String

func (s UntagResourceInput) String() string

String returns the string representation

func (*UntagResourceInput) Validate

func (s *UntagResourceInput) Validate() error

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

type UntagResourceOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UntagResourceResponse

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

func (UntagResourceOutput) GoString

func (s UntagResourceOutput) GoString() string

GoString returns the string representation

func (UntagResourceOutput) String

func (s UntagResourceOutput) String() string

String returns the string representation

type UpdateFacetInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateFacetRequest

type UpdateFacetInput struct {

    // List of attributes that need to be updated in a given schema Facet. Each
    // attribute is followed by AttributeAction, which specifies the type of update
    // operation to perform.
    AttributeUpdates []*FacetAttributeUpdate `type:"list"`

    // The name of the facet.
    //
    // Name is a required field
    Name *string `min:"1" type:"string" required:"true"`

    // The object type that is associated with the facet. See CreateFacetRequest$ObjectType
    // for more details.
    ObjectType *string `type:"string" enum:"ObjectType"`

    // The Amazon Resource Name (ARN) that is associated with the Facet. For more
    // information, see arns.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (UpdateFacetInput) GoString

func (s UpdateFacetInput) GoString() string

GoString returns the string representation

func (*UpdateFacetInput) SetAttributeUpdates

func (s *UpdateFacetInput) SetAttributeUpdates(v []*FacetAttributeUpdate) *UpdateFacetInput

SetAttributeUpdates sets the AttributeUpdates field's value.

func (*UpdateFacetInput) SetName

func (s *UpdateFacetInput) SetName(v string) *UpdateFacetInput

SetName sets the Name field's value.

func (*UpdateFacetInput) SetObjectType

func (s *UpdateFacetInput) SetObjectType(v string) *UpdateFacetInput

SetObjectType sets the ObjectType field's value.

func (*UpdateFacetInput) SetSchemaArn

func (s *UpdateFacetInput) SetSchemaArn(v string) *UpdateFacetInput

SetSchemaArn sets the SchemaArn field's value.

func (UpdateFacetInput) String

func (s UpdateFacetInput) String() string

String returns the string representation

func (*UpdateFacetInput) Validate

func (s *UpdateFacetInput) Validate() error

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

type UpdateFacetOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateFacetResponse

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

func (UpdateFacetOutput) GoString

func (s UpdateFacetOutput) GoString() string

GoString returns the string representation

func (UpdateFacetOutput) String

func (s UpdateFacetOutput) String() string

String returns the string representation

type UpdateObjectAttributesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateObjectAttributesRequest

type UpdateObjectAttributesInput struct {

    // The attributes update structure.
    //
    // AttributeUpdates is a required field
    AttributeUpdates []*ObjectAttributeUpdate `type:"list" required:"true"`

    // The Amazon Resource Name (ARN) that is associated with the Directory where
    // the object resides. For more information, see arns.
    //
    // DirectoryArn is a required field
    DirectoryArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`

    // The reference that identifies the object.
    //
    // ObjectReference is a required field
    ObjectReference *ObjectReference `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (UpdateObjectAttributesInput) GoString

func (s UpdateObjectAttributesInput) GoString() string

GoString returns the string representation

func (*UpdateObjectAttributesInput) SetAttributeUpdates

func (s *UpdateObjectAttributesInput) SetAttributeUpdates(v []*ObjectAttributeUpdate) *UpdateObjectAttributesInput

SetAttributeUpdates sets the AttributeUpdates field's value.

func (*UpdateObjectAttributesInput) SetDirectoryArn

func (s *UpdateObjectAttributesInput) SetDirectoryArn(v string) *UpdateObjectAttributesInput

SetDirectoryArn sets the DirectoryArn field's value.

func (*UpdateObjectAttributesInput) SetObjectReference

func (s *UpdateObjectAttributesInput) SetObjectReference(v *ObjectReference) *UpdateObjectAttributesInput

SetObjectReference sets the ObjectReference field's value.

func (UpdateObjectAttributesInput) String

func (s UpdateObjectAttributesInput) String() string

String returns the string representation

func (*UpdateObjectAttributesInput) Validate

func (s *UpdateObjectAttributesInput) Validate() error

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

type UpdateObjectAttributesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateObjectAttributesResponse

type UpdateObjectAttributesOutput struct {

    // The ObjectIdentifier of the updated object.
    ObjectIdentifier *string `type:"string"`
    // contains filtered or unexported fields
}

func (UpdateObjectAttributesOutput) GoString

func (s UpdateObjectAttributesOutput) GoString() string

GoString returns the string representation

func (*UpdateObjectAttributesOutput) SetObjectIdentifier

func (s *UpdateObjectAttributesOutput) SetObjectIdentifier(v string) *UpdateObjectAttributesOutput

SetObjectIdentifier sets the ObjectIdentifier field's value.

func (UpdateObjectAttributesOutput) String

func (s UpdateObjectAttributesOutput) String() string

String returns the string representation

type UpdateSchemaInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateSchemaRequest

type UpdateSchemaInput struct {

    // The name of the schema.
    //
    // Name is a required field
    Name *string `min:"1" type:"string" required:"true"`

    // The Amazon Resource Name (ARN) of the development schema. For more information,
    // see arns.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (UpdateSchemaInput) GoString

func (s UpdateSchemaInput) GoString() string

GoString returns the string representation

func (*UpdateSchemaInput) SetName

func (s *UpdateSchemaInput) SetName(v string) *UpdateSchemaInput

SetName sets the Name field's value.

func (*UpdateSchemaInput) SetSchemaArn

func (s *UpdateSchemaInput) SetSchemaArn(v string) *UpdateSchemaInput

SetSchemaArn sets the SchemaArn field's value.

func (UpdateSchemaInput) String

func (s UpdateSchemaInput) String() string

String returns the string representation

func (*UpdateSchemaInput) Validate

func (s *UpdateSchemaInput) Validate() error

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

type UpdateSchemaOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateSchemaResponse

type UpdateSchemaOutput struct {

    // The ARN that is associated with the updated schema. For more information,
    // see arns.
    SchemaArn *string `type:"string"`
    // contains filtered or unexported fields
}

func (UpdateSchemaOutput) GoString

func (s UpdateSchemaOutput) GoString() string

GoString returns the string representation

func (*UpdateSchemaOutput) SetSchemaArn

func (s *UpdateSchemaOutput) SetSchemaArn(v string) *UpdateSchemaOutput

SetSchemaArn sets the SchemaArn field's value.

func (UpdateSchemaOutput) String

func (s UpdateSchemaOutput) String() string

String returns the string representation

type UpdateTypedLinkFacetInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateTypedLinkFacetRequest

type UpdateTypedLinkFacetInput struct {

    // Attributes update structure.
    //
    // AttributeUpdates is a required field
    AttributeUpdates []*TypedLinkFacetAttributeUpdate `type:"list" required:"true"`

    // The order of identity attributes for the facet, from most significant to
    // least significant. The ability to filter typed links considers the order
    // that the attributes are defined on the typed link facet. When providing ranges
    // to a typed link selection, any inexact ranges must be specified at the end.
    // Any attributes that do not have a range specified are presumed to match the
    // entire range. Filters are interpreted in the order of the attributes on the
    // typed link facet, not the order in which they are supplied to any API calls.
    // For more information about identity attributes, see Typed link (http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink).
    //
    // IdentityAttributeOrder is a required field
    IdentityAttributeOrder []*string `type:"list" required:"true"`

    // The unique name of the typed link facet.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`

    // The Amazon Resource Name (ARN) that is associated with the schema. For more
    // information, see arns.
    //
    // SchemaArn is a required field
    SchemaArn *string `location:"header" locationName:"x-amz-data-partition" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (UpdateTypedLinkFacetInput) GoString

func (s UpdateTypedLinkFacetInput) GoString() string

GoString returns the string representation

func (*UpdateTypedLinkFacetInput) SetAttributeUpdates

func (s *UpdateTypedLinkFacetInput) SetAttributeUpdates(v []*TypedLinkFacetAttributeUpdate) *UpdateTypedLinkFacetInput

SetAttributeUpdates sets the AttributeUpdates field's value.

func (*UpdateTypedLinkFacetInput) SetIdentityAttributeOrder

func (s *UpdateTypedLinkFacetInput) SetIdentityAttributeOrder(v []*string) *UpdateTypedLinkFacetInput

SetIdentityAttributeOrder sets the IdentityAttributeOrder field's value.

func (*UpdateTypedLinkFacetInput) SetName

func (s *UpdateTypedLinkFacetInput) SetName(v string) *UpdateTypedLinkFacetInput

SetName sets the Name field's value.

func (*UpdateTypedLinkFacetInput) SetSchemaArn

func (s *UpdateTypedLinkFacetInput) SetSchemaArn(v string) *UpdateTypedLinkFacetInput

SetSchemaArn sets the SchemaArn field's value.

func (UpdateTypedLinkFacetInput) String

func (s UpdateTypedLinkFacetInput) String() string

String returns the string representation

func (*UpdateTypedLinkFacetInput) Validate

func (s *UpdateTypedLinkFacetInput) Validate() error

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

type UpdateTypedLinkFacetOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2016-05-10/UpdateTypedLinkFacetResponse

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

func (UpdateTypedLinkFacetOutput) GoString

func (s UpdateTypedLinkFacetOutput) GoString() string

GoString returns the string representation

func (UpdateTypedLinkFacetOutput) String

func (s UpdateTypedLinkFacetOutput) String() string

String returns the string representation

Subdirectories

Name Synopsis
..
clouddirectoryiface Package clouddirectoryiface provides an interface to enable mocking the Amazon CloudDirectory service client for testing your code.