package types

import "github.com/aws/aws-sdk-go-v2/service/clouddirectory/types"

Index

Types

type AccessDeniedException

type AccessDeniedException struct {
	Message *string
}

Access denied. Check your permissions.

func (*AccessDeniedException) Error

func (e *AccessDeniedException) Error() string

func (*AccessDeniedException) ErrorCode

func (e *AccessDeniedException) ErrorCode() string

func (*AccessDeniedException) ErrorFault

func (e *AccessDeniedException) ErrorFault() smithy.ErrorFault

func (*AccessDeniedException) ErrorMessage

func (e *AccessDeniedException) ErrorMessage() string

func (*AccessDeniedException) GetMessage

func (e *AccessDeniedException) GetMessage() string

func (*AccessDeniedException) HasMessage

func (e *AccessDeniedException) HasMessage() bool

type AttributeKey

type AttributeKey struct {
	// The name of the facet that the attribute exists within.
	FacetName *string
	// The Amazon Resource Name (ARN) of the schema that contains the facet and
	// attribute.
	SchemaArn *string
	// The name of the attribute.
	Name *string
}

A unique identifier for an attribute.

type AttributeKeyAndValue

type AttributeKeyAndValue struct {
	// The key of the attribute.
	Key *AttributeKey
	// The value of the attribute.
	Value *TypedAttributeValue
}

The combination of an attribute key and an attribute value.

type AttributeNameAndValue

type AttributeNameAndValue struct {
	// The value for the typed link.
	Value *TypedAttributeValue
	// The attribute name of the typed link.
	AttributeName *string
}

Identifies the attribute name and value for a typed link.

type BatchAddFacetToObject

type BatchAddFacetToObject struct {
	// The attributes to set on the object.
	ObjectAttributeList []*AttributeKeyAndValue
	// A reference to the object being mutated.
	ObjectReference *ObjectReference
	// Represents the facet being added to the object.
	SchemaFacet *SchemaFacet
}

Represents the output of a batch add facet to object operation.

type BatchAddFacetToObjectResponse

type BatchAddFacetToObjectResponse struct {
}

The result of a batch add facet to object operation.

type BatchAttachObject

type BatchAttachObject struct {
	// The name of the link.
	LinkName *string
	// The parent object reference.
	ParentReference *ObjectReference
	// The child object reference that is to be attached to the object.
	ChildReference *ObjectReference
}

Represents the output of an AttachObject () operation.

type BatchAttachObjectResponse

type BatchAttachObjectResponse struct {
	// The ObjectIdentifier of the object that has been attached.
	AttachedObjectIdentifier *string
}

Represents the output batch AttachObject () response operation.

type BatchAttachPolicy

type BatchAttachPolicy struct {
	// The reference that identifies the object to which the policy will be attached.
	ObjectReference *ObjectReference
	// The reference that is associated with the policy object.
	PolicyReference *ObjectReference
}

Attaches a policy object to a regular object inside a BatchRead () operation. For more information, see AttachPolicy () and BatchReadRequest$Operations ().

type BatchAttachPolicyResponse

type BatchAttachPolicyResponse struct {
}

Represents the output of an AttachPolicy () response operation.

type BatchAttachToIndex

type BatchAttachToIndex struct {
	// A reference to the object that you are attaching to the index.
	TargetReference *ObjectReference
	// A reference to the index that you are attaching the object to.
	IndexReference *ObjectReference
}

Attaches the specified object to the specified index inside a BatchRead () operation. For more information, see AttachToIndex () and BatchReadRequest$Operations ().

type BatchAttachToIndexResponse

type BatchAttachToIndexResponse struct {
	// The ObjectIdentifier of the object that was attached to the index.
	AttachedObjectIdentifier *string
}

Represents the output of a AttachToIndex () response operation.

type BatchAttachTypedLink struct {
	// Identifies the source object that the typed link will attach to.
	SourceObjectReference *ObjectReference
	// Identifies the target object that the typed link will attach to.
	TargetObjectReference *ObjectReference
	// Identifies the typed link facet that is associated with the typed link.
	TypedLinkFacet *TypedLinkSchemaAndFacetName
	// A set of attributes that are associated with the typed link.
	Attributes []*AttributeNameAndValue
}

Attaches a typed link to a specified source and target object inside a BatchRead () operation. For more information, see AttachTypedLink () and BatchReadRequest$Operations ().

type BatchAttachTypedLinkResponse

type BatchAttachTypedLinkResponse struct {
	// Returns a typed link specifier as output.
	TypedLinkSpecifier *TypedLinkSpecifier
}

Represents the output of a AttachTypedLink () response operation.

type BatchCreateIndex

type BatchCreateIndex struct {
	// Specifies the attributes that should be indexed on. Currently only a single
	// attribute is supported.
	OrderedIndexedAttributeList []*AttributeKey
	// A reference to the parent object that contains the index object.
	ParentReference *ObjectReference
	// The batch reference name. See Transaction Support
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/transaction_support.html)
	// for more information.
	BatchReferenceName *string
	// The name of the link between the parent object and the index object.
	LinkName *string
	// Indicates whether the attribute that is being indexed has unique values or not.
	IsUnique *bool
}

Creates an index object inside of a BatchRead () operation. For more information, see CreateIndex () and BatchReadRequest$Operations ().

type BatchCreateIndexResponse

type BatchCreateIndexResponse struct {
	// The ObjectIdentifier of the index created by this operation.
	ObjectIdentifier *string
}

Represents the output of a CreateIndex () response operation.

type BatchCreateObject

type BatchCreateObject struct {
	// If specified, the parent reference to which this object will be attached.
	ParentReference *ObjectReference
	// A list of FacetArns that will be associated with the object. For more
	// information, see arns ().
	SchemaFacet []*SchemaFacet
	// The name of the link.
	LinkName *string
	// The batch reference name. See Transaction Support
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/transaction_support.html)
	// for more information.
	BatchReferenceName *string
	// An attribute map, which contains an attribute ARN as the key and attribute value
	// as the map value.
	ObjectAttributeList []*AttributeKeyAndValue
}

Represents the output of a CreateObject () operation.

type BatchCreateObjectResponse

type BatchCreateObjectResponse struct {
	// The ID that is associated with the object.
	ObjectIdentifier *string
}

Represents the output of a CreateObject () response operation.

type BatchDeleteObject

type BatchDeleteObject struct {
	// The reference that identifies the object.
	ObjectReference *ObjectReference
}

Represents the output of a DeleteObject () operation.

type BatchDeleteObjectResponse

type BatchDeleteObjectResponse struct {
}

Represents the output of a DeleteObject () response operation.

type BatchDetachFromIndex

type BatchDetachFromIndex struct {
	// A reference to the index object.
	IndexReference *ObjectReference
	// A reference to the object being detached from the index.
	TargetReference *ObjectReference
}

Detaches the specified object from the specified index inside a BatchRead () operation. For more information, see DetachFromIndex () and BatchReadRequest$Operations ().

type BatchDetachFromIndexResponse

type BatchDetachFromIndexResponse struct {
	// The ObjectIdentifier of the object that was detached from the index.
	DetachedObjectIdentifier *string
}

Represents the output of a DetachFromIndex () response operation.

type BatchDetachObject

type BatchDetachObject struct {
	// The name of the link.
	LinkName *string
	// The batch reference name. See Transaction Support
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/transaction_support.html)
	// for more information.
	BatchReferenceName *string
	// Parent reference from which the object with the specified link name is detached.
	ParentReference *ObjectReference
}

Represents the output of a DetachObject () operation.

type BatchDetachObjectResponse

type BatchDetachObjectResponse struct {
	// The ObjectIdentifier of the detached object.
	DetachedObjectIdentifier *string
}

Represents the output of a DetachObject () response operation.

type BatchDetachPolicy

type BatchDetachPolicy struct {
	// Reference that identifies the object whose policy object will be detached.
	ObjectReference *ObjectReference
	// Reference that identifies the policy object.
	PolicyReference *ObjectReference
}

Detaches the specified policy from the specified directory inside a BatchWrite () operation. For more information, see DetachPolicy () and BatchWriteRequest$Operations ().

type BatchDetachPolicyResponse

type BatchDetachPolicyResponse struct {
}

Represents the output of a DetachPolicy () response operation.

type BatchDetachTypedLink struct {
	// Used to accept a typed link specifier as input.
	TypedLinkSpecifier *TypedLinkSpecifier
}

Detaches a typed link from a specified source and target object inside a BatchRead () operation. For more information, see DetachTypedLink () and BatchReadRequest$Operations ().

type BatchDetachTypedLinkResponse

type BatchDetachTypedLinkResponse struct {
}

Represents the output of a DetachTypedLink () response operation.

type BatchGetLinkAttributes

type BatchGetLinkAttributes struct {
	// A list of attribute names whose values will be retrieved.
	AttributeNames []*string
	// Allows a typed link specifier to be accepted as input.
	TypedLinkSpecifier *TypedLinkSpecifier
}

Retrieves attributes that are associated with a typed link inside a BatchRead () operation. For more information, see GetLinkAttributes () and BatchReadRequest$Operations ().

type BatchGetLinkAttributesResponse

type BatchGetLinkAttributesResponse struct {
	// The attributes that are associated with the typed link.
	Attributes []*AttributeKeyAndValue
}

Represents the output of a GetLinkAttributes () response operation.

type BatchGetObjectAttributes

type BatchGetObjectAttributes struct {
	// Identifier for the facet whose attributes will be retrieved. See SchemaFacet ()
	// for details.
	SchemaFacet *SchemaFacet
	// List of attribute names whose values will be retrieved.
	AttributeNames []*string
	// Reference that identifies the object whose attributes will be retrieved.
	ObjectReference *ObjectReference
}

Retrieves attributes within a facet that are associated with an object inside an BatchRead () operation. For more information, see GetObjectAttributes () and BatchReadRequest$Operations ().

type BatchGetObjectAttributesResponse

type BatchGetObjectAttributesResponse struct {
	// The attribute values that are associated with an object.
	Attributes []*AttributeKeyAndValue
}

Represents the output of a GetObjectAttributes () response operation.

type BatchGetObjectInformation

type BatchGetObjectInformation struct {
	// A reference to the object.
	ObjectReference *ObjectReference
}

Retrieves metadata about an object inside a BatchRead () operation. For more information, see GetObjectInformation () and BatchReadRequest$Operations ().

type BatchGetObjectInformationResponse

type BatchGetObjectInformationResponse struct {
	// The facets attached to the specified object.
	SchemaFacets []*SchemaFacet
	// The ObjectIdentifier of the specified object.
	ObjectIdentifier *string
}

Represents the output of a GetObjectInformation () response operation.

type BatchListAttachedIndices

type BatchListAttachedIndices struct {
	// A reference to the object that has indices attached.
	TargetReference *ObjectReference
	// The pagination token.
	NextToken *string
	// The maximum number of results to retrieve.
	MaxResults *int32
}

Lists indices attached to an object inside a BatchRead () operation. For more information, see ListAttachedIndices () and BatchReadRequest$Operations ().

type BatchListAttachedIndicesResponse

type BatchListAttachedIndicesResponse struct {
	// The indices attached to the specified object.
	IndexAttachments []*IndexAttachment
	// The pagination token.
	NextToken *string
}

Represents the output of a ListAttachedIndices () response operation.

type BatchListIncomingTypedLinks struct {
	// 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
	// The maximum number of results to retrieve.
	MaxResults *int32
	// The pagination token.
	NextToken *string
	// 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
	// The reference that identifies the object whose attributes will be listed.
	ObjectReference *ObjectReference
}

Returns a paginated list of all the incoming TypedLinkSpecifier () information for an object inside a BatchRead () operation. For more information, see ListIncomingTypedLinks () and BatchReadRequest$Operations ().

type BatchListIncomingTypedLinksResponse

type BatchListIncomingTypedLinksResponse struct {
	// The pagination token.
	NextToken *string
	// Returns one or more typed link specifiers as output.
	LinkSpecifiers []*TypedLinkSpecifier
}

Represents the output of a ListIncomingTypedLinks () response operation.

type BatchListIndex

type BatchListIndex struct {
	// The pagination token.
	NextToken *string
	// The maximum number of results to retrieve.
	MaxResults *int32
	// The reference to the index to list.
	IndexReference *ObjectReference
	// Specifies the ranges of indexed values that you want to query.
	RangesOnIndexedValues []*ObjectAttributeRange
}

Lists objects attached to the specified index inside a BatchRead () operation. For more information, see ListIndex () and BatchReadRequest$Operations ().

type BatchListIndexResponse

type BatchListIndexResponse struct {
	// The pagination token.
	NextToken *string
	// The objects and indexed values attached to the index.
	IndexAttachments []*IndexAttachment
}

Represents the output of a ListIndex () response operation.

type BatchListObjectAttributes

type BatchListObjectAttributes struct {
	// Reference of the object whose attributes need to be listed.
	ObjectReference *ObjectReference
	// Used to filter the list of object attributes that are associated with a certain
	// facet.
	FacetFilter *SchemaFacet
	// The maximum number of items to be retrieved in a single call. This is an
	// approximate number.
	MaxResults *int32
	// The pagination token.
	NextToken *string
}

Represents the output of a ListObjectAttributes () operation.

type BatchListObjectAttributesResponse

type BatchListObjectAttributesResponse struct {
	// The pagination token.
	NextToken *string
	// The attributes map that is associated with the object. AttributeArn is the key;
	// attribute value is the value.
	Attributes []*AttributeKeyAndValue
}

Represents the output of a ListObjectAttributes () response operation.

type BatchListObjectChildren

type BatchListObjectChildren struct {
	// Maximum number of items to be retrieved in a single call. This is an approximate
	// number.
	MaxResults *int32
	// The pagination token.
	NextToken *string
	// Reference of the object for which child objects are being listed.
	ObjectReference *ObjectReference
}

Represents the output of a ListObjectChildren () operation.

type 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
	// The pagination token.
	NextToken *string
}

Represents the output of a ListObjectChildren () response operation.

type BatchListObjectParentPaths

type BatchListObjectParentPaths struct {
	// The maximum number of results to retrieve.
	MaxResults *int32
	// The pagination token.
	NextToken *string
	// The reference that identifies the object whose attributes will be listed.
	ObjectReference *ObjectReference
}

Retrieves all available parent paths for any object type such as node, leaf node, policy node, and index node objects inside a BatchRead () operation. For more information, see ListObjectParentPaths () and BatchReadRequest$Operations ().

type BatchListObjectParentPathsResponse

type BatchListObjectParentPathsResponse struct {
	// Returns the path to the ObjectIdentifiers that are associated with the
	// directory.
	PathToObjectIdentifiersList []*PathToObjectIdentifiers
	// The pagination token.
	NextToken *string
}

Represents the output of a ListObjectParentPaths () response operation.

type BatchListObjectParents

type BatchListObjectParents struct {
	// The reference that identifies an object.
	ObjectReference *ObjectReference
	MaxResults      *int32
	NextToken       *string
}

type BatchListObjectParentsResponse

type BatchListObjectParentsResponse struct {
	NextToken   *string
	ParentLinks []*ObjectIdentifierAndLinkNameTuple
}

type BatchListObjectPolicies

type BatchListObjectPolicies struct {
	// The reference that identifies the object whose attributes will be listed.
	ObjectReference *ObjectReference
	// The pagination token.
	NextToken *string
	// The maximum number of results to retrieve.
	MaxResults *int32
}

Returns policies attached to an object in pagination fashion inside a BatchRead () operation. For more information, see ListObjectPolicies () and BatchReadRequest$Operations ().

type BatchListObjectPoliciesResponse

type BatchListObjectPoliciesResponse struct {
	// The pagination token.
	NextToken *string
	// A list of policy ObjectIdentifiers, that are attached to the object.
	AttachedPolicyIds []*string
}

Represents the output of a ListObjectPolicies () response operation.

type BatchListOutgoingTypedLinks struct {
	// 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
	// The reference that identifies the object whose attributes will be listed.
	ObjectReference *ObjectReference
	// The maximum number of results to retrieve.
	MaxResults *int32
	// 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
	// The pagination token.
	NextToken *string
}

Returns a paginated list of all the outgoing TypedLinkSpecifier () information for an object inside a BatchRead () operation. For more information, see ListOutgoingTypedLinks () and BatchReadRequest$Operations ().

type BatchListOutgoingTypedLinksResponse

type BatchListOutgoingTypedLinksResponse struct {
	// Returns a typed link specifier as output.
	TypedLinkSpecifiers []*TypedLinkSpecifier
	// The pagination token.
	NextToken *string
}

Represents the output of a ListOutgoingTypedLinks () response operation.

type BatchListPolicyAttachments

type BatchListPolicyAttachments struct {
	// The pagination token.
	NextToken *string
	// The reference that identifies the policy object.
	PolicyReference *ObjectReference
	// The maximum number of results to retrieve.
	MaxResults *int32
}

Returns all of the ObjectIdentifiers to which a given policy is attached inside a BatchRead () operation. For more information, see ListPolicyAttachments () and BatchReadRequest$Operations ().

type BatchListPolicyAttachmentsResponse

type BatchListPolicyAttachmentsResponse struct {
	// The pagination token.
	NextToken *string
	// A list of ObjectIdentifiers to which the policy is attached.
	ObjectIdentifiers []*string
}

Represents the output of a ListPolicyAttachments () response operation.

type BatchLookupPolicy

type BatchLookupPolicy struct {
	// The maximum number of results to retrieve.
	MaxResults *int32
	// Reference that identifies the object whose policies will be looked up.
	ObjectReference *ObjectReference
	// The pagination token.
	NextToken *string
}

Lists all policies from the root of the Directory to the object specified inside a BatchRead () operation. For more information, see LookupPolicy () and BatchReadRequest$Operations ().

type BatchLookupPolicyResponse

type BatchLookupPolicyResponse struct {
	// Provides list of path to policies. Policies contain PolicyId, ObjectIdentifier,
	// and PolicyType. For more information, see Policies
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies).
	PolicyToPathList []*PolicyToPath
	// The pagination token.
	NextToken *string
}

Represents the output of a LookupPolicy () response operation.

type BatchReadException

type BatchReadException struct {
	// A type of exception, such as InvalidArnException.
	Type BatchReadExceptionType
	// An exception message that is associated with the failure.
	Message *string
}

The batch read exception structure, which contains the exception type and message.

type BatchReadExceptionType

type BatchReadExceptionType string
const (
	BatchReadExceptionTypeValidationexception             BatchReadExceptionType = "ValidationException"
	BatchReadExceptionTypeInvalidarnexception             BatchReadExceptionType = "InvalidArnException"
	BatchReadExceptionTypeResourcenotfoundexception       BatchReadExceptionType = "ResourceNotFoundException"
	BatchReadExceptionTypeInvalidnexttokenexception       BatchReadExceptionType = "InvalidNextTokenException"
	BatchReadExceptionTypeAccessdeniedexception           BatchReadExceptionType = "AccessDeniedException"
	BatchReadExceptionTypeNotnodeexception                BatchReadExceptionType = "NotNodeException"
	BatchReadExceptionTypeFacetvalidationexception        BatchReadExceptionType = "FacetValidationException"
	BatchReadExceptionTypeCannotlistparentofrootexception BatchReadExceptionType = "CannotListParentOfRootException"
	BatchReadExceptionTypeNotindexexception               BatchReadExceptionType = "NotIndexException"
	BatchReadExceptionTypeNotpolicyexception              BatchReadExceptionType = "NotPolicyException"
	BatchReadExceptionTypeDirectorynotenabledexception    BatchReadExceptionType = "DirectoryNotEnabledException"
	BatchReadExceptionTypeLimitexceededexception          BatchReadExceptionType = "LimitExceededException"
	BatchReadExceptionTypeInternalserviceexception        BatchReadExceptionType = "InternalServiceException"
)

Enum values for BatchReadExceptionType

type BatchReadOperation

type BatchReadOperation struct {
	// 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 Links
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink).
	ListOutgoingTypedLinks *BatchListOutgoingTypedLinks
	ListObjectParents      *BatchListObjectParents
	// Lists objects attached to the specified index.
	ListIndex *BatchListIndex
	// 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 Links
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink).
	ListIncomingTypedLinks *BatchListIncomingTypedLinks
	// Returns policies attached to an object in pagination fashion.
	ListObjectPolicies *BatchListObjectPolicies
	// Lists all attributes that are associated with an object.
	ListObjectAttributes *BatchListObjectAttributes
	// Retrieves attributes that are associated with a typed link.
	GetLinkAttributes *BatchGetLinkAttributes
	// 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
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies).
	LookupPolicy *BatchLookupPolicy
	// Returns a paginated list of child objects that are associated with a given
	// object.
	ListObjectChildren *BatchListObjectChildren
	// Retrieves metadata about an object.
	GetObjectInformation *BatchGetObjectInformation
	// Lists indices attached to an object.
	ListAttachedIndices *BatchListAttachedIndices
	// Returns all of the ObjectIdentifiers to which a given policy is attached.
	ListPolicyAttachments *BatchListPolicyAttachments
	// Retrieves attributes within a facet that are associated with an object.
	GetObjectAttributes *BatchGetObjectAttributes
	// 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
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directorystructure.html).
	ListObjectParentPaths *BatchListObjectParentPaths
}

Represents the output of a BatchRead operation.

type BatchReadOperationResponse

type BatchReadOperationResponse struct {
	// Identifies which operation in a batch has succeeded.
	SuccessfulResponse *BatchReadSuccessfulResponse
	// Identifies which operation in a batch has failed.
	ExceptionResponse *BatchReadException
}

Represents the output of a BatchRead response operation.

type BatchReadSuccessfulResponse

type BatchReadSuccessfulResponse struct {
	// Lists all attributes that are associated with an object.
	ListObjectAttributes *BatchListObjectAttributesResponse
	// 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 Links
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink).
	ListIncomingTypedLinks *BatchListIncomingTypedLinksResponse
	// Retrieves attributes within a facet that are associated with an object.
	GetObjectAttributes *BatchGetObjectAttributesResponse
	// Lists objects attached to the specified index.
	ListIndex *BatchListIndexResponse
	// Returns policies attached to an object in pagination fashion.
	ListObjectPolicies *BatchListObjectPoliciesResponse
	// The list of attributes to retrieve from the typed link.
	GetLinkAttributes *BatchGetLinkAttributesResponse
	// Returns a paginated list of child objects that are associated with a given
	// object.
	ListObjectChildren *BatchListObjectChildrenResponse
	// 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
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies).
	LookupPolicy *BatchLookupPolicyResponse
	// Retrieves metadata about an object.
	GetObjectInformation *BatchGetObjectInformationResponse
	ListObjectParents    *BatchListObjectParentsResponse
	// 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
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directorystructure.html).
	ListObjectParentPaths *BatchListObjectParentPathsResponse
	// Lists indices attached to an object.
	ListAttachedIndices *BatchListAttachedIndicesResponse
	// Returns all of the ObjectIdentifiers to which a given policy is attached.
	ListPolicyAttachments *BatchListPolicyAttachmentsResponse
	// 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 Links
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink).
	ListOutgoingTypedLinks *BatchListOutgoingTypedLinksResponse
}

Represents the output of a BatchRead success response operation.

type BatchRemoveFacetFromObject

type BatchRemoveFacetFromObject struct {
	// A reference to the object whose facet will be removed.
	ObjectReference *ObjectReference
	// The facet to remove from the object.
	SchemaFacet *SchemaFacet
}

A batch operation to remove a facet from an object.

type BatchRemoveFacetFromObjectResponse

type BatchRemoveFacetFromObjectResponse struct {
}

An empty result that represents success.

type BatchUpdateLinkAttributes

type BatchUpdateLinkAttributes struct {
	// The attributes update structure.
	AttributeUpdates []*LinkAttributeUpdate
	// Allows a typed link specifier to be accepted as input.
	TypedLinkSpecifier *TypedLinkSpecifier
}

Updates a given typed link’s attributes inside a BatchRead () operation. Attributes to be updated must not contribute to the typed link’s identity, as defined by its IdentityAttributeOrder. For more information, see UpdateLinkAttributes () and BatchReadRequest$Operations ().

type BatchUpdateLinkAttributesResponse

type BatchUpdateLinkAttributesResponse struct {
}

Represents the output of a UpdateLinkAttributes () response operation.

type BatchUpdateObjectAttributes

type BatchUpdateObjectAttributes struct {
	// Reference that identifies the object.
	ObjectReference *ObjectReference
	// Attributes update structure.
	AttributeUpdates []*ObjectAttributeUpdate
}

Represents the output of a BatchUpdate operation.

type BatchUpdateObjectAttributesResponse

type BatchUpdateObjectAttributesResponse struct {
	// ID that is associated with the object.
	ObjectIdentifier *string
}

Represents the output of a BatchUpdate response operation.

type BatchWriteException

type BatchWriteException struct {
	Message *string

	Index *int32
	Type  BatchWriteExceptionType
}

A BatchWrite exception has occurred.

func (*BatchWriteException) Error

func (e *BatchWriteException) Error() string

func (*BatchWriteException) ErrorCode

func (e *BatchWriteException) ErrorCode() string

func (*BatchWriteException) ErrorFault

func (e *BatchWriteException) ErrorFault() smithy.ErrorFault

func (*BatchWriteException) ErrorMessage

func (e *BatchWriteException) ErrorMessage() string

func (*BatchWriteException) GetIndex

func (e *BatchWriteException) GetIndex() int32

func (*BatchWriteException) GetMessage

func (e *BatchWriteException) GetMessage() string

func (*BatchWriteException) GetType

func (*BatchWriteException) HasIndex

func (e *BatchWriteException) HasIndex() bool

func (*BatchWriteException) HasMessage

func (e *BatchWriteException) HasMessage() bool

type BatchWriteExceptionType

type BatchWriteExceptionType string
const (
	BatchWriteExceptionTypeInternalserviceexception         BatchWriteExceptionType = "InternalServiceException"
	BatchWriteExceptionTypeValidationexception              BatchWriteExceptionType = "ValidationException"
	BatchWriteExceptionTypeInvalidarnexception              BatchWriteExceptionType = "InvalidArnException"
	BatchWriteExceptionTypeLinknamealreadyinuseexception    BatchWriteExceptionType = "LinkNameAlreadyInUseException"
	BatchWriteExceptionTypeStillcontainslinksexception      BatchWriteExceptionType = "StillContainsLinksException"
	BatchWriteExceptionTypeFacetvalidationexception         BatchWriteExceptionType = "FacetValidationException"
	BatchWriteExceptionTypeObjectnotdetachedexception       BatchWriteExceptionType = "ObjectNotDetachedException"
	BatchWriteExceptionTypeResourcenotfoundexception        BatchWriteExceptionType = "ResourceNotFoundException"
	BatchWriteExceptionTypeAccessdeniedexception            BatchWriteExceptionType = "AccessDeniedException"
	BatchWriteExceptionTypeInvalidattachmentexception       BatchWriteExceptionType = "InvalidAttachmentException"
	BatchWriteExceptionTypeNotindexexception                BatchWriteExceptionType = "NotIndexException"
	BatchWriteExceptionTypeNotnodeexception                 BatchWriteExceptionType = "NotNodeException"
	BatchWriteExceptionTypeIndexedattributemissingexception BatchWriteExceptionType = "IndexedAttributeMissingException"
	BatchWriteExceptionTypeObjectalreadydetachedexception   BatchWriteExceptionType = "ObjectAlreadyDetachedException"
	BatchWriteExceptionTypeNotpolicyexception               BatchWriteExceptionType = "NotPolicyException"
	BatchWriteExceptionTypeDirectorynotenabledexception     BatchWriteExceptionType = "DirectoryNotEnabledException"
	BatchWriteExceptionTypeLimitexceededexception           BatchWriteExceptionType = "LimitExceededException"
	BatchWriteExceptionTypeUnsupportedindextypeexception    BatchWriteExceptionType = "UnsupportedIndexTypeException"
)

Enum values for BatchWriteExceptionType

type BatchWriteOperation

type BatchWriteOperation struct {
	// Updates a given object's attributes.
	UpdateLinkAttributes *BatchUpdateLinkAttributes
	// Attaches an object to a Directory ().
	AttachObject *BatchAttachObject
	// Creates an index object. See Indexing and search
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/indexing_search.htm)
	// for more information.
	CreateIndex *BatchCreateIndex
	// Detaches the specified object from the specified index.
	DetachFromIndex *BatchDetachFromIndex
	// Detaches a typed link from a specified source and target object. For more
	// information, see Typed Links
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink).
	DetachTypedLink *BatchDetachTypedLink
	// Attaches a typed link to a specified source and target object. For more
	// information, see Typed Links
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink).
	AttachTypedLink *BatchAttachTypedLink
	// A batch operation that removes a facet from an object.
	RemoveFacetFromObject *BatchRemoveFacetFromObject
	// A batch operation that adds a facet to an object.
	AddFacetToObject *BatchAddFacetToObject
	// Attaches the specified object to the specified index.
	AttachToIndex *BatchAttachToIndex
	// Creates an object.
	CreateObject *BatchCreateObject
	// Attaches a policy object to a regular object. An object can have a limited
	// number of attached policies.
	AttachPolicy *BatchAttachPolicy
	// Detaches a policy from a Directory ().
	DetachPolicy *BatchDetachPolicy
	// Deletes an object in a Directory ().
	DeleteObject *BatchDeleteObject
	// Updates a given object's attributes.
	UpdateObjectAttributes *BatchUpdateObjectAttributes
	// Detaches an object from a Directory ().
	DetachObject *BatchDetachObject
}

Represents the output of a BatchWrite operation.

type BatchWriteOperationResponse

type BatchWriteOperationResponse struct {
	// Attaches a policy object to a regular object. An object can have a limited
	// number of attached policies.
	AttachPolicy *BatchAttachPolicyResponse
	// Detaches a typed link from a specified source and target object. For more
	// information, see Typed Links
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink).
	DetachTypedLink *BatchDetachTypedLinkResponse
	// Creates an object in a Directory ().
	CreateObject *BatchCreateObjectResponse
	// Detaches a policy from a Directory ().
	DetachPolicy *BatchDetachPolicyResponse
	// Attaches a typed link to a specified source and target object. For more
	// information, see Typed Links
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink).
	AttachTypedLink *BatchAttachTypedLinkResponse
	// The result of a batch remove facet from object operation.
	RemoveFacetFromObject *BatchRemoveFacetFromObjectResponse
	// Detaches an object from a Directory ().
	DetachObject *BatchDetachObjectResponse
	// Creates an index object. See Indexing and search
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/indexing_search.htm)
	// for more information.
	CreateIndex *BatchCreateIndexResponse
	// Attaches an object to a Directory ().
	AttachObject *BatchAttachObjectResponse
	// Deletes an object in a Directory ().
	DeleteObject *BatchDeleteObjectResponse
	// Detaches the specified object from the specified index.
	DetachFromIndex *BatchDetachFromIndexResponse
	// The result of an add facet to object batch operation.
	AddFacetToObject *BatchAddFacetToObjectResponse
	// Updates a given object’s attributes.
	UpdateObjectAttributes *BatchUpdateObjectAttributesResponse
	// Represents the output of a BatchWrite response operation.
	UpdateLinkAttributes *BatchUpdateLinkAttributesResponse
	// Attaches the specified object to the specified index.
	AttachToIndex *BatchAttachToIndexResponse
}

Represents the output of a BatchWrite response operation.

type CannotListParentOfRootException

type CannotListParentOfRootException struct {
	Message *string
}

Cannot list the parents of a Directory () root.

func (*CannotListParentOfRootException) Error

func (*CannotListParentOfRootException) ErrorCode

func (e *CannotListParentOfRootException) ErrorCode() string

func (*CannotListParentOfRootException) ErrorFault

func (*CannotListParentOfRootException) ErrorMessage

func (e *CannotListParentOfRootException) ErrorMessage() string

func (*CannotListParentOfRootException) GetMessage

func (e *CannotListParentOfRootException) GetMessage() string

func (*CannotListParentOfRootException) HasMessage

func (e *CannotListParentOfRootException) HasMessage() bool

type ConsistencyLevel

type ConsistencyLevel string
const (
	ConsistencyLevelSerializable ConsistencyLevel = "SERIALIZABLE"
	ConsistencyLevelEventual     ConsistencyLevel = "EVENTUAL"
)

Enum values for ConsistencyLevel

type Directory

type Directory struct {
	// The Amazon Resource Name (ARN) that is associated with the directory. For more
	// information, see arns ().
	DirectoryArn *string
	// The date and time when the directory was created.
	CreationDateTime *time.Time
	// The state of the directory. Can be either Enabled, Disabled, or Deleted.
	State DirectoryState
	// The name of the directory.
	Name *string
}

Directory structure that includes the directory name and directory ARN.

type DirectoryAlreadyExistsException

type DirectoryAlreadyExistsException struct {
	Message *string
}

Indicates that a Directory () could not be created due to a naming conflict. Choose a different name and try again.

func (*DirectoryAlreadyExistsException) Error

func (*DirectoryAlreadyExistsException) ErrorCode

func (e *DirectoryAlreadyExistsException) ErrorCode() string

func (*DirectoryAlreadyExistsException) ErrorFault

func (*DirectoryAlreadyExistsException) ErrorMessage

func (e *DirectoryAlreadyExistsException) ErrorMessage() string

func (*DirectoryAlreadyExistsException) GetMessage

func (e *DirectoryAlreadyExistsException) GetMessage() string

func (*DirectoryAlreadyExistsException) HasMessage

func (e *DirectoryAlreadyExistsException) HasMessage() bool

type DirectoryDeletedException

type DirectoryDeletedException struct {
	Message *string
}

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

func (*DirectoryDeletedException) Error

func (e *DirectoryDeletedException) Error() string

func (*DirectoryDeletedException) ErrorCode

func (e *DirectoryDeletedException) ErrorCode() string

func (*DirectoryDeletedException) ErrorFault

func (*DirectoryDeletedException) ErrorMessage

func (e *DirectoryDeletedException) ErrorMessage() string

func (*DirectoryDeletedException) GetMessage

func (e *DirectoryDeletedException) GetMessage() string

func (*DirectoryDeletedException) HasMessage

func (e *DirectoryDeletedException) HasMessage() bool

type DirectoryNotDisabledException

type DirectoryNotDisabledException struct {
	Message *string
}

An operation can only operate on a disabled directory.

func (*DirectoryNotDisabledException) Error

func (*DirectoryNotDisabledException) ErrorCode

func (e *DirectoryNotDisabledException) ErrorCode() string

func (*DirectoryNotDisabledException) ErrorFault

func (*DirectoryNotDisabledException) ErrorMessage

func (e *DirectoryNotDisabledException) ErrorMessage() string

func (*DirectoryNotDisabledException) GetMessage

func (e *DirectoryNotDisabledException) GetMessage() string

func (*DirectoryNotDisabledException) HasMessage

func (e *DirectoryNotDisabledException) HasMessage() bool

type DirectoryNotEnabledException

type DirectoryNotEnabledException struct {
	Message *string
}

Operations are only permitted on enabled directories.

func (*DirectoryNotEnabledException) Error

func (*DirectoryNotEnabledException) ErrorCode

func (e *DirectoryNotEnabledException) ErrorCode() string

func (*DirectoryNotEnabledException) ErrorFault

func (*DirectoryNotEnabledException) ErrorMessage

func (e *DirectoryNotEnabledException) ErrorMessage() string

func (*DirectoryNotEnabledException) GetMessage

func (e *DirectoryNotEnabledException) GetMessage() string

func (*DirectoryNotEnabledException) HasMessage

func (e *DirectoryNotEnabledException) HasMessage() bool

type DirectoryState

type DirectoryState string
const (
	DirectoryStateEnabled  DirectoryState = "ENABLED"
	DirectoryStateDisabled DirectoryState = "DISABLED"
	DirectoryStateDeleted  DirectoryState = "DELETED"
)

Enum values for DirectoryState

type Facet

type Facet struct {
	// The object type that is associated with the facet. See
	// CreateFacetRequest$ObjectType () for more details.
	ObjectType ObjectType
	// There are two different styles that you can define on any given facet, Static
	// and Dynamic. For static facets, all attributes must be defined in the schema.
	// For dynamic facets, attributes can be defined during data plane operations.
	FacetStyle FacetStyle
	// The name of the Facet ().
	Name *string
}

A structure that contains Name, ARN, Attributes, Rule ()s, and ObjectTypes. See Facets (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_whatarefacets.html) for more information.

type FacetAlreadyExistsException

type FacetAlreadyExistsException struct {
	Message *string
}

A facet with the same name already exists.

func (*FacetAlreadyExistsException) Error

func (*FacetAlreadyExistsException) ErrorCode

func (e *FacetAlreadyExistsException) ErrorCode() string

func (*FacetAlreadyExistsException) ErrorFault

func (*FacetAlreadyExistsException) ErrorMessage

func (e *FacetAlreadyExistsException) ErrorMessage() string

func (*FacetAlreadyExistsException) GetMessage

func (e *FacetAlreadyExistsException) GetMessage() string

func (*FacetAlreadyExistsException) HasMessage

func (e *FacetAlreadyExistsException) HasMessage() bool

type FacetAttribute

type FacetAttribute struct {
	// The required behavior of the FacetAttribute.
	RequiredBehavior RequiredAttributeBehavior
	// A facet attribute consists of either a definition or a reference. This structure
	// contains the attribute definition. See Attribute References
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_attributereferences.html)
	// for more information.
	AttributeDefinition *FacetAttributeDefinition
	// An attribute reference that is associated with the attribute. See Attribute
	// References
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_attributereferences.html)
	// for more information.
	AttributeReference *FacetAttributeReference
	// The name of the facet attribute.
	Name *string
}

An attribute that is associated with the Facet ().

type FacetAttributeDefinition

type FacetAttributeDefinition struct {
	// The type of the attribute.
	Type FacetAttributeType
	// The default value of the attribute (if configured).
	DefaultValue *TypedAttributeValue
	// Validation rules attached to the attribute definition.
	Rules map[string]*Rule
	// Whether the attribute is mutable or not.
	IsImmutable *bool
}

A facet attribute definition. See Attribute References (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_attributereferences.html) for more information.

type FacetAttributeReference

type FacetAttributeReference struct {
	// The target attribute name that is associated with the facet reference. See
	// Attribute References
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_attributereferences.html)
	// for more information.
	TargetAttributeName *string
	// The target facet name that is associated with the facet reference. See Attribute
	// References
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_attributereferences.html)
	// for more information.
	TargetFacetName *string
}

The facet attribute reference that specifies the attribute definition that contains the attribute facet name and attribute name.

type FacetAttributeType

type FacetAttributeType string
const (
	FacetAttributeTypeString   FacetAttributeType = "STRING"
	FacetAttributeTypeBinary   FacetAttributeType = "BINARY"
	FacetAttributeTypeBoolean  FacetAttributeType = "BOOLEAN"
	FacetAttributeTypeNumber   FacetAttributeType = "NUMBER"
	FacetAttributeTypeDatetime FacetAttributeType = "DATETIME"
	FacetAttributeTypeVariant  FacetAttributeType = "VARIANT"
)

Enum values for FacetAttributeType

type FacetAttributeUpdate

type FacetAttributeUpdate struct {
	// The attribute to update.
	Attribute *FacetAttribute
	// The action to perform when updating the attribute.
	Action UpdateActionType
}

A structure that contains information used to update an attribute.

type FacetInUseException

type FacetInUseException struct {
	Message *string
}

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

func (*FacetInUseException) Error

func (e *FacetInUseException) Error() string

func (*FacetInUseException) ErrorCode

func (e *FacetInUseException) ErrorCode() string

func (*FacetInUseException) ErrorFault

func (e *FacetInUseException) ErrorFault() smithy.ErrorFault

func (*FacetInUseException) ErrorMessage

func (e *FacetInUseException) ErrorMessage() string

func (*FacetInUseException) GetMessage

func (e *FacetInUseException) GetMessage() string

func (*FacetInUseException) HasMessage

func (e *FacetInUseException) HasMessage() bool

type FacetNotFoundException

type FacetNotFoundException struct {
	Message *string
}

The specified Facet () could not be found.

func (*FacetNotFoundException) Error

func (e *FacetNotFoundException) Error() string

func (*FacetNotFoundException) ErrorCode

func (e *FacetNotFoundException) ErrorCode() string

func (*FacetNotFoundException) ErrorFault

func (e *FacetNotFoundException) ErrorFault() smithy.ErrorFault

func (*FacetNotFoundException) ErrorMessage

func (e *FacetNotFoundException) ErrorMessage() string

func (*FacetNotFoundException) GetMessage

func (e *FacetNotFoundException) GetMessage() string

func (*FacetNotFoundException) HasMessage

func (e *FacetNotFoundException) HasMessage() bool

type FacetStyle

type FacetStyle string
const (
	FacetStyleStatic  FacetStyle = "STATIC"
	FacetStyleDynamic FacetStyle = "DYNAMIC"
)

Enum values for FacetStyle

type FacetValidationException

type FacetValidationException struct {
	Message *string
}

The Facet () that you provided was not well formed or could not be validated with the schema.

func (*FacetValidationException) Error

func (e *FacetValidationException) Error() string

func (*FacetValidationException) ErrorCode

func (e *FacetValidationException) ErrorCode() string

func (*FacetValidationException) ErrorFault

func (e *FacetValidationException) ErrorFault() smithy.ErrorFault

func (*FacetValidationException) ErrorMessage

func (e *FacetValidationException) ErrorMessage() string

func (*FacetValidationException) GetMessage

func (e *FacetValidationException) GetMessage() string

func (*FacetValidationException) HasMessage

func (e *FacetValidationException) HasMessage() bool

type IncompatibleSchemaException

type IncompatibleSchemaException struct {
	Message *string
}

Indicates a failure occurred while performing a check for backward compatibility between the specified schema and the schema that is currently applied to the directory.

func (*IncompatibleSchemaException) Error

func (*IncompatibleSchemaException) ErrorCode

func (e *IncompatibleSchemaException) ErrorCode() string

func (*IncompatibleSchemaException) ErrorFault

func (*IncompatibleSchemaException) ErrorMessage

func (e *IncompatibleSchemaException) ErrorMessage() string

func (*IncompatibleSchemaException) GetMessage

func (e *IncompatibleSchemaException) GetMessage() string

func (*IncompatibleSchemaException) HasMessage

func (e *IncompatibleSchemaException) HasMessage() bool

type IndexAttachment

type IndexAttachment struct {
	// The indexed attribute values.
	IndexedAttributes []*AttributeKeyAndValue
	// In response to ListIndex (), the ObjectIdentifier of the object attached to the
	// index. In response to ListAttachedIndices (), the ObjectIdentifier of the index
	// attached to the object. This field will always contain the ObjectIdentifier of
	// the object on the opposite side of the attachment specified in the query.
	ObjectIdentifier *string
}

Represents an index and an attached object.

type IndexedAttributeMissingException

type IndexedAttributeMissingException struct {
	Message *string
}

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

func (*IndexedAttributeMissingException) Error

func (*IndexedAttributeMissingException) ErrorCode

func (*IndexedAttributeMissingException) ErrorFault

func (*IndexedAttributeMissingException) ErrorMessage

func (e *IndexedAttributeMissingException) ErrorMessage() string

func (*IndexedAttributeMissingException) GetMessage

func (e *IndexedAttributeMissingException) GetMessage() string

func (*IndexedAttributeMissingException) HasMessage

func (e *IndexedAttributeMissingException) HasMessage() bool

type InternalServiceException

type InternalServiceException struct {
	Message *string
}

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.

func (*InternalServiceException) Error

func (e *InternalServiceException) Error() string

func (*InternalServiceException) ErrorCode

func (e *InternalServiceException) ErrorCode() string

func (*InternalServiceException) ErrorFault

func (e *InternalServiceException) ErrorFault() smithy.ErrorFault

func (*InternalServiceException) ErrorMessage

func (e *InternalServiceException) ErrorMessage() string

func (*InternalServiceException) GetMessage

func (e *InternalServiceException) GetMessage() string

func (*InternalServiceException) HasMessage

func (e *InternalServiceException) HasMessage() bool

type InvalidArnException

type InvalidArnException struct {
	Message *string
}

Indicates that the provided ARN value is not valid.

func (*InvalidArnException) Error

func (e *InvalidArnException) Error() string

func (*InvalidArnException) ErrorCode

func (e *InvalidArnException) ErrorCode() string

func (*InvalidArnException) ErrorFault

func (e *InvalidArnException) ErrorFault() smithy.ErrorFault

func (*InvalidArnException) ErrorMessage

func (e *InvalidArnException) ErrorMessage() string

func (*InvalidArnException) GetMessage

func (e *InvalidArnException) GetMessage() string

func (*InvalidArnException) HasMessage

func (e *InvalidArnException) HasMessage() bool

type InvalidAttachmentException

type InvalidAttachmentException struct {
	Message *string
}

Indicates that an attempt to make an attachment was invalid. For example, attaching two nodes with a link type that is not applicable to the nodes or attempting to apply a schema to a directory a second time.

func (*InvalidAttachmentException) Error

func (*InvalidAttachmentException) ErrorCode

func (e *InvalidAttachmentException) ErrorCode() string

func (*InvalidAttachmentException) ErrorFault

func (*InvalidAttachmentException) ErrorMessage

func (e *InvalidAttachmentException) ErrorMessage() string

func (*InvalidAttachmentException) GetMessage

func (e *InvalidAttachmentException) GetMessage() string

func (*InvalidAttachmentException) HasMessage

func (e *InvalidAttachmentException) HasMessage() bool

type InvalidFacetUpdateException

type InvalidFacetUpdateException struct {
	Message *string
}

An attempt to modify a Facet () resulted in an invalid schema exception.

func (*InvalidFacetUpdateException) Error

func (*InvalidFacetUpdateException) ErrorCode

func (e *InvalidFacetUpdateException) ErrorCode() string

func (*InvalidFacetUpdateException) ErrorFault

func (*InvalidFacetUpdateException) ErrorMessage

func (e *InvalidFacetUpdateException) ErrorMessage() string

func (*InvalidFacetUpdateException) GetMessage

func (e *InvalidFacetUpdateException) GetMessage() string

func (*InvalidFacetUpdateException) HasMessage

func (e *InvalidFacetUpdateException) HasMessage() bool

type InvalidNextTokenException

type InvalidNextTokenException struct {
	Message *string
}

Indicates that the NextToken value is not valid.

func (*InvalidNextTokenException) Error

func (e *InvalidNextTokenException) Error() string

func (*InvalidNextTokenException) ErrorCode

func (e *InvalidNextTokenException) ErrorCode() string

func (*InvalidNextTokenException) ErrorFault

func (*InvalidNextTokenException) ErrorMessage

func (e *InvalidNextTokenException) ErrorMessage() string

func (*InvalidNextTokenException) GetMessage

func (e *InvalidNextTokenException) GetMessage() string

func (*InvalidNextTokenException) HasMessage

func (e *InvalidNextTokenException) HasMessage() bool

type InvalidRuleException

type InvalidRuleException struct {
	Message *string
}

Occurs when any of the rule parameter keys or values are invalid.

func (*InvalidRuleException) Error

func (e *InvalidRuleException) Error() string

func (*InvalidRuleException) ErrorCode

func (e *InvalidRuleException) ErrorCode() string

func (*InvalidRuleException) ErrorFault

func (e *InvalidRuleException) ErrorFault() smithy.ErrorFault

func (*InvalidRuleException) ErrorMessage

func (e *InvalidRuleException) ErrorMessage() string

func (*InvalidRuleException) GetMessage

func (e *InvalidRuleException) GetMessage() string

func (*InvalidRuleException) HasMessage

func (e *InvalidRuleException) HasMessage() bool

type InvalidSchemaDocException

type InvalidSchemaDocException struct {
	Message *string
}

Indicates that the provided SchemaDoc value is not valid.

func (*InvalidSchemaDocException) Error

func (e *InvalidSchemaDocException) Error() string

func (*InvalidSchemaDocException) ErrorCode

func (e *InvalidSchemaDocException) ErrorCode() string

func (*InvalidSchemaDocException) ErrorFault

func (*InvalidSchemaDocException) ErrorMessage

func (e *InvalidSchemaDocException) ErrorMessage() string

func (*InvalidSchemaDocException) GetMessage

func (e *InvalidSchemaDocException) GetMessage() string

func (*InvalidSchemaDocException) HasMessage

func (e *InvalidSchemaDocException) HasMessage() bool

type InvalidTaggingRequestException

type InvalidTaggingRequestException struct {
	Message *string
}

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.

func (*InvalidTaggingRequestException) Error

func (*InvalidTaggingRequestException) ErrorCode

func (e *InvalidTaggingRequestException) ErrorCode() string

func (*InvalidTaggingRequestException) ErrorFault

func (*InvalidTaggingRequestException) ErrorMessage

func (e *InvalidTaggingRequestException) ErrorMessage() string

func (*InvalidTaggingRequestException) GetMessage

func (e *InvalidTaggingRequestException) GetMessage() string

func (*InvalidTaggingRequestException) HasMessage

func (e *InvalidTaggingRequestException) HasMessage() bool

type LimitExceededException

type LimitExceededException struct {
	Message *string
}

Indicates that limits are exceeded. See Limits (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html) for more information.

func (*LimitExceededException) Error

func (e *LimitExceededException) Error() string

func (*LimitExceededException) ErrorCode

func (e *LimitExceededException) ErrorCode() string

func (*LimitExceededException) ErrorFault

func (e *LimitExceededException) ErrorFault() smithy.ErrorFault

func (*LimitExceededException) ErrorMessage

func (e *LimitExceededException) ErrorMessage() string

func (*LimitExceededException) GetMessage

func (e *LimitExceededException) GetMessage() string

func (*LimitExceededException) HasMessage

func (e *LimitExceededException) HasMessage() bool

type LinkAttributeAction

type LinkAttributeAction struct {
	// The value that you want to update to.
	AttributeUpdateValue *TypedAttributeValue
	// A type that can be either UPDATE_OR_CREATE or DELETE.
	AttributeActionType UpdateActionType
}

The action to take on a typed link attribute value. Updates are only supported for attributes which don’t contribute to link identity.

type LinkAttributeUpdate

type LinkAttributeUpdate struct {
	// The action to perform as part of the attribute update.
	AttributeAction *LinkAttributeAction
	// The key of the attribute being updated.
	AttributeKey *AttributeKey
}

Structure that contains attribute update information.

type LinkNameAlreadyInUseException

type LinkNameAlreadyInUseException struct {
	Message *string
}

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

func (*LinkNameAlreadyInUseException) Error

func (*LinkNameAlreadyInUseException) ErrorCode

func (e *LinkNameAlreadyInUseException) ErrorCode() string

func (*LinkNameAlreadyInUseException) ErrorFault

func (*LinkNameAlreadyInUseException) ErrorMessage

func (e *LinkNameAlreadyInUseException) ErrorMessage() string

func (*LinkNameAlreadyInUseException) GetMessage

func (e *LinkNameAlreadyInUseException) GetMessage() string

func (*LinkNameAlreadyInUseException) HasMessage

func (e *LinkNameAlreadyInUseException) HasMessage() bool

type NotIndexException

type NotIndexException struct {
	Message *string
}

Indicates that the requested operation can only operate on index objects.

func (*NotIndexException) Error

func (e *NotIndexException) Error() string

func (*NotIndexException) ErrorCode

func (e *NotIndexException) ErrorCode() string

func (*NotIndexException) ErrorFault

func (e *NotIndexException) ErrorFault() smithy.ErrorFault

func (*NotIndexException) ErrorMessage

func (e *NotIndexException) ErrorMessage() string

func (*NotIndexException) GetMessage

func (e *NotIndexException) GetMessage() string

func (*NotIndexException) HasMessage

func (e *NotIndexException) HasMessage() bool

type NotNodeException

type NotNodeException struct {
	Message *string
}

Occurs when any invalid operations are performed on an object that is not a node, such as calling ListObjectChildren for a leaf node object.

func (*NotNodeException) Error

func (e *NotNodeException) Error() string

func (*NotNodeException) ErrorCode

func (e *NotNodeException) ErrorCode() string

func (*NotNodeException) ErrorFault

func (e *NotNodeException) ErrorFault() smithy.ErrorFault

func (*NotNodeException) ErrorMessage

func (e *NotNodeException) ErrorMessage() string

func (*NotNodeException) GetMessage

func (e *NotNodeException) GetMessage() string

func (*NotNodeException) HasMessage

func (e *NotNodeException) HasMessage() bool

type NotPolicyException

type NotPolicyException struct {
	Message *string
}

Indicates that the requested operation can only operate on policy objects.

func (*NotPolicyException) Error

func (e *NotPolicyException) Error() string

func (*NotPolicyException) ErrorCode

func (e *NotPolicyException) ErrorCode() string

func (*NotPolicyException) ErrorFault

func (e *NotPolicyException) ErrorFault() smithy.ErrorFault

func (*NotPolicyException) ErrorMessage

func (e *NotPolicyException) ErrorMessage() string

func (*NotPolicyException) GetMessage

func (e *NotPolicyException) GetMessage() string

func (*NotPolicyException) HasMessage

func (e *NotPolicyException) HasMessage() bool

type ObjectAlreadyDetachedException

type ObjectAlreadyDetachedException struct {
	Message *string
}

Indicates that the object is not attached to the index.

func (*ObjectAlreadyDetachedException) Error

func (*ObjectAlreadyDetachedException) ErrorCode

func (e *ObjectAlreadyDetachedException) ErrorCode() string

func (*ObjectAlreadyDetachedException) ErrorFault

func (*ObjectAlreadyDetachedException) ErrorMessage

func (e *ObjectAlreadyDetachedException) ErrorMessage() string

func (*ObjectAlreadyDetachedException) GetMessage

func (e *ObjectAlreadyDetachedException) GetMessage() string

func (*ObjectAlreadyDetachedException) HasMessage

func (e *ObjectAlreadyDetachedException) HasMessage() bool

type ObjectAttributeAction

type ObjectAttributeAction struct {
	// A type that can be either Update or Delete.
	ObjectAttributeActionType UpdateActionType
	// The value that you want to update to.
	ObjectAttributeUpdateValue *TypedAttributeValue
}

The action to take on the object attribute.

type ObjectAttributeRange

type ObjectAttributeRange struct {
	// The key of the attribute that the attribute range covers.
	AttributeKey *AttributeKey
	// The range of attribute values being selected.
	Range *TypedAttributeValueRange
}

A range of attributes.

type ObjectAttributeUpdate

type ObjectAttributeUpdate struct {
	// The action to perform as part of the attribute update.
	ObjectAttributeAction *ObjectAttributeAction
	// The key of the attribute being updated.
	ObjectAttributeKey *AttributeKey
}

Structure that contains attribute update information.

type ObjectIdentifierAndLinkNameTuple

type ObjectIdentifierAndLinkNameTuple struct {
	// The name of the link between the parent and the child object.
	LinkName *string
	// The ID that is associated with the object.
	ObjectIdentifier *string
}

A pair of ObjectIdentifier and LinkName.

type ObjectNotDetachedException

type ObjectNotDetachedException struct {
	Message *string
}

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

func (*ObjectNotDetachedException) Error

func (*ObjectNotDetachedException) ErrorCode

func (e *ObjectNotDetachedException) ErrorCode() string

func (*ObjectNotDetachedException) ErrorFault

func (*ObjectNotDetachedException) ErrorMessage

func (e *ObjectNotDetachedException) ErrorMessage() string

func (*ObjectNotDetachedException) GetMessage

func (e *ObjectNotDetachedException) GetMessage() string

func (*ObjectNotDetachedException) HasMessage

func (e *ObjectNotDetachedException) HasMessage() bool

type 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 Access Objects
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_access_objects.html).
	// 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
}

The reference that identifies an object.

type ObjectType

type ObjectType string
const (
	ObjectTypeNode      ObjectType = "NODE"
	ObjectTypeLeaf_node ObjectType = "LEAF_NODE"
	ObjectTypePolicy    ObjectType = "POLICY"
	ObjectTypeIndex     ObjectType = "INDEX"
)

Enum values for ObjectType

type PathToObjectIdentifiers

type PathToObjectIdentifiers struct {
	// The path that is used to identify the object starting from directory root.
	Path *string
	// Lists ObjectIdentifiers starting from directory root to the object in the
	// request.
	ObjectIdentifiers []*string
}

Returns the path to the ObjectIdentifiers that is associated with the directory.

type PolicyAttachment

type PolicyAttachment struct {
	// The type of policy that can be associated with PolicyAttachment.
	PolicyType *string
	// The ObjectIdentifier that is associated with PolicyAttachment.
	ObjectIdentifier *string
	// The ID of PolicyAttachment.
	PolicyId *string
}

Contains the PolicyType, PolicyId, and the ObjectIdentifier to which it is attached. For more information, see Policies (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies).

type PolicyToPath

type PolicyToPath struct {
	// The path that is referenced from the root.
	Path *string
	// List of policy objects.
	Policies []*PolicyAttachment
}

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.

type RangeMode

type RangeMode string
const (
	RangeModeFirst                      RangeMode = "FIRST"
	RangeModeLast                       RangeMode = "LAST"
	RangeModeLast_before_missing_values RangeMode = "LAST_BEFORE_MISSING_VALUES"
	RangeModeInclusive                  RangeMode = "INCLUSIVE"
	RangeModeExclusive                  RangeMode = "EXCLUSIVE"
)

Enum values for RangeMode

type RequiredAttributeBehavior

type RequiredAttributeBehavior string
const (
	RequiredAttributeBehaviorRequired_always RequiredAttributeBehavior = "REQUIRED_ALWAYS"
	RequiredAttributeBehaviorNot_required    RequiredAttributeBehavior = "NOT_REQUIRED"
)

Enum values for RequiredAttributeBehavior

type ResourceNotFoundException

type ResourceNotFoundException struct {
	Message *string
}

The specified resource could not be found.

func (*ResourceNotFoundException) Error

func (e *ResourceNotFoundException) Error() string

func (*ResourceNotFoundException) ErrorCode

func (e *ResourceNotFoundException) ErrorCode() string

func (*ResourceNotFoundException) ErrorFault

func (*ResourceNotFoundException) ErrorMessage

func (e *ResourceNotFoundException) ErrorMessage() string

func (*ResourceNotFoundException) GetMessage

func (e *ResourceNotFoundException) GetMessage() string

func (*ResourceNotFoundException) HasMessage

func (e *ResourceNotFoundException) HasMessage() bool

type RetryableConflictException

type RetryableConflictException struct {
	Message *string
}

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.

func (*RetryableConflictException) Error

func (*RetryableConflictException) ErrorCode

func (e *RetryableConflictException) ErrorCode() string

func (*RetryableConflictException) ErrorFault

func (*RetryableConflictException) ErrorMessage

func (e *RetryableConflictException) ErrorMessage() string

func (*RetryableConflictException) GetMessage

func (e *RetryableConflictException) GetMessage() string

func (*RetryableConflictException) HasMessage

func (e *RetryableConflictException) HasMessage() bool

type Rule

type Rule struct {
	// The type of attribute validation rule.
	Type RuleType
	// The minimum and maximum parameters that are associated with the rule.
	Parameters map[string]*string
}

Contains an Amazon Resource Name (ARN) and parameters that are associated with the rule.

type RuleType

type RuleType string
const (
	RuleTypeBinary_length     RuleType = "BINARY_LENGTH"
	RuleTypeNumber_comparison RuleType = "NUMBER_COMPARISON"
	RuleTypeString_from_set   RuleType = "STRING_FROM_SET"
	RuleTypeString_length     RuleType = "STRING_LENGTH"
)

Enum values for RuleType

type SchemaAlreadyExistsException

type SchemaAlreadyExistsException struct {
	Message *string
}

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

func (*SchemaAlreadyExistsException) Error

func (*SchemaAlreadyExistsException) ErrorCode

func (e *SchemaAlreadyExistsException) ErrorCode() string

func (*SchemaAlreadyExistsException) ErrorFault

func (*SchemaAlreadyExistsException) ErrorMessage

func (e *SchemaAlreadyExistsException) ErrorMessage() string

func (*SchemaAlreadyExistsException) GetMessage

func (e *SchemaAlreadyExistsException) GetMessage() string

func (*SchemaAlreadyExistsException) HasMessage

func (e *SchemaAlreadyExistsException) HasMessage() bool

type SchemaAlreadyPublishedException

type SchemaAlreadyPublishedException struct {
	Message *string
}

Indicates that a schema is already published.

func (*SchemaAlreadyPublishedException) Error

func (*SchemaAlreadyPublishedException) ErrorCode

func (e *SchemaAlreadyPublishedException) ErrorCode() string

func (*SchemaAlreadyPublishedException) ErrorFault

func (*SchemaAlreadyPublishedException) ErrorMessage

func (e *SchemaAlreadyPublishedException) ErrorMessage() string

func (*SchemaAlreadyPublishedException) GetMessage

func (e *SchemaAlreadyPublishedException) GetMessage() string

func (*SchemaAlreadyPublishedException) HasMessage

func (e *SchemaAlreadyPublishedException) HasMessage() bool

type SchemaFacet

type SchemaFacet struct {
	// The ARN of the schema that contains the facet with no minor component. See arns
	// () and In-Place Schema Upgrade
	// (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_inplaceschemaupgrade.html)
	// for a description of when to provide minor versions.
	SchemaArn *string
	// The name of the facet.
	FacetName *string
}

A facet.

type StillContainsLinksException

type StillContainsLinksException struct {
	Message *string
}

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

func (*StillContainsLinksException) Error

func (*StillContainsLinksException) ErrorCode

func (e *StillContainsLinksException) ErrorCode() string

func (*StillContainsLinksException) ErrorFault

func (*StillContainsLinksException) ErrorMessage

func (e *StillContainsLinksException) ErrorMessage() string

func (*StillContainsLinksException) GetMessage

func (e *StillContainsLinksException) GetMessage() string

func (*StillContainsLinksException) HasMessage

func (e *StillContainsLinksException) HasMessage() bool

type Tag

type Tag struct {
	// The value that is associated with the tag.
	Value *string
	// The key that is associated with the tag.
	Key *string
}

The tag structure that contains a tag key and value.

type TypedAttributeValue

type TypedAttributeValue struct {
	// A string data value.
	StringValue *string
	// A number data value.
	NumberValue *string
	// A binary data value.
	BinaryValue []byte
	// A date and time value.
	DatetimeValue *time.Time
	// A Boolean data value.
	BooleanValue *bool
}

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.

type TypedAttributeValueRange

type TypedAttributeValueRange struct {
	// The inclusive or exclusive range start.
	StartMode RangeMode
	// The value to start the range at.
	StartValue *TypedAttributeValue
	// The attribute value to terminate the range at.
	EndValue *TypedAttributeValue
	// The inclusive or exclusive range end.
	EndMode RangeMode
}

A range of attribute values. For more information, see Range Filters (https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_range_filters.html).

type TypedLinkAttributeDefinition

type TypedLinkAttributeDefinition struct {
	// The default value of the attribute (if configured).
	DefaultValue *TypedAttributeValue
	// The unique name of the typed link attribute.
	Name *string
	// Validation rules that are attached to the attribute definition.
	Rules map[string]*Rule
	// Whether the attribute is mutable or not.
	IsImmutable *bool
	// The type of the attribute.
	Type FacetAttributeType
	// The required behavior of the TypedLinkAttributeDefinition.
	RequiredBehavior RequiredAttributeBehavior
}

A typed link attribute definition.

type TypedLinkAttributeRange

type TypedLinkAttributeRange struct {
	// The unique name of the typed link attribute.
	AttributeName *string
	// The range of attribute values that are being selected.
	Range *TypedAttributeValueRange
}

Identifies the range of attributes that are used by a specified filter.

type 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 []*TypedLinkAttributeDefinition
	// The unique name of the typed link facet.
	Name *string
	// 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
	// ListIncomingTypedLinks () for details.
	IdentityAttributeOrder []*string
}

Defines the typed links structure and its attributes. To create a typed link facet, use the CreateTypedLinkFacet () API.

type TypedLinkFacetAttributeUpdate

type TypedLinkFacetAttributeUpdate struct {
	// The action to perform when updating the attribute.
	Action UpdateActionType
	// The attribute to update.
	Attribute *TypedLinkAttributeDefinition
}

A typed link facet attribute update.

type TypedLinkSchemaAndFacetName

type TypedLinkSchemaAndFacetName struct {
	// The Amazon Resource Name (ARN) that is associated with the schema. For more
	// information, see arns ().
	SchemaArn *string
	// The unique name of the typed link facet.
	TypedLinkName *string
}

Identifies the schema Amazon Resource Name (ARN) and facet name for the typed link.

type TypedLinkSpecifier

type TypedLinkSpecifier struct {
	// Identifies the typed link facet that is associated with the typed link.
	TypedLinkFacet *TypedLinkSchemaAndFacetName
	// Identifies the target object that the typed link will attach to.
	TargetObjectReference *ObjectReference
	// Identifies the attribute value to update.
	IdentityAttributeValues []*AttributeNameAndValue
	// Identifies the source object that the typed link will attach to.
	SourceObjectReference *ObjectReference
}

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.

type UnsupportedIndexTypeException

type UnsupportedIndexTypeException struct {
	Message *string
}

Indicates that the requested index type is not supported.

func (*UnsupportedIndexTypeException) Error

func (*UnsupportedIndexTypeException) ErrorCode

func (e *UnsupportedIndexTypeException) ErrorCode() string

func (*UnsupportedIndexTypeException) ErrorFault

func (*UnsupportedIndexTypeException) ErrorMessage

func (e *UnsupportedIndexTypeException) ErrorMessage() string

func (*UnsupportedIndexTypeException) GetMessage

func (e *UnsupportedIndexTypeException) GetMessage() string

func (*UnsupportedIndexTypeException) HasMessage

func (e *UnsupportedIndexTypeException) HasMessage() bool

type UpdateActionType

type UpdateActionType string
const (
	UpdateActionTypeCreate_or_update UpdateActionType = "CREATE_OR_UPDATE"
	UpdateActionTypeDelete           UpdateActionType = "DELETE"
)

Enum values for UpdateActionType

type ValidationException

type ValidationException struct {
	Message *string
}

Indicates that your request is malformed in some manner. See the exception message.

func (*ValidationException) Error

func (e *ValidationException) Error() string

func (*ValidationException) ErrorCode

func (e *ValidationException) ErrorCode() string

func (*ValidationException) ErrorFault

func (e *ValidationException) ErrorFault() smithy.ErrorFault

func (*ValidationException) ErrorMessage

func (e *ValidationException) ErrorMessage() string

func (*ValidationException) GetMessage

func (e *ValidationException) GetMessage() string

func (*ValidationException) HasMessage

func (e *ValidationException) HasMessage() bool

Source Files

enums.go errors.go types.go

Version
v0.1.0
Published
Sep 29, 2020
Platform
linux/amd64
Imports
4 packages
Last checked
21 minutes ago

Tools for package owners.