// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateObject`](crate::operation::create_object::builders::CreateObjectFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`directory_arn(impl Into<String>)`](crate::operation::create_object::builders::CreateObjectFluentBuilder::directory_arn) / [`set_directory_arn(Option<String>)`](crate::operation::create_object::builders::CreateObjectFluentBuilder::set_directory_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) that is associated with the <code>Directory</code> in which the object will be created. For more information, see <code>arns</code>.</p><br>
/// - [`schema_facets(SchemaFacet)`](crate::operation::create_object::builders::CreateObjectFluentBuilder::schema_facets) / [`set_schema_facets(Option<Vec::<SchemaFacet>>)`](crate::operation::create_object::builders::CreateObjectFluentBuilder::set_schema_facets):<br>required: **true**<br><p>A list of schema facets to be associated with the object. Do not provide minor version components. See <code>SchemaFacet</code> for details.</p><br>
/// - [`object_attribute_list(AttributeKeyAndValue)`](crate::operation::create_object::builders::CreateObjectFluentBuilder::object_attribute_list) / [`set_object_attribute_list(Option<Vec::<AttributeKeyAndValue>>)`](crate::operation::create_object::builders::CreateObjectFluentBuilder::set_object_attribute_list):<br>required: **false**<br><p>The attribute map whose attribute ARN contains the key and attribute value as the map value.</p><br>
/// - [`parent_reference(ObjectReference)`](crate::operation::create_object::builders::CreateObjectFluentBuilder::parent_reference) / [`set_parent_reference(Option<ObjectReference>)`](crate::operation::create_object::builders::CreateObjectFluentBuilder::set_parent_reference):<br>required: **false**<br><p>If specified, the parent reference to which this object will be attached.</p><br>
/// - [`link_name(impl Into<String>)`](crate::operation::create_object::builders::CreateObjectFluentBuilder::link_name) / [`set_link_name(Option<String>)`](crate::operation::create_object::builders::CreateObjectFluentBuilder::set_link_name):<br>required: **false**<br><p>The name of link that is used to attach this object to a parent.</p><br>
/// - On success, responds with [`CreateObjectOutput`](crate::operation::create_object::CreateObjectOutput) with field(s):
/// - [`object_identifier(Option<String>)`](crate::operation::create_object::CreateObjectOutput::object_identifier): <p>The identifier that is associated with the object.</p>
/// - On failure, responds with [`SdkError<CreateObjectError>`](crate::operation::create_object::CreateObjectError)
pub fn create_object(&self) -> crate::operation::create_object::builders::CreateObjectFluentBuilder {
crate::operation::create_object::builders::CreateObjectFluentBuilder::new(self.handle.clone())
}
}