detachTypedLink
inline suspend fun CloudDirectoryClient.detachTypedLink(crossinline block: DetachTypedLinkRequest.Builder.() -> Unit): DetachTypedLinkResponse
Detaches a typed link from a specified source and target object. For more information, see Typed Links.
Samples
import aws.sdk.kotlin.services.clouddirectory.model.AttributeNameAndValue
import aws.sdk.kotlin.services.clouddirectory.model.ObjectReference
import aws.sdk.kotlin.services.clouddirectory.model.TypedAttributeValue
import aws.sdk.kotlin.services.clouddirectory.model.TypedLinkSchemaAndFacetName
import aws.sdk.kotlin.services.clouddirectory.model.TypedLinkSpecifier
fun main() {
//sampleStart
cloudDirectoryClient.detachTypedLink {
directoryArn = "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY"
typedLinkSpecifier = TypedLinkSpecifier {
sourceObjectReference = ObjectReference {
selector = "$AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA"
}
identityAttributeValues = listOf<AttributeNameAndValue>(
AttributeNameAndValue {
attributeName = "22"
value = TypedAttributeValue.BinaryValue("c3Ry".encodeAsByteArray())
}
)
targetObjectReference = ObjectReference {
selector = "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw"
}
typedLinkFacet = TypedLinkSchemaAndFacetName {
typedLinkName = "exampletypedlink8"
schemaArn = "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1"
}
}
}
//sampleEnd
}