repo_name
stringlengths
1
52
repo_creator
stringclasses
6 values
programming_language
stringclasses
4 values
code
stringlengths
0
9.68M
num_lines
int64
1
234k
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the AddFacetToObject operation. /// Adds a new <a>Facet</a> to an object. An object can have more than one facet applied /// on it. /// </summary> public partial class AddFacetToObjectRequest : AmazonCloudDirectoryRequest { private string _directoryArn; private List<AttributeKeyAndValue> _objectAttributeList = new List<AttributeKeyAndValue>(); private ObjectReference _objectReference; private SchemaFacet _schemaFacet; /// <summary> /// Gets and sets the property DirectoryArn. /// <para> /// The Amazon Resource Name (ARN) that is associated with the <a>Directory</a> where /// the object resides. For more information, see <a>arns</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryArn { get { return this._directoryArn; } set { this._directoryArn = value; } } // Check to see if DirectoryArn property is set internal bool IsSetDirectoryArn() { return this._directoryArn != null; } /// <summary> /// Gets and sets the property ObjectAttributeList. /// <para> /// Attributes on the facet that you are adding to the object. /// </para> /// </summary> public List<AttributeKeyAndValue> ObjectAttributeList { get { return this._objectAttributeList; } set { this._objectAttributeList = value; } } // Check to see if ObjectAttributeList property is set internal bool IsSetObjectAttributeList() { return this._objectAttributeList != null && this._objectAttributeList.Count > 0; } /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// A reference to the object you are adding the specified facet to. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } /// <summary> /// Gets and sets the property SchemaFacet. /// <para> /// Identifiers for the facet that you are adding to the object. See <a>SchemaFacet</a> /// for details. /// </para> /// </summary> [AWSProperty(Required=true)] public SchemaFacet SchemaFacet { get { return this._schemaFacet; } set { this._schemaFacet = value; } } // Check to see if SchemaFacet property is set internal bool IsSetSchemaFacet() { return this._schemaFacet != null; } } }
121
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the AddFacetToObject operation. /// </summary> public partial class AddFacetToObjectResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using Amazon.Runtime; namespace Amazon.CloudDirectory { /// <summary> /// Base class for CloudDirectory operation requests. /// </summary> public partial class AmazonCloudDirectoryRequest : AmazonWebServiceRequest { } }
30
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the ApplySchema operation. /// Copies the input published schema, at the specified version, into the <a>Directory</a> /// with the same name and version as that of the published schema. /// </summary> public partial class ApplySchemaRequest : AmazonCloudDirectoryRequest { private string _directoryArn; private string _publishedSchemaArn; /// <summary> /// Gets and sets the property DirectoryArn. /// <para> /// The Amazon Resource Name (ARN) that is associated with the <a>Directory</a> into which /// the schema is copied. For more information, see <a>arns</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryArn { get { return this._directoryArn; } set { this._directoryArn = value; } } // Check to see if DirectoryArn property is set internal bool IsSetDirectoryArn() { return this._directoryArn != null; } /// <summary> /// Gets and sets the property PublishedSchemaArn. /// <para> /// Published schema Amazon Resource Name (ARN) that needs to be copied. For more information, /// see <a>arns</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public string PublishedSchemaArn { get { return this._publishedSchemaArn; } set { this._publishedSchemaArn = value; } } // Check to see if PublishedSchemaArn property is set internal bool IsSetPublishedSchemaArn() { return this._publishedSchemaArn != null; } } }
82
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the ApplySchema operation. /// </summary> public partial class ApplySchemaResponse : AmazonWebServiceResponse { private string _appliedSchemaArn; private string _directoryArn; /// <summary> /// Gets and sets the property AppliedSchemaArn. /// <para> /// The applied schema ARN that is associated with the copied schema in the <a>Directory</a>. /// You can use this ARN to describe the schema information applied on this directory. /// For more information, see <a>arns</a>. /// </para> /// </summary> public string AppliedSchemaArn { get { return this._appliedSchemaArn; } set { this._appliedSchemaArn = value; } } // Check to see if AppliedSchemaArn property is set internal bool IsSetAppliedSchemaArn() { return this._appliedSchemaArn != null; } /// <summary> /// Gets and sets the property DirectoryArn. /// <para> /// The ARN that is associated with the <a>Directory</a>. For more information, see <a>arns</a>. /// </para> /// </summary> public string DirectoryArn { get { return this._directoryArn; } set { this._directoryArn = value; } } // Check to see if DirectoryArn property is set internal bool IsSetDirectoryArn() { return this._directoryArn != null; } } }
78
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the AttachObject operation. /// Attaches an existing object to another object. An object can be accessed in two ways: /// /// <ol> <li> /// <para> /// Using the path /// </para> /// </li> <li> /// <para> /// Using <code>ObjectIdentifier</code> /// </para> /// </li> </ol> /// </summary> public partial class AttachObjectRequest : AmazonCloudDirectoryRequest { private ObjectReference _childReference; private string _directoryArn; private string _linkName; private ObjectReference _parentReference; /// <summary> /// Gets and sets the property ChildReference. /// <para> /// The child object reference to be attached to the object. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ChildReference { get { return this._childReference; } set { this._childReference = value; } } // Check to see if ChildReference property is set internal bool IsSetChildReference() { return this._childReference != null; } /// <summary> /// Gets and sets the property DirectoryArn. /// <para> /// Amazon Resource Name (ARN) that is associated with the <a>Directory</a> where both /// objects reside. For more information, see <a>arns</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryArn { get { return this._directoryArn; } set { this._directoryArn = value; } } // Check to see if DirectoryArn property is set internal bool IsSetDirectoryArn() { return this._directoryArn != null; } /// <summary> /// Gets and sets the property LinkName. /// <para> /// The link name with which the child object is attached to the parent. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=64)] public string LinkName { get { return this._linkName; } set { this._linkName = value; } } // Check to see if LinkName property is set internal bool IsSetLinkName() { return this._linkName != null; } /// <summary> /// Gets and sets the property ParentReference. /// <para> /// The parent object reference. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ParentReference { get { return this._parentReference; } set { this._parentReference = value; } } // Check to see if ParentReference property is set internal bool IsSetParentReference() { return this._parentReference != null; } } }
130
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the AttachObject operation. /// </summary> public partial class AttachObjectResponse : AmazonWebServiceResponse { private string _attachedObjectIdentifier; /// <summary> /// Gets and sets the property AttachedObjectIdentifier. /// <para> /// The attached <code>ObjectIdentifier</code>, which is the child <code>ObjectIdentifier</code>. /// </para> /// </summary> public string AttachedObjectIdentifier { get { return this._attachedObjectIdentifier; } set { this._attachedObjectIdentifier = value; } } // Check to see if AttachedObjectIdentifier property is set internal bool IsSetAttachedObjectIdentifier() { return this._attachedObjectIdentifier != null; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the AttachPolicy operation. /// Attaches a policy object to a regular object. An object can have a limited number /// of attached policies. /// </summary> public partial class AttachPolicyRequest : AmazonCloudDirectoryRequest { private string _directoryArn; private ObjectReference _objectReference; private ObjectReference _policyReference; /// <summary> /// Gets and sets the property DirectoryArn. /// <para> /// The Amazon Resource Name (ARN) that is associated with the <a>Directory</a> where /// both objects reside. For more information, see <a>arns</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryArn { get { return this._directoryArn; } set { this._directoryArn = value; } } // Check to see if DirectoryArn property is set internal bool IsSetDirectoryArn() { return this._directoryArn != null; } /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// The reference that identifies the object to which the policy will be attached. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } /// <summary> /// Gets and sets the property PolicyReference. /// <para> /// The reference that is associated with the policy object. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference PolicyReference { get { return this._policyReference; } set { this._policyReference = value; } } // Check to see if PolicyReference property is set internal bool IsSetPolicyReference() { return this._policyReference != null; } } }
101
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the AttachPolicy operation. /// </summary> public partial class AttachPolicyResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the AttachToIndex operation. /// Attaches the specified object to the specified index. /// </summary> public partial class AttachToIndexRequest : AmazonCloudDirectoryRequest { private string _directoryArn; private ObjectReference _indexReference; private ObjectReference _targetReference; /// <summary> /// Gets and sets the property DirectoryArn. /// <para> /// The Amazon Resource Name (ARN) of the directory where the object and index exist. /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryArn { get { return this._directoryArn; } set { this._directoryArn = value; } } // Check to see if DirectoryArn property is set internal bool IsSetDirectoryArn() { return this._directoryArn != null; } /// <summary> /// Gets and sets the property IndexReference. /// <para> /// A reference to the index that you are attaching the object to. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference IndexReference { get { return this._indexReference; } set { this._indexReference = value; } } // Check to see if IndexReference property is set internal bool IsSetIndexReference() { return this._indexReference != null; } /// <summary> /// Gets and sets the property TargetReference. /// <para> /// A reference to the object that you are attaching to the index. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference TargetReference { get { return this._targetReference; } set { this._targetReference = value; } } // Check to see if TargetReference property is set internal bool IsSetTargetReference() { return this._targetReference != null; } } }
99
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the AttachToIndex operation. /// </summary> public partial class AttachToIndexResponse : AmazonWebServiceResponse { private string _attachedObjectIdentifier; /// <summary> /// Gets and sets the property AttachedObjectIdentifier. /// <para> /// The <code>ObjectIdentifier</code> of the object that was attached to the index. /// </para> /// </summary> public string AttachedObjectIdentifier { get { return this._attachedObjectIdentifier; } set { this._attachedObjectIdentifier = value; } } // Check to see if AttachedObjectIdentifier property is set internal bool IsSetAttachedObjectIdentifier() { return this._attachedObjectIdentifier != null; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the AttachTypedLink operation. /// Attaches a typed link to a specified source and target object. For more information, /// see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed /// Links</a>. /// </summary> public partial class AttachTypedLinkRequest : AmazonCloudDirectoryRequest { private List<AttributeNameAndValue> _attributes = new List<AttributeNameAndValue>(); private string _directoryArn; private ObjectReference _sourceObjectReference; private ObjectReference _targetObjectReference; private TypedLinkSchemaAndFacetName _typedLinkFacet; /// <summary> /// Gets and sets the property Attributes. /// <para> /// A set of attributes that are associated with the typed link. /// </para> /// </summary> [AWSProperty(Required=true)] public List<AttributeNameAndValue> Attributes { get { return this._attributes; } set { this._attributes = value; } } // Check to see if Attributes property is set internal bool IsSetAttributes() { return this._attributes != null && this._attributes.Count > 0; } /// <summary> /// Gets and sets the property DirectoryArn. /// <para> /// The Amazon Resource Name (ARN) of the directory where you want to attach the typed /// link. /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryArn { get { return this._directoryArn; } set { this._directoryArn = value; } } // Check to see if DirectoryArn property is set internal bool IsSetDirectoryArn() { return this._directoryArn != null; } /// <summary> /// Gets and sets the property SourceObjectReference. /// <para> /// Identifies the source object that the typed link will attach to. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference SourceObjectReference { get { return this._sourceObjectReference; } set { this._sourceObjectReference = value; } } // Check to see if SourceObjectReference property is set internal bool IsSetSourceObjectReference() { return this._sourceObjectReference != null; } /// <summary> /// Gets and sets the property TargetObjectReference. /// <para> /// Identifies the target object that the typed link will attach to. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference TargetObjectReference { get { return this._targetObjectReference; } set { this._targetObjectReference = value; } } // Check to see if TargetObjectReference property is set internal bool IsSetTargetObjectReference() { return this._targetObjectReference != null; } /// <summary> /// Gets and sets the property TypedLinkFacet. /// <para> /// Identifies the typed link facet that is associated with the typed link. /// </para> /// </summary> [AWSProperty(Required=true)] public TypedLinkSchemaAndFacetName TypedLinkFacet { get { return this._typedLinkFacet; } set { this._typedLinkFacet = value; } } // Check to see if TypedLinkFacet property is set internal bool IsSetTypedLinkFacet() { return this._typedLinkFacet != null; } } }
142
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the AttachTypedLink operation. /// </summary> public partial class AttachTypedLinkResponse : AmazonWebServiceResponse { private TypedLinkSpecifier _typedLinkSpecifier; /// <summary> /// Gets and sets the property TypedLinkSpecifier. /// <para> /// Returns a typed link specifier as output. /// </para> /// </summary> public TypedLinkSpecifier TypedLinkSpecifier { get { return this._typedLinkSpecifier; } set { this._typedLinkSpecifier = value; } } // Check to see if TypedLinkSpecifier property is set internal bool IsSetTypedLinkSpecifier() { return this._typedLinkSpecifier != null; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// A unique identifier for an attribute. /// </summary> public partial class AttributeKey { private string _facetName; private string _name; private string _schemaArn; /// <summary> /// Gets and sets the property FacetName. /// <para> /// The name of the facet that the attribute exists within. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=64)] public string FacetName { get { return this._facetName; } set { this._facetName = value; } } // Check to see if FacetName property is set internal bool IsSetFacetName() { return this._facetName != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the attribute. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=230)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property SchemaArn. /// <para> /// The Amazon Resource Name (ARN) of the schema that contains the facet and attribute. /// </para> /// </summary> [AWSProperty(Required=true)] public string SchemaArn { get { return this._schemaArn; } set { this._schemaArn = value; } } // Check to see if SchemaArn property is set internal bool IsSetSchemaArn() { return this._schemaArn != null; } } }
98
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// The combination of an attribute key and an attribute value. /// </summary> public partial class AttributeKeyAndValue { private AttributeKey _key; private TypedAttributeValue _value; /// <summary> /// Gets and sets the property Key. /// <para> /// The key of the attribute. /// </para> /// </summary> [AWSProperty(Required=true)] public AttributeKey Key { get { return this._key; } set { this._key = value; } } // Check to see if Key property is set internal bool IsSetKey() { return this._key != null; } /// <summary> /// Gets and sets the property Value. /// <para> /// The value of the attribute. /// </para> /// </summary> [AWSProperty(Required=true)] public TypedAttributeValue Value { get { return this._value; } set { this._value = value; } } // Check to see if Value property is set internal bool IsSetValue() { return this._value != null; } } }
78
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Identifies the attribute name and value for a typed link. /// </summary> public partial class AttributeNameAndValue { private string _attributeName; private TypedAttributeValue _value; /// <summary> /// Gets and sets the property AttributeName. /// <para> /// The attribute name of the typed link. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=230)] public string AttributeName { get { return this._attributeName; } set { this._attributeName = value; } } // Check to see if AttributeName property is set internal bool IsSetAttributeName() { return this._attributeName != null; } /// <summary> /// Gets and sets the property Value. /// <para> /// The value for the typed link. /// </para> /// </summary> [AWSProperty(Required=true)] public TypedAttributeValue Value { get { return this._value; } set { this._value = value; } } // Check to see if Value property is set internal bool IsSetValue() { return this._value != null; } } }
78
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a batch add facet to object operation. /// </summary> public partial class BatchAddFacetToObject { private List<AttributeKeyAndValue> _objectAttributeList = new List<AttributeKeyAndValue>(); private ObjectReference _objectReference; private SchemaFacet _schemaFacet; /// <summary> /// Gets and sets the property ObjectAttributeList. /// <para> /// The attributes to set on the object. /// </para> /// </summary> [AWSProperty(Required=true)] public List<AttributeKeyAndValue> ObjectAttributeList { get { return this._objectAttributeList; } set { this._objectAttributeList = value; } } // Check to see if ObjectAttributeList property is set internal bool IsSetObjectAttributeList() { return this._objectAttributeList != null && this._objectAttributeList.Count > 0; } /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// A reference to the object being mutated. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } /// <summary> /// Gets and sets the property SchemaFacet. /// <para> /// Represents the facet being added to the object. /// </para> /// </summary> [AWSProperty(Required=true)] public SchemaFacet SchemaFacet { get { return this._schemaFacet; } set { this._schemaFacet = value; } } // Check to see if SchemaFacet property is set internal bool IsSetSchemaFacet() { return this._schemaFacet != null; } } }
98
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// The result of a batch add facet to object operation. /// </summary> public partial class BatchAddFacetToObjectResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of an <a>AttachObject</a> operation. /// </summary> public partial class BatchAttachObject { private ObjectReference _childReference; private string _linkName; private ObjectReference _parentReference; /// <summary> /// Gets and sets the property ChildReference. /// <para> /// The child object reference that is to be attached to the object. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ChildReference { get { return this._childReference; } set { this._childReference = value; } } // Check to see if ChildReference property is set internal bool IsSetChildReference() { return this._childReference != null; } /// <summary> /// Gets and sets the property LinkName. /// <para> /// The name of the link. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=64)] public string LinkName { get { return this._linkName; } set { this._linkName = value; } } // Check to see if LinkName property is set internal bool IsSetLinkName() { return this._linkName != null; } /// <summary> /// Gets and sets the property ParentReference. /// <para> /// The parent object reference. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ParentReference { get { return this._parentReference; } set { this._parentReference = value; } } // Check to see if ParentReference property is set internal bool IsSetParentReference() { return this._parentReference != null; } } }
98
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output batch <a>AttachObject</a> response operation. /// </summary> public partial class BatchAttachObjectResponse { private string _attachedObjectIdentifier; /// <summary> /// Gets and sets the property AttachedObjectIdentifier. /// <para> /// The <code>ObjectIdentifier</code> of the object that has been attached. /// </para> /// </summary> public string AttachedObjectIdentifier { get { return this._attachedObjectIdentifier; } set { this._attachedObjectIdentifier = value; } } // Check to see if AttachedObjectIdentifier property is set internal bool IsSetAttachedObjectIdentifier() { return this._attachedObjectIdentifier != null; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Attaches a policy object to a regular object inside a <a>BatchRead</a> operation. For /// more information, see <a>AttachPolicy</a> and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchAttachPolicy { private ObjectReference _objectReference; private ObjectReference _policyReference; /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// The reference that identifies the object to which the policy will be attached. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } /// <summary> /// Gets and sets the property PolicyReference. /// <para> /// The reference that is associated with the policy object. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference PolicyReference { get { return this._policyReference; } set { this._policyReference = value; } } // Check to see if PolicyReference property is set internal bool IsSetPolicyReference() { return this._policyReference != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of an <a>AttachPolicy</a> response operation. /// </summary> public partial class BatchAttachPolicyResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Attaches the specified object to the specified index inside a <a>BatchRead</a> operation. /// For more information, see <a>AttachToIndex</a> and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchAttachToIndex { private ObjectReference _indexReference; private ObjectReference _targetReference; /// <summary> /// Gets and sets the property IndexReference. /// <para> /// A reference to the index that you are attaching the object to. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference IndexReference { get { return this._indexReference; } set { this._indexReference = value; } } // Check to see if IndexReference property is set internal bool IsSetIndexReference() { return this._indexReference != null; } /// <summary> /// Gets and sets the property TargetReference. /// <para> /// A reference to the object that you are attaching to the index. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference TargetReference { get { return this._targetReference; } set { this._targetReference = value; } } // Check to see if TargetReference property is set internal bool IsSetTargetReference() { return this._targetReference != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>AttachToIndex</a> response operation. /// </summary> public partial class BatchAttachToIndexResponse { private string _attachedObjectIdentifier; /// <summary> /// Gets and sets the property AttachedObjectIdentifier. /// <para> /// The <code>ObjectIdentifier</code> of the object that was attached to the index. /// </para> /// </summary> public string AttachedObjectIdentifier { get { return this._attachedObjectIdentifier; } set { this._attachedObjectIdentifier = value; } } // Check to see if AttachedObjectIdentifier property is set internal bool IsSetAttachedObjectIdentifier() { return this._attachedObjectIdentifier != null; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Attaches a typed link to a specified source and target object inside a <a>BatchRead</a> /// operation. For more information, see <a>AttachTypedLink</a> and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchAttachTypedLink { private List<AttributeNameAndValue> _attributes = new List<AttributeNameAndValue>(); private ObjectReference _sourceObjectReference; private ObjectReference _targetObjectReference; private TypedLinkSchemaAndFacetName _typedLinkFacet; /// <summary> /// Gets and sets the property Attributes. /// <para> /// A set of attributes that are associated with the typed link. /// </para> /// </summary> [AWSProperty(Required=true)] public List<AttributeNameAndValue> Attributes { get { return this._attributes; } set { this._attributes = value; } } // Check to see if Attributes property is set internal bool IsSetAttributes() { return this._attributes != null && this._attributes.Count > 0; } /// <summary> /// Gets and sets the property SourceObjectReference. /// <para> /// Identifies the source object that the typed link will attach to. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference SourceObjectReference { get { return this._sourceObjectReference; } set { this._sourceObjectReference = value; } } // Check to see if SourceObjectReference property is set internal bool IsSetSourceObjectReference() { return this._sourceObjectReference != null; } /// <summary> /// Gets and sets the property TargetObjectReference. /// <para> /// Identifies the target object that the typed link will attach to. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference TargetObjectReference { get { return this._targetObjectReference; } set { this._targetObjectReference = value; } } // Check to see if TargetObjectReference property is set internal bool IsSetTargetObjectReference() { return this._targetObjectReference != null; } /// <summary> /// Gets and sets the property TypedLinkFacet. /// <para> /// Identifies the typed link facet that is associated with the typed link. /// </para> /// </summary> [AWSProperty(Required=true)] public TypedLinkSchemaAndFacetName TypedLinkFacet { get { return this._typedLinkFacet; } set { this._typedLinkFacet = value; } } // Check to see if TypedLinkFacet property is set internal bool IsSetTypedLinkFacet() { return this._typedLinkFacet != null; } } }
119
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>AttachTypedLink</a> response operation. /// </summary> public partial class BatchAttachTypedLinkResponse { private TypedLinkSpecifier _typedLinkSpecifier; /// <summary> /// Gets and sets the property TypedLinkSpecifier. /// <para> /// Returns a typed link specifier as output. /// </para> /// </summary> public TypedLinkSpecifier TypedLinkSpecifier { get { return this._typedLinkSpecifier; } set { this._typedLinkSpecifier = value; } } // Check to see if TypedLinkSpecifier property is set internal bool IsSetTypedLinkSpecifier() { return this._typedLinkSpecifier != null; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Creates an index object inside of a <a>BatchRead</a> operation. For more information, /// see <a>CreateIndex</a> and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchCreateIndex { private string _batchReferenceName; private bool? _isUnique; private string _linkName; private List<AttributeKey> _orderedIndexedAttributeList = new List<AttributeKey>(); private ObjectReference _parentReference; /// <summary> /// Gets and sets the property BatchReferenceName. /// <para> /// The batch reference name. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/transaction_support.html">Transaction /// Support</a> for more information. /// </para> /// </summary> public string BatchReferenceName { get { return this._batchReferenceName; } set { this._batchReferenceName = value; } } // Check to see if BatchReferenceName property is set internal bool IsSetBatchReferenceName() { return this._batchReferenceName != null; } /// <summary> /// Gets and sets the property IsUnique. /// <para> /// Indicates whether the attribute that is being indexed has unique values or not. /// </para> /// </summary> [AWSProperty(Required=true)] public bool IsUnique { get { return this._isUnique.GetValueOrDefault(); } set { this._isUnique = value; } } // Check to see if IsUnique property is set internal bool IsSetIsUnique() { return this._isUnique.HasValue; } /// <summary> /// Gets and sets the property LinkName. /// <para> /// The name of the link between the parent object and the index object. /// </para> /// </summary> [AWSProperty(Min=1, Max=64)] public string LinkName { get { return this._linkName; } set { this._linkName = value; } } // Check to see if LinkName property is set internal bool IsSetLinkName() { return this._linkName != null; } /// <summary> /// Gets and sets the property OrderedIndexedAttributeList. /// <para> /// Specifies the attributes that should be indexed on. Currently only a single attribute /// is supported. /// </para> /// </summary> [AWSProperty(Required=true)] public List<AttributeKey> OrderedIndexedAttributeList { get { return this._orderedIndexedAttributeList; } set { this._orderedIndexedAttributeList = value; } } // Check to see if OrderedIndexedAttributeList property is set internal bool IsSetOrderedIndexedAttributeList() { return this._orderedIndexedAttributeList != null && this._orderedIndexedAttributeList.Count > 0; } /// <summary> /// Gets and sets the property ParentReference. /// <para> /// A reference to the parent object that contains the index object. /// </para> /// </summary> public ObjectReference ParentReference { get { return this._parentReference; } set { this._parentReference = value; } } // Check to see if ParentReference property is set internal bool IsSetParentReference() { return this._parentReference != null; } } }
139
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>CreateIndex</a> response operation. /// </summary> public partial class BatchCreateIndexResponse { private string _objectIdentifier; /// <summary> /// Gets and sets the property ObjectIdentifier. /// <para> /// The <code>ObjectIdentifier</code> of the index created by this operation. /// </para> /// </summary> public string ObjectIdentifier { get { return this._objectIdentifier; } set { this._objectIdentifier = value; } } // Check to see if ObjectIdentifier property is set internal bool IsSetObjectIdentifier() { return this._objectIdentifier != null; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>CreateObject</a> operation. /// </summary> public partial class BatchCreateObject { private string _batchReferenceName; private string _linkName; private List<AttributeKeyAndValue> _objectAttributeList = new List<AttributeKeyAndValue>(); private ObjectReference _parentReference; private List<SchemaFacet> _schemaFacet = new List<SchemaFacet>(); /// <summary> /// Gets and sets the property BatchReferenceName. /// <para> /// The batch reference name. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/transaction_support.html">Transaction /// Support</a> for more information. /// </para> /// </summary> public string BatchReferenceName { get { return this._batchReferenceName; } set { this._batchReferenceName = value; } } // Check to see if BatchReferenceName property is set internal bool IsSetBatchReferenceName() { return this._batchReferenceName != null; } /// <summary> /// Gets and sets the property LinkName. /// <para> /// The name of the link. /// </para> /// </summary> [AWSProperty(Min=1, Max=64)] public string LinkName { get { return this._linkName; } set { this._linkName = value; } } // Check to see if LinkName property is set internal bool IsSetLinkName() { return this._linkName != null; } /// <summary> /// Gets and sets the property ObjectAttributeList. /// <para> /// An attribute map, which contains an attribute ARN as the key and attribute value as /// the map value. /// </para> /// </summary> [AWSProperty(Required=true)] public List<AttributeKeyAndValue> ObjectAttributeList { get { return this._objectAttributeList; } set { this._objectAttributeList = value; } } // Check to see if ObjectAttributeList property is set internal bool IsSetObjectAttributeList() { return this._objectAttributeList != null && this._objectAttributeList.Count > 0; } /// <summary> /// Gets and sets the property ParentReference. /// <para> /// If specified, the parent reference to which this object will be attached. /// </para> /// </summary> public ObjectReference ParentReference { get { return this._parentReference; } set { this._parentReference = value; } } // Check to see if ParentReference property is set internal bool IsSetParentReference() { return this._parentReference != null; } /// <summary> /// Gets and sets the property SchemaFacet. /// <para> /// A list of <code>FacetArns</code> that will be associated with the object. For more /// information, see <a>arns</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public List<SchemaFacet> SchemaFacet { get { return this._schemaFacet; } set { this._schemaFacet = value; } } // Check to see if SchemaFacet property is set internal bool IsSetSchemaFacet() { return this._schemaFacet != null && this._schemaFacet.Count > 0; } } }
139
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>CreateObject</a> response operation. /// </summary> public partial class BatchCreateObjectResponse { private string _objectIdentifier; /// <summary> /// Gets and sets the property ObjectIdentifier. /// <para> /// The ID that is associated with the object. /// </para> /// </summary> public string ObjectIdentifier { get { return this._objectIdentifier; } set { this._objectIdentifier = value; } } // Check to see if ObjectIdentifier property is set internal bool IsSetObjectIdentifier() { return this._objectIdentifier != null; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>DeleteObject</a> operation. /// </summary> public partial class BatchDeleteObject { private ObjectReference _objectReference; /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// The reference that identifies the object. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } } }
58
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>DeleteObject</a> response operation. /// </summary> public partial class BatchDeleteObjectResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Detaches the specified object from the specified index inside a <a>BatchRead</a> operation. /// For more information, see <a>DetachFromIndex</a> and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchDetachFromIndex { private ObjectReference _indexReference; private ObjectReference _targetReference; /// <summary> /// Gets and sets the property IndexReference. /// <para> /// A reference to the index object. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference IndexReference { get { return this._indexReference; } set { this._indexReference = value; } } // Check to see if IndexReference property is set internal bool IsSetIndexReference() { return this._indexReference != null; } /// <summary> /// Gets and sets the property TargetReference. /// <para> /// A reference to the object being detached from the index. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference TargetReference { get { return this._targetReference; } set { this._targetReference = value; } } // Check to see if TargetReference property is set internal bool IsSetTargetReference() { return this._targetReference != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>DetachFromIndex</a> response operation. /// </summary> public partial class BatchDetachFromIndexResponse { private string _detachedObjectIdentifier; /// <summary> /// Gets and sets the property DetachedObjectIdentifier. /// <para> /// The <code>ObjectIdentifier</code> of the object that was detached from the index. /// </para> /// </summary> public string DetachedObjectIdentifier { get { return this._detachedObjectIdentifier; } set { this._detachedObjectIdentifier = value; } } // Check to see if DetachedObjectIdentifier property is set internal bool IsSetDetachedObjectIdentifier() { return this._detachedObjectIdentifier != null; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>DetachObject</a> operation. /// </summary> public partial class BatchDetachObject { private string _batchReferenceName; private string _linkName; private ObjectReference _parentReference; /// <summary> /// Gets and sets the property BatchReferenceName. /// <para> /// The batch reference name. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/transaction_support.html">Transaction /// Support</a> for more information. /// </para> /// </summary> public string BatchReferenceName { get { return this._batchReferenceName; } set { this._batchReferenceName = value; } } // Check to see if BatchReferenceName property is set internal bool IsSetBatchReferenceName() { return this._batchReferenceName != null; } /// <summary> /// Gets and sets the property LinkName. /// <para> /// The name of the link. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=64)] public string LinkName { get { return this._linkName; } set { this._linkName = value; } } // Check to see if LinkName property is set internal bool IsSetLinkName() { return this._linkName != null; } /// <summary> /// Gets and sets the property ParentReference. /// <para> /// Parent reference from which the object with the specified link name is detached. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ParentReference { get { return this._parentReference; } set { this._parentReference = value; } } // Check to see if ParentReference property is set internal bool IsSetParentReference() { return this._parentReference != null; } } }
98
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>DetachObject</a> response operation. /// </summary> public partial class BatchDetachObjectResponse { private string _detachedObjectIdentifier; /// <summary> /// Gets and sets the property DetachedObjectIdentifier. /// <para> /// The <code>ObjectIdentifier</code> of the detached object. /// </para> /// </summary> public string DetachedObjectIdentifier { get { return this._detachedObjectIdentifier; } set { this._detachedObjectIdentifier = value; } } // Check to see if DetachedObjectIdentifier property is set internal bool IsSetDetachedObjectIdentifier() { return this._detachedObjectIdentifier != null; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Detaches the specified policy from the specified directory inside a <a>BatchWrite</a> /// operation. For more information, see <a>DetachPolicy</a> and <a>BatchWriteRequest$Operations</a>. /// </summary> public partial class BatchDetachPolicy { private ObjectReference _objectReference; private ObjectReference _policyReference; /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// Reference that identifies the object whose policy object will be detached. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } /// <summary> /// Gets and sets the property PolicyReference. /// <para> /// Reference that identifies the policy object. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference PolicyReference { get { return this._policyReference; } set { this._policyReference = value; } } // Check to see if PolicyReference property is set internal bool IsSetPolicyReference() { return this._policyReference != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>DetachPolicy</a> response operation. /// </summary> public partial class BatchDetachPolicyResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Detaches a typed link from a specified source and target object inside a <a>BatchRead</a> /// operation. For more information, see <a>DetachTypedLink</a> and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchDetachTypedLink { private TypedLinkSpecifier _typedLinkSpecifier; /// <summary> /// Gets and sets the property TypedLinkSpecifier. /// <para> /// Used to accept a typed link specifier as input. /// </para> /// </summary> [AWSProperty(Required=true)] public TypedLinkSpecifier TypedLinkSpecifier { get { return this._typedLinkSpecifier; } set { this._typedLinkSpecifier = value; } } // Check to see if TypedLinkSpecifier property is set internal bool IsSetTypedLinkSpecifier() { return this._typedLinkSpecifier != null; } } }
59
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>DetachTypedLink</a> response operation. /// </summary> public partial class BatchDetachTypedLinkResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Retrieves attributes that are associated with a typed link inside a <a>BatchRead</a> /// operation. For more information, see <a>GetLinkAttributes</a> and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchGetLinkAttributes { private List<string> _attributeNames = new List<string>(); private TypedLinkSpecifier _typedLinkSpecifier; /// <summary> /// Gets and sets the property AttributeNames. /// <para> /// A list of attribute names whose values will be retrieved. /// </para> /// </summary> [AWSProperty(Required=true)] public List<string> AttributeNames { get { return this._attributeNames; } set { this._attributeNames = value; } } // Check to see if AttributeNames property is set internal bool IsSetAttributeNames() { return this._attributeNames != null && this._attributeNames.Count > 0; } /// <summary> /// Gets and sets the property TypedLinkSpecifier. /// <para> /// Allows a typed link specifier to be accepted as input. /// </para> /// </summary> [AWSProperty(Required=true)] public TypedLinkSpecifier TypedLinkSpecifier { get { return this._typedLinkSpecifier; } set { this._typedLinkSpecifier = value; } } // Check to see if TypedLinkSpecifier property is set internal bool IsSetTypedLinkSpecifier() { return this._typedLinkSpecifier != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>GetLinkAttributes</a> response operation. /// </summary> public partial class BatchGetLinkAttributesResponse { private List<AttributeKeyAndValue> _attributes = new List<AttributeKeyAndValue>(); /// <summary> /// Gets and sets the property Attributes. /// <para> /// The attributes that are associated with the typed link. /// </para> /// </summary> public List<AttributeKeyAndValue> Attributes { get { return this._attributes; } set { this._attributes = value; } } // Check to see if Attributes property is set internal bool IsSetAttributes() { return this._attributes != null && this._attributes.Count > 0; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Retrieves attributes within a facet that are associated with an object inside an <a>BatchRead</a> /// operation. For more information, see <a>GetObjectAttributes</a> and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchGetObjectAttributes { private List<string> _attributeNames = new List<string>(); private ObjectReference _objectReference; private SchemaFacet _schemaFacet; /// <summary> /// Gets and sets the property AttributeNames. /// <para> /// List of attribute names whose values will be retrieved. /// </para> /// </summary> [AWSProperty(Required=true)] public List<string> AttributeNames { get { return this._attributeNames; } set { this._attributeNames = value; } } // Check to see if AttributeNames property is set internal bool IsSetAttributeNames() { return this._attributeNames != null && this._attributeNames.Count > 0; } /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// Reference that identifies the object whose attributes will be retrieved. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } /// <summary> /// Gets and sets the property SchemaFacet. /// <para> /// Identifier for the facet whose attributes will be retrieved. See <a>SchemaFacet</a> /// for details. /// </para> /// </summary> [AWSProperty(Required=true)] public SchemaFacet SchemaFacet { get { return this._schemaFacet; } set { this._schemaFacet = value; } } // Check to see if SchemaFacet property is set internal bool IsSetSchemaFacet() { return this._schemaFacet != null; } } }
100
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>GetObjectAttributes</a> response operation. /// </summary> public partial class BatchGetObjectAttributesResponse { private List<AttributeKeyAndValue> _attributes = new List<AttributeKeyAndValue>(); /// <summary> /// Gets and sets the property Attributes. /// <para> /// The attribute values that are associated with an object. /// </para> /// </summary> public List<AttributeKeyAndValue> Attributes { get { return this._attributes; } set { this._attributes = value; } } // Check to see if Attributes property is set internal bool IsSetAttributes() { return this._attributes != null && this._attributes.Count > 0; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Retrieves metadata about an object inside a <a>BatchRead</a> operation. For more information, /// see <a>GetObjectInformation</a> and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchGetObjectInformation { private ObjectReference _objectReference; /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// A reference to the object. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } } }
59
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>GetObjectInformation</a> response operation. /// </summary> public partial class BatchGetObjectInformationResponse { private string _objectIdentifier; private List<SchemaFacet> _schemaFacets = new List<SchemaFacet>(); /// <summary> /// Gets and sets the property ObjectIdentifier. /// <para> /// The <code>ObjectIdentifier</code> of the specified object. /// </para> /// </summary> public string ObjectIdentifier { get { return this._objectIdentifier; } set { this._objectIdentifier = value; } } // Check to see if ObjectIdentifier property is set internal bool IsSetObjectIdentifier() { return this._objectIdentifier != null; } /// <summary> /// Gets and sets the property SchemaFacets. /// <para> /// The facets attached to the specified object. /// </para> /// </summary> public List<SchemaFacet> SchemaFacets { get { return this._schemaFacets; } set { this._schemaFacets = value; } } // Check to see if SchemaFacets property is set internal bool IsSetSchemaFacets() { return this._schemaFacets != null && this._schemaFacets.Count > 0; } } }
76
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Lists indices attached to an object inside a <a>BatchRead</a> operation. For more /// information, see <a>ListAttachedIndices</a> and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchListAttachedIndices { private int? _maxResults; private string _nextToken; private ObjectReference _targetReference; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of results to retrieve. /// </para> /// </summary> [AWSProperty(Min=1)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property TargetReference. /// <para> /// A reference to the object that has indices attached. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference TargetReference { get { return this._targetReference; } set { this._targetReference = value; } } // Check to see if TargetReference property is set internal bool IsSetTargetReference() { return this._targetReference != null; } } }
98
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>ListAttachedIndices</a> response operation. /// </summary> public partial class BatchListAttachedIndicesResponse { private List<IndexAttachment> _indexAttachments = new List<IndexAttachment>(); private string _nextToken; /// <summary> /// Gets and sets the property IndexAttachments. /// <para> /// The indices attached to the specified object. /// </para> /// </summary> public List<IndexAttachment> IndexAttachments { get { return this._indexAttachments; } set { this._indexAttachments = value; } } // Check to see if IndexAttachments property is set internal bool IsSetIndexAttachments() { return this._indexAttachments != null && this._indexAttachments.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
76
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Returns a paginated list of all the incoming <a>TypedLinkSpecifier</a> information /// for an object inside a <a>BatchRead</a> operation. For more information, see <a>ListIncomingTypedLinks</a> /// and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchListIncomingTypedLinks { private List<TypedLinkAttributeRange> _filterAttributeRanges = new List<TypedLinkAttributeRange>(); private TypedLinkSchemaAndFacetName _filterTypedLink; private int? _maxResults; private string _nextToken; private ObjectReference _objectReference; /// <summary> /// Gets and sets the property FilterAttributeRanges. /// <para> /// 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. /// </para> /// </summary> public List<TypedLinkAttributeRange> FilterAttributeRanges { get { return this._filterAttributeRanges; } set { this._filterAttributeRanges = value; } } // Check to see if FilterAttributeRanges property is set internal bool IsSetFilterAttributeRanges() { return this._filterAttributeRanges != null && this._filterAttributeRanges.Count > 0; } /// <summary> /// Gets and sets the property FilterTypedLink. /// <para> /// 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. /// </para> /// </summary> public TypedLinkSchemaAndFacetName FilterTypedLink { get { return this._filterTypedLink; } set { this._filterTypedLink = value; } } // Check to see if FilterTypedLink property is set internal bool IsSetFilterTypedLink() { return this._filterTypedLink != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of results to retrieve. /// </para> /// </summary> [AWSProperty(Min=1)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// The reference that identifies the object whose attributes will be listed. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } } }
140
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>ListIncomingTypedLinks</a> response operation. /// </summary> public partial class BatchListIncomingTypedLinksResponse { private List<TypedLinkSpecifier> _linkSpecifiers = new List<TypedLinkSpecifier>(); private string _nextToken; /// <summary> /// Gets and sets the property LinkSpecifiers. /// <para> /// Returns one or more typed link specifiers as output. /// </para> /// </summary> public List<TypedLinkSpecifier> LinkSpecifiers { get { return this._linkSpecifiers; } set { this._linkSpecifiers = value; } } // Check to see if LinkSpecifiers property is set internal bool IsSetLinkSpecifiers() { return this._linkSpecifiers != null && this._linkSpecifiers.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
76
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Lists objects attached to the specified index inside a <a>BatchRead</a> operation. /// For more information, see <a>ListIndex</a> and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchListIndex { private ObjectReference _indexReference; private int? _maxResults; private string _nextToken; private List<ObjectAttributeRange> _rangesOnIndexedValues = new List<ObjectAttributeRange>(); /// <summary> /// Gets and sets the property IndexReference. /// <para> /// The reference to the index to list. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference IndexReference { get { return this._indexReference; } set { this._indexReference = value; } } // Check to see if IndexReference property is set internal bool IsSetIndexReference() { return this._indexReference != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of results to retrieve. /// </para> /// </summary> [AWSProperty(Min=1)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property RangesOnIndexedValues. /// <para> /// Specifies the ranges of indexed values that you want to query. /// </para> /// </summary> public List<ObjectAttributeRange> RangesOnIndexedValues { get { return this._rangesOnIndexedValues; } set { this._rangesOnIndexedValues = value; } } // Check to see if RangesOnIndexedValues property is set internal bool IsSetRangesOnIndexedValues() { return this._rangesOnIndexedValues != null && this._rangesOnIndexedValues.Count > 0; } } }
117
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>ListIndex</a> response operation. /// </summary> public partial class BatchListIndexResponse { private List<IndexAttachment> _indexAttachments = new List<IndexAttachment>(); private string _nextToken; /// <summary> /// Gets and sets the property IndexAttachments. /// <para> /// The objects and indexed values attached to the index. /// </para> /// </summary> public List<IndexAttachment> IndexAttachments { get { return this._indexAttachments; } set { this._indexAttachments = value; } } // Check to see if IndexAttachments property is set internal bool IsSetIndexAttachments() { return this._indexAttachments != null && this._indexAttachments.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
76
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>ListObjectAttributes</a> operation. /// </summary> public partial class BatchListObjectAttributes { private SchemaFacet _facetFilter; private int? _maxResults; private string _nextToken; private ObjectReference _objectReference; /// <summary> /// Gets and sets the property FacetFilter. /// <para> /// Used to filter the list of object attributes that are associated with a certain facet. /// </para> /// </summary> public SchemaFacet FacetFilter { get { return this._facetFilter; } set { this._facetFilter = value; } } // Check to see if FacetFilter property is set internal bool IsSetFacetFilter() { return this._facetFilter != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of items to be retrieved in a single call. This is an approximate /// number. /// </para> /// </summary> [AWSProperty(Min=1)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// Reference of the object whose attributes need to be listed. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } } }
117
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>ListObjectAttributes</a> response operation. /// </summary> public partial class BatchListObjectAttributesResponse { private List<AttributeKeyAndValue> _attributes = new List<AttributeKeyAndValue>(); private string _nextToken; /// <summary> /// Gets and sets the property Attributes. /// <para> /// The attributes map that is associated with the object. <code>AttributeArn</code> is /// the key; attribute value is the value. /// </para> /// </summary> public List<AttributeKeyAndValue> Attributes { get { return this._attributes; } set { this._attributes = value; } } // Check to see if Attributes property is set internal bool IsSetAttributes() { return this._attributes != null && this._attributes.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
77
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>ListObjectChildren</a> operation. /// </summary> public partial class BatchListObjectChildren { private int? _maxResults; private string _nextToken; private ObjectReference _objectReference; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// Maximum number of items to be retrieved in a single call. This is an approximate number. /// </para> /// </summary> [AWSProperty(Min=1)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// Reference of the object for which child objects are being listed. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } } }
97
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>ListObjectChildren</a> response operation. /// </summary> public partial class BatchListObjectChildrenResponse { private Dictionary<string, string> _children = new Dictionary<string, string>(); private string _nextToken; /// <summary> /// Gets and sets the property Children. /// <para> /// The children structure, which is a map with the key as the <code>LinkName</code> and /// <code>ObjectIdentifier</code> as the value. /// </para> /// </summary> public Dictionary<string, string> Children { get { return this._children; } set { this._children = value; } } // Check to see if Children property is set internal bool IsSetChildren() { return this._children != null && this._children.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
77
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Retrieves all available parent paths for any object type such as node, leaf node, /// policy node, and index node objects inside a <a>BatchRead</a> operation. For more /// information, see <a>ListObjectParentPaths</a> and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchListObjectParentPaths { private int? _maxResults; private string _nextToken; private ObjectReference _objectReference; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of results to retrieve. /// </para> /// </summary> [AWSProperty(Min=1)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// The reference that identifies the object whose attributes will be listed. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } } }
99
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>ListObjectParentPaths</a> response operation. /// </summary> public partial class BatchListObjectParentPathsResponse { private string _nextToken; private List<PathToObjectIdentifiers> _pathToObjectIdentifiersList = new List<PathToObjectIdentifiers>(); /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property PathToObjectIdentifiersList. /// <para> /// Returns the path to the <code>ObjectIdentifiers</code> that are associated with the /// directory. /// </para> /// </summary> public List<PathToObjectIdentifiers> PathToObjectIdentifiersList { get { return this._pathToObjectIdentifiersList; } set { this._pathToObjectIdentifiersList = value; } } // Check to see if PathToObjectIdentifiersList property is set internal bool IsSetPathToObjectIdentifiersList() { return this._pathToObjectIdentifiersList != null && this._pathToObjectIdentifiersList.Count > 0; } } }
77
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Lists parent objects that are associated with a given object in pagination fashion. /// </summary> public partial class BatchListObjectParents { private int? _maxResults; private string _nextToken; private ObjectReference _objectReference; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of items to be retrieved in a single call. This is an approximate /// number. /// </para> /// </summary> [AWSProperty(Min=1)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property ObjectReference. /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } } }
95
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>ListObjectParents</a> response operation. /// </summary> public partial class BatchListObjectParentsResponse { private string _nextToken; private List<ObjectIdentifierAndLinkNameTuple> _parentLinks = new List<ObjectIdentifierAndLinkNameTuple>(); /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property ParentLinks. /// <para> /// Returns a list of parent reference and LinkName Tuples. /// </para> /// </summary> public List<ObjectIdentifierAndLinkNameTuple> ParentLinks { get { return this._parentLinks; } set { this._parentLinks = value; } } // Check to see if ParentLinks property is set internal bool IsSetParentLinks() { return this._parentLinks != null && this._parentLinks.Count > 0; } } }
76
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Returns policies attached to an object in pagination fashion inside a <a>BatchRead</a> /// operation. For more information, see <a>ListObjectPolicies</a> and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchListObjectPolicies { private int? _maxResults; private string _nextToken; private ObjectReference _objectReference; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of results to retrieve. /// </para> /// </summary> [AWSProperty(Min=1)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// The reference that identifies the object whose attributes will be listed. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } } }
98
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>ListObjectPolicies</a> response operation. /// </summary> public partial class BatchListObjectPoliciesResponse { private List<string> _attachedPolicyIds = new List<string>(); private string _nextToken; /// <summary> /// Gets and sets the property AttachedPolicyIds. /// <para> /// A list of policy <code>ObjectIdentifiers</code>, that are attached to the object. /// </para> /// </summary> public List<string> AttachedPolicyIds { get { return this._attachedPolicyIds; } set { this._attachedPolicyIds = value; } } // Check to see if AttachedPolicyIds property is set internal bool IsSetAttachedPolicyIds() { return this._attachedPolicyIds != null && this._attachedPolicyIds.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
76
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Returns a paginated list of all the outgoing <a>TypedLinkSpecifier</a> information /// for an object inside a <a>BatchRead</a> operation. For more information, see <a>ListOutgoingTypedLinks</a> /// and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchListOutgoingTypedLinks { private List<TypedLinkAttributeRange> _filterAttributeRanges = new List<TypedLinkAttributeRange>(); private TypedLinkSchemaAndFacetName _filterTypedLink; private int? _maxResults; private string _nextToken; private ObjectReference _objectReference; /// <summary> /// Gets and sets the property FilterAttributeRanges. /// <para> /// 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. /// </para> /// </summary> public List<TypedLinkAttributeRange> FilterAttributeRanges { get { return this._filterAttributeRanges; } set { this._filterAttributeRanges = value; } } // Check to see if FilterAttributeRanges property is set internal bool IsSetFilterAttributeRanges() { return this._filterAttributeRanges != null && this._filterAttributeRanges.Count > 0; } /// <summary> /// Gets and sets the property FilterTypedLink. /// <para> /// 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. /// </para> /// </summary> public TypedLinkSchemaAndFacetName FilterTypedLink { get { return this._filterTypedLink; } set { this._filterTypedLink = value; } } // Check to see if FilterTypedLink property is set internal bool IsSetFilterTypedLink() { return this._filterTypedLink != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of results to retrieve. /// </para> /// </summary> [AWSProperty(Min=1)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// The reference that identifies the object whose attributes will be listed. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } } }
140
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>ListOutgoingTypedLinks</a> response operation. /// </summary> public partial class BatchListOutgoingTypedLinksResponse { private string _nextToken; private List<TypedLinkSpecifier> _typedLinkSpecifiers = new List<TypedLinkSpecifier>(); /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property TypedLinkSpecifiers. /// <para> /// Returns a typed link specifier as output. /// </para> /// </summary> public List<TypedLinkSpecifier> TypedLinkSpecifiers { get { return this._typedLinkSpecifiers; } set { this._typedLinkSpecifiers = value; } } // Check to see if TypedLinkSpecifiers property is set internal bool IsSetTypedLinkSpecifiers() { return this._typedLinkSpecifiers != null && this._typedLinkSpecifiers.Count > 0; } } }
76
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Returns all of the <code>ObjectIdentifiers</code> to which a given policy is attached /// inside a <a>BatchRead</a> operation. For more information, see <a>ListPolicyAttachments</a> /// and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchListPolicyAttachments { private int? _maxResults; private string _nextToken; private ObjectReference _policyReference; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of results to retrieve. /// </para> /// </summary> [AWSProperty(Min=1)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property PolicyReference. /// <para> /// The reference that identifies the policy object. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference PolicyReference { get { return this._policyReference; } set { this._policyReference = value; } } // Check to see if PolicyReference property is set internal bool IsSetPolicyReference() { return this._policyReference != null; } } }
99
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>ListPolicyAttachments</a> response operation. /// </summary> public partial class BatchListPolicyAttachmentsResponse { private string _nextToken; private List<string> _objectIdentifiers = new List<string>(); /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property ObjectIdentifiers. /// <para> /// A list of <code>ObjectIdentifiers</code> to which the policy is attached. /// </para> /// </summary> public List<string> ObjectIdentifiers { get { return this._objectIdentifiers; } set { this._objectIdentifiers = value; } } // Check to see if ObjectIdentifiers property is set internal bool IsSetObjectIdentifiers() { return this._objectIdentifiers != null && this._objectIdentifiers.Count > 0; } } }
76
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Lists all policies from the root of the Directory to the object specified inside a /// <a>BatchRead</a> operation. For more information, see <a>LookupPolicy</a> and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchLookupPolicy { private int? _maxResults; private string _nextToken; private ObjectReference _objectReference; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum number of results to retrieve. /// </para> /// </summary> [AWSProperty(Min=1)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// Reference that identifies the object whose policies will be looked up. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } } }
98
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>LookupPolicy</a> response operation. /// </summary> public partial class BatchLookupPolicyResponse { private string _nextToken; private List<PolicyToPath> _policyToPathList = new List<PolicyToPath>(); /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token. /// </para> /// </summary> public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property PolicyToPathList. /// <para> /// Provides list of path to policies. Policies contain <code>PolicyId</code>, <code>ObjectIdentifier</code>, /// and <code>PolicyType</code>. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies">Policies</a>. /// </para> /// </summary> public List<PolicyToPath> PolicyToPathList { get { return this._policyToPathList; } set { this._policyToPathList = value; } } // Check to see if PolicyToPathList property is set internal bool IsSetPolicyToPathList() { return this._policyToPathList != null && this._policyToPathList.Count > 0; } } }
77
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// The batch read exception structure, which contains the exception type and message. /// </summary> public partial class BatchReadException { private string _message; private BatchReadExceptionType _type; /// <summary> /// Gets and sets the property Message. /// <para> /// An exception message that is associated with the failure. /// </para> /// </summary> public string Message { get { return this._message; } set { this._message = value; } } // Check to see if Message property is set internal bool IsSetMessage() { return this._message != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// A type of exception, such as <code>InvalidArnException</code>. /// </para> /// </summary> public BatchReadExceptionType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } } }
76
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <code>BatchRead</code> operation. /// </summary> public partial class BatchReadOperation { private BatchGetLinkAttributes _getLinkAttributes; private BatchGetObjectAttributes _getObjectAttributes; private BatchGetObjectInformation _getObjectInformation; private BatchListAttachedIndices _listAttachedIndices; private BatchListIncomingTypedLinks _listIncomingTypedLinks; private BatchListIndex _listIndex; private BatchListObjectAttributes _listObjectAttributes; private BatchListObjectChildren _listObjectChildren; private BatchListObjectParentPaths _listObjectParentPaths; private BatchListObjectParents _listObjectParents; private BatchListObjectPolicies _listObjectPolicies; private BatchListOutgoingTypedLinks _listOutgoingTypedLinks; private BatchListPolicyAttachments _listPolicyAttachments; private BatchLookupPolicy _lookupPolicy; /// <summary> /// Gets and sets the property GetLinkAttributes. /// <para> /// Retrieves attributes that are associated with a typed link. /// </para> /// </summary> public BatchGetLinkAttributes GetLinkAttributes { get { return this._getLinkAttributes; } set { this._getLinkAttributes = value; } } // Check to see if GetLinkAttributes property is set internal bool IsSetGetLinkAttributes() { return this._getLinkAttributes != null; } /// <summary> /// Gets and sets the property GetObjectAttributes. /// <para> /// Retrieves attributes within a facet that are associated with an object. /// </para> /// </summary> public BatchGetObjectAttributes GetObjectAttributes { get { return this._getObjectAttributes; } set { this._getObjectAttributes = value; } } // Check to see if GetObjectAttributes property is set internal bool IsSetGetObjectAttributes() { return this._getObjectAttributes != null; } /// <summary> /// Gets and sets the property GetObjectInformation. /// <para> /// Retrieves metadata about an object. /// </para> /// </summary> public BatchGetObjectInformation GetObjectInformation { get { return this._getObjectInformation; } set { this._getObjectInformation = value; } } // Check to see if GetObjectInformation property is set internal bool IsSetGetObjectInformation() { return this._getObjectInformation != null; } /// <summary> /// Gets and sets the property ListAttachedIndices. /// <para> /// Lists indices attached to an object. /// </para> /// </summary> public BatchListAttachedIndices ListAttachedIndices { get { return this._listAttachedIndices; } set { this._listAttachedIndices = value; } } // Check to see if ListAttachedIndices property is set internal bool IsSetListAttachedIndices() { return this._listAttachedIndices != null; } /// <summary> /// Gets and sets the property ListIncomingTypedLinks. /// <para> /// Returns a paginated list of all the incoming <a>TypedLinkSpecifier</a> information /// for an object. It also supports filtering by typed link facet and identity attributes. /// For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed /// Links</a>. /// </para> /// </summary> public BatchListIncomingTypedLinks ListIncomingTypedLinks { get { return this._listIncomingTypedLinks; } set { this._listIncomingTypedLinks = value; } } // Check to see if ListIncomingTypedLinks property is set internal bool IsSetListIncomingTypedLinks() { return this._listIncomingTypedLinks != null; } /// <summary> /// Gets and sets the property ListIndex. /// <para> /// Lists objects attached to the specified index. /// </para> /// </summary> public BatchListIndex ListIndex { get { return this._listIndex; } set { this._listIndex = value; } } // Check to see if ListIndex property is set internal bool IsSetListIndex() { return this._listIndex != null; } /// <summary> /// Gets and sets the property ListObjectAttributes. /// <para> /// Lists all attributes that are associated with an object. /// </para> /// </summary> public BatchListObjectAttributes ListObjectAttributes { get { return this._listObjectAttributes; } set { this._listObjectAttributes = value; } } // Check to see if ListObjectAttributes property is set internal bool IsSetListObjectAttributes() { return this._listObjectAttributes != null; } /// <summary> /// Gets and sets the property ListObjectChildren. /// <para> /// Returns a paginated list of child objects that are associated with a given object. /// </para> /// </summary> public BatchListObjectChildren ListObjectChildren { get { return this._listObjectChildren; } set { this._listObjectChildren = value; } } // Check to see if ListObjectChildren property is set internal bool IsSetListObjectChildren() { return this._listObjectChildren != null; } /// <summary> /// Gets and sets the property ListObjectParentPaths. /// <para> /// 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 <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directorystructure.html">Directory /// Structure</a>. /// </para> /// </summary> public BatchListObjectParentPaths ListObjectParentPaths { get { return this._listObjectParentPaths; } set { this._listObjectParentPaths = value; } } // Check to see if ListObjectParentPaths property is set internal bool IsSetListObjectParentPaths() { return this._listObjectParentPaths != null; } /// <summary> /// Gets and sets the property ListObjectParents. /// <para> /// Lists parent objects that are associated with a given object in pagination fashion. /// </para> /// </summary> public BatchListObjectParents ListObjectParents { get { return this._listObjectParents; } set { this._listObjectParents = value; } } // Check to see if ListObjectParents property is set internal bool IsSetListObjectParents() { return this._listObjectParents != null; } /// <summary> /// Gets and sets the property ListObjectPolicies. /// <para> /// Returns policies attached to an object in pagination fashion. /// </para> /// </summary> public BatchListObjectPolicies ListObjectPolicies { get { return this._listObjectPolicies; } set { this._listObjectPolicies = value; } } // Check to see if ListObjectPolicies property is set internal bool IsSetListObjectPolicies() { return this._listObjectPolicies != null; } /// <summary> /// Gets and sets the property ListOutgoingTypedLinks. /// <para> /// Returns a paginated list of all the outgoing <a>TypedLinkSpecifier</a> information /// for an object. It also supports filtering by typed link facet and identity attributes. /// For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed /// Links</a>. /// </para> /// </summary> public BatchListOutgoingTypedLinks ListOutgoingTypedLinks { get { return this._listOutgoingTypedLinks; } set { this._listOutgoingTypedLinks = value; } } // Check to see if ListOutgoingTypedLinks property is set internal bool IsSetListOutgoingTypedLinks() { return this._listOutgoingTypedLinks != null; } /// <summary> /// Gets and sets the property ListPolicyAttachments. /// <para> /// Returns all of the <code>ObjectIdentifiers</code> to which a given policy is attached. /// </para> /// </summary> public BatchListPolicyAttachments ListPolicyAttachments { get { return this._listPolicyAttachments; } set { this._listPolicyAttachments = value; } } // Check to see if ListPolicyAttachments property is set internal bool IsSetListPolicyAttachments() { return this._listPolicyAttachments != null; } /// <summary> /// Gets and sets the property LookupPolicy. /// <para> /// Lists all policies from the root of the <a>Directory</a> 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 <code>ObjectIdentifier</code> /// for such objects. If policies are present, it returns <code>ObjectIdentifier</code>, /// <code>policyId</code>, and <code>policyType</code>. Paths that don't lead to the root /// from the target object are ignored. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies">Policies</a>. /// </para> /// </summary> public BatchLookupPolicy LookupPolicy { get { return this._lookupPolicy; } set { this._lookupPolicy = value; } } // Check to see if LookupPolicy property is set internal bool IsSetLookupPolicy() { return this._lookupPolicy != null; } } }
317
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <code>BatchRead</code> response operation. /// </summary> public partial class BatchReadOperationResponse { private BatchReadException _exceptionResponse; private BatchReadSuccessfulResponse _successfulResponse; /// <summary> /// Gets and sets the property ExceptionResponse. /// <para> /// Identifies which operation in a batch has failed. /// </para> /// </summary> public BatchReadException ExceptionResponse { get { return this._exceptionResponse; } set { this._exceptionResponse = value; } } // Check to see if ExceptionResponse property is set internal bool IsSetExceptionResponse() { return this._exceptionResponse != null; } /// <summary> /// Gets and sets the property SuccessfulResponse. /// <para> /// Identifies which operation in a batch has succeeded. /// </para> /// </summary> public BatchReadSuccessfulResponse SuccessfulResponse { get { return this._successfulResponse; } set { this._successfulResponse = value; } } // Check to see if SuccessfulResponse property is set internal bool IsSetSuccessfulResponse() { return this._successfulResponse != null; } } }
76
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the BatchRead operation. /// Performs all the read operations in a batch. /// </summary> public partial class BatchReadRequest : AmazonCloudDirectoryRequest { private ConsistencyLevel _consistencyLevel; private string _directoryArn; private List<BatchReadOperation> _operations = new List<BatchReadOperation>(); /// <summary> /// Gets and sets the property ConsistencyLevel. /// <para> /// 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. /// </para> /// </summary> public ConsistencyLevel ConsistencyLevel { get { return this._consistencyLevel; } set { this._consistencyLevel = value; } } // Check to see if ConsistencyLevel property is set internal bool IsSetConsistencyLevel() { return this._consistencyLevel != null; } /// <summary> /// Gets and sets the property DirectoryArn. /// <para> /// The Amazon Resource Name (ARN) that is associated with the <a>Directory</a>. For more /// information, see <a>arns</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryArn { get { return this._directoryArn; } set { this._directoryArn = value; } } // Check to see if DirectoryArn property is set internal bool IsSetDirectoryArn() { return this._directoryArn != null; } /// <summary> /// Gets and sets the property Operations. /// <para> /// A list of operations that are part of the batch. /// </para> /// </summary> [AWSProperty(Required=true)] public List<BatchReadOperation> Operations { get { return this._operations; } set { this._operations = value; } } // Check to see if Operations property is set internal bool IsSetOperations() { return this._operations != null && this._operations.Count > 0; } } }
100
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the BatchRead operation. /// </summary> public partial class BatchReadResponse : AmazonWebServiceResponse { private List<BatchReadOperationResponse> _responses = new List<BatchReadOperationResponse>(); /// <summary> /// Gets and sets the property Responses. /// <para> /// A list of all the responses for each batch read. /// </para> /// </summary> public List<BatchReadOperationResponse> Responses { get { return this._responses; } set { this._responses = value; } } // Check to see if Responses property is set internal bool IsSetResponses() { return this._responses != null && this._responses.Count > 0; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <code>BatchRead</code> success response operation. /// </summary> public partial class BatchReadSuccessfulResponse { private BatchGetLinkAttributesResponse _getLinkAttributes; private BatchGetObjectAttributesResponse _getObjectAttributes; private BatchGetObjectInformationResponse _getObjectInformation; private BatchListAttachedIndicesResponse _listAttachedIndices; private BatchListIncomingTypedLinksResponse _listIncomingTypedLinks; private BatchListIndexResponse _listIndex; private BatchListObjectAttributesResponse _listObjectAttributes; private BatchListObjectChildrenResponse _listObjectChildren; private BatchListObjectParentPathsResponse _listObjectParentPaths; private BatchListObjectParentsResponse _listObjectParents; private BatchListObjectPoliciesResponse _listObjectPolicies; private BatchListOutgoingTypedLinksResponse _listOutgoingTypedLinks; private BatchListPolicyAttachmentsResponse _listPolicyAttachments; private BatchLookupPolicyResponse _lookupPolicy; /// <summary> /// Gets and sets the property GetLinkAttributes. /// <para> /// The list of attributes to retrieve from the typed link. /// </para> /// </summary> public BatchGetLinkAttributesResponse GetLinkAttributes { get { return this._getLinkAttributes; } set { this._getLinkAttributes = value; } } // Check to see if GetLinkAttributes property is set internal bool IsSetGetLinkAttributes() { return this._getLinkAttributes != null; } /// <summary> /// Gets and sets the property GetObjectAttributes. /// <para> /// Retrieves attributes within a facet that are associated with an object. /// </para> /// </summary> public BatchGetObjectAttributesResponse GetObjectAttributes { get { return this._getObjectAttributes; } set { this._getObjectAttributes = value; } } // Check to see if GetObjectAttributes property is set internal bool IsSetGetObjectAttributes() { return this._getObjectAttributes != null; } /// <summary> /// Gets and sets the property GetObjectInformation. /// <para> /// Retrieves metadata about an object. /// </para> /// </summary> public BatchGetObjectInformationResponse GetObjectInformation { get { return this._getObjectInformation; } set { this._getObjectInformation = value; } } // Check to see if GetObjectInformation property is set internal bool IsSetGetObjectInformation() { return this._getObjectInformation != null; } /// <summary> /// Gets and sets the property ListAttachedIndices. /// <para> /// Lists indices attached to an object. /// </para> /// </summary> public BatchListAttachedIndicesResponse ListAttachedIndices { get { return this._listAttachedIndices; } set { this._listAttachedIndices = value; } } // Check to see if ListAttachedIndices property is set internal bool IsSetListAttachedIndices() { return this._listAttachedIndices != null; } /// <summary> /// Gets and sets the property ListIncomingTypedLinks. /// <para> /// Returns a paginated list of all the incoming <a>TypedLinkSpecifier</a> information /// for an object. It also supports filtering by typed link facet and identity attributes. /// For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed /// Links</a>. /// </para> /// </summary> public BatchListIncomingTypedLinksResponse ListIncomingTypedLinks { get { return this._listIncomingTypedLinks; } set { this._listIncomingTypedLinks = value; } } // Check to see if ListIncomingTypedLinks property is set internal bool IsSetListIncomingTypedLinks() { return this._listIncomingTypedLinks != null; } /// <summary> /// Gets and sets the property ListIndex. /// <para> /// Lists objects attached to the specified index. /// </para> /// </summary> public BatchListIndexResponse ListIndex { get { return this._listIndex; } set { this._listIndex = value; } } // Check to see if ListIndex property is set internal bool IsSetListIndex() { return this._listIndex != null; } /// <summary> /// Gets and sets the property ListObjectAttributes. /// <para> /// Lists all attributes that are associated with an object. /// </para> /// </summary> public BatchListObjectAttributesResponse ListObjectAttributes { get { return this._listObjectAttributes; } set { this._listObjectAttributes = value; } } // Check to see if ListObjectAttributes property is set internal bool IsSetListObjectAttributes() { return this._listObjectAttributes != null; } /// <summary> /// Gets and sets the property ListObjectChildren. /// <para> /// Returns a paginated list of child objects that are associated with a given object. /// </para> /// </summary> public BatchListObjectChildrenResponse ListObjectChildren { get { return this._listObjectChildren; } set { this._listObjectChildren = value; } } // Check to see if ListObjectChildren property is set internal bool IsSetListObjectChildren() { return this._listObjectChildren != null; } /// <summary> /// Gets and sets the property ListObjectParentPaths. /// <para> /// 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 <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directorystructure.html">Directory /// Structure</a>. /// </para> /// </summary> public BatchListObjectParentPathsResponse ListObjectParentPaths { get { return this._listObjectParentPaths; } set { this._listObjectParentPaths = value; } } // Check to see if ListObjectParentPaths property is set internal bool IsSetListObjectParentPaths() { return this._listObjectParentPaths != null; } /// <summary> /// Gets and sets the property ListObjectParents. /// <para> /// The list of parent objects to retrieve. /// </para> /// </summary> public BatchListObjectParentsResponse ListObjectParents { get { return this._listObjectParents; } set { this._listObjectParents = value; } } // Check to see if ListObjectParents property is set internal bool IsSetListObjectParents() { return this._listObjectParents != null; } /// <summary> /// Gets and sets the property ListObjectPolicies. /// <para> /// Returns policies attached to an object in pagination fashion. /// </para> /// </summary> public BatchListObjectPoliciesResponse ListObjectPolicies { get { return this._listObjectPolicies; } set { this._listObjectPolicies = value; } } // Check to see if ListObjectPolicies property is set internal bool IsSetListObjectPolicies() { return this._listObjectPolicies != null; } /// <summary> /// Gets and sets the property ListOutgoingTypedLinks. /// <para> /// Returns a paginated list of all the outgoing <a>TypedLinkSpecifier</a> information /// for an object. It also supports filtering by typed link facet and identity attributes. /// For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed /// Links</a>. /// </para> /// </summary> public BatchListOutgoingTypedLinksResponse ListOutgoingTypedLinks { get { return this._listOutgoingTypedLinks; } set { this._listOutgoingTypedLinks = value; } } // Check to see if ListOutgoingTypedLinks property is set internal bool IsSetListOutgoingTypedLinks() { return this._listOutgoingTypedLinks != null; } /// <summary> /// Gets and sets the property ListPolicyAttachments. /// <para> /// Returns all of the <code>ObjectIdentifiers</code> to which a given policy is attached. /// </para> /// </summary> public BatchListPolicyAttachmentsResponse ListPolicyAttachments { get { return this._listPolicyAttachments; } set { this._listPolicyAttachments = value; } } // Check to see if ListPolicyAttachments property is set internal bool IsSetListPolicyAttachments() { return this._listPolicyAttachments != null; } /// <summary> /// Gets and sets the property LookupPolicy. /// <para> /// Lists all policies from the root of the <a>Directory</a> 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 <code>ObjectIdentifier</code> /// for such objects. If policies are present, it returns <code>ObjectIdentifier</code>, /// <code>policyId</code>, and <code>policyType</code>. Paths that don't lead to the root /// from the target object are ignored. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies">Policies</a>. /// </para> /// </summary> public BatchLookupPolicyResponse LookupPolicy { get { return this._lookupPolicy; } set { this._lookupPolicy = value; } } // Check to see if LookupPolicy property is set internal bool IsSetLookupPolicy() { return this._lookupPolicy != null; } } }
317
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// A batch operation to remove a facet from an object. /// </summary> public partial class BatchRemoveFacetFromObject { private ObjectReference _objectReference; private SchemaFacet _schemaFacet; /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// A reference to the object whose facet will be removed. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } /// <summary> /// Gets and sets the property SchemaFacet. /// <para> /// The facet to remove from the object. /// </para> /// </summary> [AWSProperty(Required=true)] public SchemaFacet SchemaFacet { get { return this._schemaFacet; } set { this._schemaFacet = value; } } // Check to see if SchemaFacet property is set internal bool IsSetSchemaFacet() { return this._schemaFacet != null; } } }
78
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// An empty result that represents success. /// </summary> public partial class BatchRemoveFacetFromObjectResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Updates a given typed link’s attributes inside a <a>BatchRead</a> operation. Attributes /// to be updated must not contribute to the typed link’s identity, as defined by its /// <code>IdentityAttributeOrder</code>. For more information, see <a>UpdateLinkAttributes</a> /// and <a>BatchReadRequest$Operations</a>. /// </summary> public partial class BatchUpdateLinkAttributes { private List<LinkAttributeUpdate> _attributeUpdates = new List<LinkAttributeUpdate>(); private TypedLinkSpecifier _typedLinkSpecifier; /// <summary> /// Gets and sets the property AttributeUpdates. /// <para> /// The attributes update structure. /// </para> /// </summary> [AWSProperty(Required=true)] public List<LinkAttributeUpdate> AttributeUpdates { get { return this._attributeUpdates; } set { this._attributeUpdates = value; } } // Check to see if AttributeUpdates property is set internal bool IsSetAttributeUpdates() { return this._attributeUpdates != null && this._attributeUpdates.Count > 0; } /// <summary> /// Gets and sets the property TypedLinkSpecifier. /// <para> /// Allows a typed link specifier to be accepted as input. /// </para> /// </summary> [AWSProperty(Required=true)] public TypedLinkSpecifier TypedLinkSpecifier { get { return this._typedLinkSpecifier; } set { this._typedLinkSpecifier = value; } } // Check to see if TypedLinkSpecifier property is set internal bool IsSetTypedLinkSpecifier() { return this._typedLinkSpecifier != null; } } }
81
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <a>UpdateLinkAttributes</a> response operation. /// </summary> public partial class BatchUpdateLinkAttributesResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <code>BatchUpdate</code> operation. /// </summary> public partial class BatchUpdateObjectAttributes { private List<ObjectAttributeUpdate> _attributeUpdates = new List<ObjectAttributeUpdate>(); private ObjectReference _objectReference; /// <summary> /// Gets and sets the property AttributeUpdates. /// <para> /// Attributes update structure. /// </para> /// </summary> [AWSProperty(Required=true)] public List<ObjectAttributeUpdate> AttributeUpdates { get { return this._attributeUpdates; } set { this._attributeUpdates = value; } } // Check to see if AttributeUpdates property is set internal bool IsSetAttributeUpdates() { return this._attributeUpdates != null && this._attributeUpdates.Count > 0; } /// <summary> /// Gets and sets the property ObjectReference. /// <para> /// Reference that identifies the object. /// </para> /// </summary> [AWSProperty(Required=true)] public ObjectReference ObjectReference { get { return this._objectReference; } set { this._objectReference = value; } } // Check to see if ObjectReference property is set internal bool IsSetObjectReference() { return this._objectReference != null; } } }
78
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <code>BatchUpdate</code> response operation. /// </summary> public partial class BatchUpdateObjectAttributesResponse { private string _objectIdentifier; /// <summary> /// Gets and sets the property ObjectIdentifier. /// <para> /// ID that is associated with the object. /// </para> /// </summary> public string ObjectIdentifier { get { return this._objectIdentifier; } set { this._objectIdentifier = value; } } // Check to see if ObjectIdentifier property is set internal bool IsSetObjectIdentifier() { return this._objectIdentifier != null; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// A <code>BatchWrite</code> exception has occurred. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class BatchWriteException : AmazonCloudDirectoryException { private int? _index; private BatchWriteExceptionType _type; /// <summary> /// Constructs a new BatchWriteException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public BatchWriteException(string message) : base(message) {} /// <summary> /// Construct instance of BatchWriteException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public BatchWriteException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of BatchWriteException /// </summary> /// <param name="innerException"></param> public BatchWriteException(Exception innerException) : base(innerException) {} /// <summary> /// Construct instance of BatchWriteException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> /// <param name="errorType"></param> /// <param name="errorCode"></param> /// <param name="requestId"></param> /// <param name="statusCode"></param> public BatchWriteException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <summary> /// Construct instance of BatchWriteException /// </summary> /// <param name="message"></param> /// <param name="errorType"></param> /// <param name="errorCode"></param> /// <param name="requestId"></param> /// <param name="statusCode"></param> public BatchWriteException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <summary> /// Constructs a new instance of the BatchWriteException class with serialized data. /// </summary> /// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param> /// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param> /// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception> /// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception> protected BatchWriteException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.Index = (int)info.GetValue("Index", typeof(int)); this.Type = (BatchWriteExceptionType)info.GetValue("Type", typeof(BatchWriteExceptionType)); } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </summary> /// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param> /// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param> /// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); info.AddValue("Index", this.Index); info.AddValue("Type", this.Type); } #endif /// <summary> /// Gets and sets the property Index. /// </summary> public int Index { get { return this._index.GetValueOrDefault(); } set { this._index = value; } } // Check to see if Index property is set internal bool IsSetIndex() { return this._index.HasValue; } /// <summary> /// Gets and sets the property Type. /// </summary> public BatchWriteExceptionType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } } }
160
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <code>BatchWrite</code> operation. /// </summary> public partial class BatchWriteOperation { private BatchAddFacetToObject _addFacetToObject; private BatchAttachObject _attachObject; private BatchAttachPolicy _attachPolicy; private BatchAttachToIndex _attachToIndex; private BatchAttachTypedLink _attachTypedLink; private BatchCreateIndex _createIndex; private BatchCreateObject _createObject; private BatchDeleteObject _deleteObject; private BatchDetachFromIndex _detachFromIndex; private BatchDetachObject _detachObject; private BatchDetachPolicy _detachPolicy; private BatchDetachTypedLink _detachTypedLink; private BatchRemoveFacetFromObject _removeFacetFromObject; private BatchUpdateLinkAttributes _updateLinkAttributes; private BatchUpdateObjectAttributes _updateObjectAttributes; /// <summary> /// Gets and sets the property AddFacetToObject. /// <para> /// A batch operation that adds a facet to an object. /// </para> /// </summary> public BatchAddFacetToObject AddFacetToObject { get { return this._addFacetToObject; } set { this._addFacetToObject = value; } } // Check to see if AddFacetToObject property is set internal bool IsSetAddFacetToObject() { return this._addFacetToObject != null; } /// <summary> /// Gets and sets the property AttachObject. /// <para> /// Attaches an object to a <a>Directory</a>. /// </para> /// </summary> public BatchAttachObject AttachObject { get { return this._attachObject; } set { this._attachObject = value; } } // Check to see if AttachObject property is set internal bool IsSetAttachObject() { return this._attachObject != null; } /// <summary> /// Gets and sets the property AttachPolicy. /// <para> /// Attaches a policy object to a regular object. An object can have a limited number /// of attached policies. /// </para> /// </summary> public BatchAttachPolicy AttachPolicy { get { return this._attachPolicy; } set { this._attachPolicy = value; } } // Check to see if AttachPolicy property is set internal bool IsSetAttachPolicy() { return this._attachPolicy != null; } /// <summary> /// Gets and sets the property AttachToIndex. /// <para> /// Attaches the specified object to the specified index. /// </para> /// </summary> public BatchAttachToIndex AttachToIndex { get { return this._attachToIndex; } set { this._attachToIndex = value; } } // Check to see if AttachToIndex property is set internal bool IsSetAttachToIndex() { return this._attachToIndex != null; } /// <summary> /// Gets and sets the property AttachTypedLink. /// <para> /// Attaches a typed link to a specified source and target object. For more information, /// see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed /// Links</a>. /// </para> /// </summary> public BatchAttachTypedLink AttachTypedLink { get { return this._attachTypedLink; } set { this._attachTypedLink = value; } } // Check to see if AttachTypedLink property is set internal bool IsSetAttachTypedLink() { return this._attachTypedLink != null; } /// <summary> /// Gets and sets the property CreateIndex. /// <para> /// Creates an index object. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/indexing_search.htm">Indexing /// and search</a> for more information. /// </para> /// </summary> public BatchCreateIndex CreateIndex { get { return this._createIndex; } set { this._createIndex = value; } } // Check to see if CreateIndex property is set internal bool IsSetCreateIndex() { return this._createIndex != null; } /// <summary> /// Gets and sets the property CreateObject. /// <para> /// Creates an object. /// </para> /// </summary> public BatchCreateObject CreateObject { get { return this._createObject; } set { this._createObject = value; } } // Check to see if CreateObject property is set internal bool IsSetCreateObject() { return this._createObject != null; } /// <summary> /// Gets and sets the property DeleteObject. /// <para> /// Deletes an object in a <a>Directory</a>. /// </para> /// </summary> public BatchDeleteObject DeleteObject { get { return this._deleteObject; } set { this._deleteObject = value; } } // Check to see if DeleteObject property is set internal bool IsSetDeleteObject() { return this._deleteObject != null; } /// <summary> /// Gets and sets the property DetachFromIndex. /// <para> /// Detaches the specified object from the specified index. /// </para> /// </summary> public BatchDetachFromIndex DetachFromIndex { get { return this._detachFromIndex; } set { this._detachFromIndex = value; } } // Check to see if DetachFromIndex property is set internal bool IsSetDetachFromIndex() { return this._detachFromIndex != null; } /// <summary> /// Gets and sets the property DetachObject. /// <para> /// Detaches an object from a <a>Directory</a>. /// </para> /// </summary> public BatchDetachObject DetachObject { get { return this._detachObject; } set { this._detachObject = value; } } // Check to see if DetachObject property is set internal bool IsSetDetachObject() { return this._detachObject != null; } /// <summary> /// Gets and sets the property DetachPolicy. /// <para> /// Detaches a policy from a <a>Directory</a>. /// </para> /// </summary> public BatchDetachPolicy DetachPolicy { get { return this._detachPolicy; } set { this._detachPolicy = value; } } // Check to see if DetachPolicy property is set internal bool IsSetDetachPolicy() { return this._detachPolicy != null; } /// <summary> /// Gets and sets the property DetachTypedLink. /// <para> /// Detaches a typed link from a specified source and target object. For more information, /// see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed /// Links</a>. /// </para> /// </summary> public BatchDetachTypedLink DetachTypedLink { get { return this._detachTypedLink; } set { this._detachTypedLink = value; } } // Check to see if DetachTypedLink property is set internal bool IsSetDetachTypedLink() { return this._detachTypedLink != null; } /// <summary> /// Gets and sets the property RemoveFacetFromObject. /// <para> /// A batch operation that removes a facet from an object. /// </para> /// </summary> public BatchRemoveFacetFromObject RemoveFacetFromObject { get { return this._removeFacetFromObject; } set { this._removeFacetFromObject = value; } } // Check to see if RemoveFacetFromObject property is set internal bool IsSetRemoveFacetFromObject() { return this._removeFacetFromObject != null; } /// <summary> /// Gets and sets the property UpdateLinkAttributes. /// <para> /// Updates a given object's attributes. /// </para> /// </summary> public BatchUpdateLinkAttributes UpdateLinkAttributes { get { return this._updateLinkAttributes; } set { this._updateLinkAttributes = value; } } // Check to see if UpdateLinkAttributes property is set internal bool IsSetUpdateLinkAttributes() { return this._updateLinkAttributes != null; } /// <summary> /// Gets and sets the property UpdateObjectAttributes. /// <para> /// Updates a given object's attributes. /// </para> /// </summary> public BatchUpdateObjectAttributes UpdateObjectAttributes { get { return this._updateObjectAttributes; } set { this._updateObjectAttributes = value; } } // Check to see if UpdateObjectAttributes property is set internal bool IsSetUpdateObjectAttributes() { return this._updateObjectAttributes != null; } } }
329
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Represents the output of a <code>BatchWrite</code> response operation. /// </summary> public partial class BatchWriteOperationResponse { private BatchAddFacetToObjectResponse _addFacetToObject; private BatchAttachObjectResponse _attachObject; private BatchAttachPolicyResponse _attachPolicy; private BatchAttachToIndexResponse _attachToIndex; private BatchAttachTypedLinkResponse _attachTypedLink; private BatchCreateIndexResponse _createIndex; private BatchCreateObjectResponse _createObject; private BatchDeleteObjectResponse _deleteObject; private BatchDetachFromIndexResponse _detachFromIndex; private BatchDetachObjectResponse _detachObject; private BatchDetachPolicyResponse _detachPolicy; private BatchDetachTypedLinkResponse _detachTypedLink; private BatchRemoveFacetFromObjectResponse _removeFacetFromObject; private BatchUpdateLinkAttributesResponse _updateLinkAttributes; private BatchUpdateObjectAttributesResponse _updateObjectAttributes; /// <summary> /// Gets and sets the property AddFacetToObject. /// <para> /// The result of an add facet to object batch operation. /// </para> /// </summary> public BatchAddFacetToObjectResponse AddFacetToObject { get { return this._addFacetToObject; } set { this._addFacetToObject = value; } } // Check to see if AddFacetToObject property is set internal bool IsSetAddFacetToObject() { return this._addFacetToObject != null; } /// <summary> /// Gets and sets the property AttachObject. /// <para> /// Attaches an object to a <a>Directory</a>. /// </para> /// </summary> public BatchAttachObjectResponse AttachObject { get { return this._attachObject; } set { this._attachObject = value; } } // Check to see if AttachObject property is set internal bool IsSetAttachObject() { return this._attachObject != null; } /// <summary> /// Gets and sets the property AttachPolicy. /// <para> /// Attaches a policy object to a regular object. An object can have a limited number /// of attached policies. /// </para> /// </summary> public BatchAttachPolicyResponse AttachPolicy { get { return this._attachPolicy; } set { this._attachPolicy = value; } } // Check to see if AttachPolicy property is set internal bool IsSetAttachPolicy() { return this._attachPolicy != null; } /// <summary> /// Gets and sets the property AttachToIndex. /// <para> /// Attaches the specified object to the specified index. /// </para> /// </summary> public BatchAttachToIndexResponse AttachToIndex { get { return this._attachToIndex; } set { this._attachToIndex = value; } } // Check to see if AttachToIndex property is set internal bool IsSetAttachToIndex() { return this._attachToIndex != null; } /// <summary> /// Gets and sets the property AttachTypedLink. /// <para> /// Attaches a typed link to a specified source and target object. For more information, /// see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed /// Links</a>. /// </para> /// </summary> public BatchAttachTypedLinkResponse AttachTypedLink { get { return this._attachTypedLink; } set { this._attachTypedLink = value; } } // Check to see if AttachTypedLink property is set internal bool IsSetAttachTypedLink() { return this._attachTypedLink != null; } /// <summary> /// Gets and sets the property CreateIndex. /// <para> /// Creates an index object. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/indexing_search.htm">Indexing /// and search</a> for more information. /// </para> /// </summary> public BatchCreateIndexResponse CreateIndex { get { return this._createIndex; } set { this._createIndex = value; } } // Check to see if CreateIndex property is set internal bool IsSetCreateIndex() { return this._createIndex != null; } /// <summary> /// Gets and sets the property CreateObject. /// <para> /// Creates an object in a <a>Directory</a>. /// </para> /// </summary> public BatchCreateObjectResponse CreateObject { get { return this._createObject; } set { this._createObject = value; } } // Check to see if CreateObject property is set internal bool IsSetCreateObject() { return this._createObject != null; } /// <summary> /// Gets and sets the property DeleteObject. /// <para> /// Deletes an object in a <a>Directory</a>. /// </para> /// </summary> public BatchDeleteObjectResponse DeleteObject { get { return this._deleteObject; } set { this._deleteObject = value; } } // Check to see if DeleteObject property is set internal bool IsSetDeleteObject() { return this._deleteObject != null; } /// <summary> /// Gets and sets the property DetachFromIndex. /// <para> /// Detaches the specified object from the specified index. /// </para> /// </summary> public BatchDetachFromIndexResponse DetachFromIndex { get { return this._detachFromIndex; } set { this._detachFromIndex = value; } } // Check to see if DetachFromIndex property is set internal bool IsSetDetachFromIndex() { return this._detachFromIndex != null; } /// <summary> /// Gets and sets the property DetachObject. /// <para> /// Detaches an object from a <a>Directory</a>. /// </para> /// </summary> public BatchDetachObjectResponse DetachObject { get { return this._detachObject; } set { this._detachObject = value; } } // Check to see if DetachObject property is set internal bool IsSetDetachObject() { return this._detachObject != null; } /// <summary> /// Gets and sets the property DetachPolicy. /// <para> /// Detaches a policy from a <a>Directory</a>. /// </para> /// </summary> public BatchDetachPolicyResponse DetachPolicy { get { return this._detachPolicy; } set { this._detachPolicy = value; } } // Check to see if DetachPolicy property is set internal bool IsSetDetachPolicy() { return this._detachPolicy != null; } /// <summary> /// Gets and sets the property DetachTypedLink. /// <para> /// Detaches a typed link from a specified source and target object. For more information, /// see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed /// Links</a>. /// </para> /// </summary> public BatchDetachTypedLinkResponse DetachTypedLink { get { return this._detachTypedLink; } set { this._detachTypedLink = value; } } // Check to see if DetachTypedLink property is set internal bool IsSetDetachTypedLink() { return this._detachTypedLink != null; } /// <summary> /// Gets and sets the property RemoveFacetFromObject. /// <para> /// The result of a batch remove facet from object operation. /// </para> /// </summary> public BatchRemoveFacetFromObjectResponse RemoveFacetFromObject { get { return this._removeFacetFromObject; } set { this._removeFacetFromObject = value; } } // Check to see if RemoveFacetFromObject property is set internal bool IsSetRemoveFacetFromObject() { return this._removeFacetFromObject != null; } /// <summary> /// Gets and sets the property UpdateLinkAttributes. /// <para> /// Represents the output of a <code>BatchWrite</code> response operation. /// </para> /// </summary> public BatchUpdateLinkAttributesResponse UpdateLinkAttributes { get { return this._updateLinkAttributes; } set { this._updateLinkAttributes = value; } } // Check to see if UpdateLinkAttributes property is set internal bool IsSetUpdateLinkAttributes() { return this._updateLinkAttributes != null; } /// <summary> /// Gets and sets the property UpdateObjectAttributes. /// <para> /// Updates a given object’s attributes. /// </para> /// </summary> public BatchUpdateObjectAttributesResponse UpdateObjectAttributes { get { return this._updateObjectAttributes; } set { this._updateObjectAttributes = value; } } // Check to see if UpdateObjectAttributes property is set internal bool IsSetUpdateObjectAttributes() { return this._updateObjectAttributes != null; } } }
329
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the BatchWrite operation. /// Performs all the write operations in a batch. Either all the operations succeed or /// none. /// </summary> public partial class BatchWriteRequest : AmazonCloudDirectoryRequest { private string _directoryArn; private List<BatchWriteOperation> _operations = new List<BatchWriteOperation>(); /// <summary> /// Gets and sets the property DirectoryArn. /// <para> /// The Amazon Resource Name (ARN) that is associated with the <a>Directory</a>. For more /// information, see <a>arns</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryArn { get { return this._directoryArn; } set { this._directoryArn = value; } } // Check to see if DirectoryArn property is set internal bool IsSetDirectoryArn() { return this._directoryArn != null; } /// <summary> /// Gets and sets the property Operations. /// <para> /// A list of operations that are part of the batch. /// </para> /// </summary> [AWSProperty(Required=true)] public List<BatchWriteOperation> Operations { get { return this._operations; } set { this._operations = value; } } // Check to see if Operations property is set internal bool IsSetOperations() { return this._operations != null && this._operations.Count > 0; } } }
81
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the BatchWrite operation. /// </summary> public partial class BatchWriteResponse : AmazonWebServiceResponse { private List<BatchWriteOperationResponse> _responses = new List<BatchWriteOperationResponse>(); /// <summary> /// Gets and sets the property Responses. /// <para> /// A list of all the responses for each batch write. /// </para> /// </summary> public List<BatchWriteOperationResponse> Responses { get { return this._responses; } set { this._responses = value; } } // Check to see if Responses property is set internal bool IsSetResponses() { return this._responses != null && this._responses.Count > 0; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Cannot list the parents of a <a>Directory</a> root. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class CannotListParentOfRootException : AmazonCloudDirectoryException { /// <summary> /// Constructs a new CannotListParentOfRootException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public CannotListParentOfRootException(string message) : base(message) {} /// <summary> /// Construct instance of CannotListParentOfRootException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public CannotListParentOfRootException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of CannotListParentOfRootException /// </summary> /// <param name="innerException"></param> public CannotListParentOfRootException(Exception innerException) : base(innerException) {} /// <summary> /// Construct instance of CannotListParentOfRootException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> /// <param name="errorType"></param> /// <param name="errorCode"></param> /// <param name="requestId"></param> /// <param name="statusCode"></param> public CannotListParentOfRootException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <summary> /// Construct instance of CannotListParentOfRootException /// </summary> /// <param name="message"></param> /// <param name="errorType"></param> /// <param name="errorCode"></param> /// <param name="requestId"></param> /// <param name="statusCode"></param> public CannotListParentOfRootException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <summary> /// Constructs a new instance of the CannotListParentOfRootException class with serialized data. /// </summary> /// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param> /// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param> /// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception> /// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception> protected CannotListParentOfRootException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </summary> /// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param> /// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param> /// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
124
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the CreateDirectory operation. /// Creates a <a>Directory</a> by copying the published schema into the directory. A directory /// cannot be created without a schema. /// /// /// <para> /// You can also quickly create a directory using a managed schema, called the <code>QuickStartSchema</code>. /// For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_managed.html">Managed /// Schema</a> in the <i>Amazon Cloud Directory Developer Guide</i>. /// </para> /// </summary> public partial class CreateDirectoryRequest : AmazonCloudDirectoryRequest { private string _name; private string _schemaArn; /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the <a>Directory</a>. Should be unique per account, per region. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=64)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property SchemaArn. /// <para> /// The Amazon Resource Name (ARN) of the published schema that will be copied into the /// data <a>Directory</a>. For more information, see <a>arns</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public string SchemaArn { get { return this._schemaArn; } set { this._schemaArn = value; } } // Check to see if SchemaArn property is set internal bool IsSetSchemaArn() { return this._schemaArn != null; } } }
88
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the CreateDirectory operation. /// </summary> public partial class CreateDirectoryResponse : AmazonWebServiceResponse { private string _appliedSchemaArn; private string _directoryArn; private string _name; private string _objectIdentifier; /// <summary> /// Gets and sets the property AppliedSchemaArn. /// <para> /// The ARN of the published schema in the <a>Directory</a>. 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 <a>arns</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public string AppliedSchemaArn { get { return this._appliedSchemaArn; } set { this._appliedSchemaArn = value; } } // Check to see if AppliedSchemaArn property is set internal bool IsSetAppliedSchemaArn() { return this._appliedSchemaArn != null; } /// <summary> /// Gets and sets the property DirectoryArn. /// <para> /// The ARN that is associated with the <a>Directory</a>. For more information, see <a>arns</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryArn { get { return this._directoryArn; } set { this._directoryArn = value; } } // Check to see if DirectoryArn property is set internal bool IsSetDirectoryArn() { return this._directoryArn != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the <a>Directory</a>. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=64)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property ObjectIdentifier. /// <para> /// The root object node of the created directory. /// </para> /// </summary> [AWSProperty(Required=true)] public string ObjectIdentifier { get { return this._objectIdentifier; } set { this._objectIdentifier = value; } } // Check to see if ObjectIdentifier property is set internal bool IsSetObjectIdentifier() { return this._objectIdentifier != null; } } }
120
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the CreateFacet operation. /// Creates a new <a>Facet</a> in a schema. Facet creation is allowed only in development /// or applied schemas. /// </summary> public partial class CreateFacetRequest : AmazonCloudDirectoryRequest { private List<FacetAttribute> _attributes = new List<FacetAttribute>(); private FacetStyle _facetStyle; private string _name; private ObjectType _objectType; private string _schemaArn; /// <summary> /// Gets and sets the property Attributes. /// <para> /// The attributes that are associated with the <a>Facet</a>. /// </para> /// </summary> public List<FacetAttribute> Attributes { get { return this._attributes; } set { this._attributes = value; } } // Check to see if Attributes property is set internal bool IsSetAttributes() { return this._attributes != null && this._attributes.Count > 0; } /// <summary> /// Gets and sets the property FacetStyle. /// <para> /// There are two different styles that you can define on any given facet, <code>Static</code> /// and <code>Dynamic</code>. For static facets, all attributes must be defined in the /// schema. For dynamic facets, attributes can be defined during data plane operations. /// </para> /// </summary> public FacetStyle FacetStyle { get { return this._facetStyle; } set { this._facetStyle = value; } } // Check to see if FacetStyle property is set internal bool IsSetFacetStyle() { return this._facetStyle != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the <a>Facet</a>, which is unique for a given schema. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=64)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property ObjectType. /// <para> /// Specifies whether a given object created from this facet is of type node, leaf node, /// policy or index. /// </para> /// <ul> <li> /// <para> /// Node: Can have multiple children but one parent. /// </para> /// </li> </ul> <ul> <li> /// <para> /// Leaf node: Cannot have children but can have multiple parents. /// </para> /// </li> </ul> <ul> <li> /// <para> /// Policy: Allows you to store a policy document and policy type. For more information, /// see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies">Policies</a>. /// </para> /// </li> </ul> <ul> <li> /// <para> /// Index: Can be created with the Index API. /// </para> /// </li> </ul> /// </summary> public ObjectType ObjectType { get { return this._objectType; } set { this._objectType = value; } } // Check to see if ObjectType property is set internal bool IsSetObjectType() { return this._objectType != null; } /// <summary> /// Gets and sets the property SchemaArn. /// <para> /// The schema ARN in which the new <a>Facet</a> will be created. For more information, /// see <a>arns</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public string SchemaArn { get { return this._schemaArn; } set { this._schemaArn = value; } } // Check to see if SchemaArn property is set internal bool IsSetSchemaArn() { return this._schemaArn != null; } } }
159
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the CreateFacet operation. /// </summary> public partial class CreateFacetResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the CreateIndex operation. /// Creates an index object. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/indexing_search.html">Indexing /// and search</a> for more information. /// </summary> public partial class CreateIndexRequest : AmazonCloudDirectoryRequest { private string _directoryArn; private bool? _isUnique; private string _linkName; private List<AttributeKey> _orderedIndexedAttributeList = new List<AttributeKey>(); private ObjectReference _parentReference; /// <summary> /// Gets and sets the property DirectoryArn. /// <para> /// The ARN of the directory where the index should be created. /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryArn { get { return this._directoryArn; } set { this._directoryArn = value; } } // Check to see if DirectoryArn property is set internal bool IsSetDirectoryArn() { return this._directoryArn != null; } /// <summary> /// Gets and sets the property IsUnique. /// <para> /// Indicates whether the attribute that is being indexed has unique values or not. /// </para> /// </summary> [AWSProperty(Required=true)] public bool IsUnique { get { return this._isUnique.GetValueOrDefault(); } set { this._isUnique = value; } } // Check to see if IsUnique property is set internal bool IsSetIsUnique() { return this._isUnique.HasValue; } /// <summary> /// Gets and sets the property LinkName. /// <para> /// The name of the link between the parent object and the index object. /// </para> /// </summary> [AWSProperty(Min=1, Max=64)] public string LinkName { get { return this._linkName; } set { this._linkName = value; } } // Check to see if LinkName property is set internal bool IsSetLinkName() { return this._linkName != null; } /// <summary> /// Gets and sets the property OrderedIndexedAttributeList. /// <para> /// Specifies the attributes that should be indexed on. Currently only a single attribute /// is supported. /// </para> /// </summary> [AWSProperty(Required=true)] public List<AttributeKey> OrderedIndexedAttributeList { get { return this._orderedIndexedAttributeList; } set { this._orderedIndexedAttributeList = value; } } // Check to see if OrderedIndexedAttributeList property is set internal bool IsSetOrderedIndexedAttributeList() { return this._orderedIndexedAttributeList != null && this._orderedIndexedAttributeList.Count > 0; } /// <summary> /// Gets and sets the property ParentReference. /// <para> /// A reference to the parent object that contains the index object. /// </para> /// </summary> public ObjectReference ParentReference { get { return this._parentReference; } set { this._parentReference = value; } } // Check to see if ParentReference property is set internal bool IsSetParentReference() { return this._parentReference != null; } } }
140
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the CreateIndex operation. /// </summary> public partial class CreateIndexResponse : AmazonWebServiceResponse { private string _objectIdentifier; /// <summary> /// Gets and sets the property ObjectIdentifier. /// <para> /// The <code>ObjectIdentifier</code> of the index created by this operation. /// </para> /// </summary> public string ObjectIdentifier { get { return this._objectIdentifier; } set { this._objectIdentifier = value; } } // Check to see if ObjectIdentifier property is set internal bool IsSetObjectIdentifier() { return this._objectIdentifier != null; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the CreateObject operation. /// Creates an object in a <a>Directory</a>. Additionally attaches the object to a parent, /// if a parent reference and <code>LinkName</code> is specified. An object is simply /// a collection of <a>Facet</a> 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. /// </summary> public partial class CreateObjectRequest : AmazonCloudDirectoryRequest { private string _directoryArn; private string _linkName; private List<AttributeKeyAndValue> _objectAttributeList = new List<AttributeKeyAndValue>(); private ObjectReference _parentReference; private List<SchemaFacet> _schemaFacets = new List<SchemaFacet>(); /// <summary> /// Gets and sets the property DirectoryArn. /// <para> /// The Amazon Resource Name (ARN) that is associated with the <a>Directory</a> in which /// the object will be created. For more information, see <a>arns</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryArn { get { return this._directoryArn; } set { this._directoryArn = value; } } // Check to see if DirectoryArn property is set internal bool IsSetDirectoryArn() { return this._directoryArn != null; } /// <summary> /// Gets and sets the property LinkName. /// <para> /// The name of link that is used to attach this object to a parent. /// </para> /// </summary> [AWSProperty(Min=1, Max=64)] public string LinkName { get { return this._linkName; } set { this._linkName = value; } } // Check to see if LinkName property is set internal bool IsSetLinkName() { return this._linkName != null; } /// <summary> /// Gets and sets the property ObjectAttributeList. /// <para> /// The attribute map whose attribute ARN contains the key and attribute value as the /// map value. /// </para> /// </summary> public List<AttributeKeyAndValue> ObjectAttributeList { get { return this._objectAttributeList; } set { this._objectAttributeList = value; } } // Check to see if ObjectAttributeList property is set internal bool IsSetObjectAttributeList() { return this._objectAttributeList != null && this._objectAttributeList.Count > 0; } /// <summary> /// Gets and sets the property ParentReference. /// <para> /// If specified, the parent reference to which this object will be attached. /// </para> /// </summary> public ObjectReference ParentReference { get { return this._parentReference; } set { this._parentReference = value; } } // Check to see if ParentReference property is set internal bool IsSetParentReference() { return this._parentReference != null; } /// <summary> /// Gets and sets the property SchemaFacets. /// <para> /// A list of schema facets to be associated with the object. Do not provide minor version /// components. See <a>SchemaFacet</a> for details. /// </para> /// </summary> [AWSProperty(Required=true)] public List<SchemaFacet> SchemaFacets { get { return this._schemaFacets; } set { this._schemaFacets = value; } } // Check to see if SchemaFacets property is set internal bool IsSetSchemaFacets() { return this._schemaFacets != null && this._schemaFacets.Count > 0; } } }
143
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the CreateObject operation. /// </summary> public partial class CreateObjectResponse : AmazonWebServiceResponse { private string _objectIdentifier; /// <summary> /// Gets and sets the property ObjectIdentifier. /// <para> /// The identifier that is associated with the object. /// </para> /// </summary> public string ObjectIdentifier { get { return this._objectIdentifier; } set { this._objectIdentifier = value; } } // Check to see if ObjectIdentifier property is set internal bool IsSetObjectIdentifier() { return this._objectIdentifier != null; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the CreateSchema operation. /// Creates a new schema in a development state. A schema can exist in three phases: /// /// <ul> <li> /// <para> /// <i>Development:</i> 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. /// </para> /// </li> <li> /// <para> /// <i>Published:</i> Published schemas are immutable and have a version associated with /// them. /// </para> /// </li> <li> /// <para> /// <i>Applied:</i> 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. /// </para> /// </li> </ul> /// </summary> public partial class CreateSchemaRequest : AmazonCloudDirectoryRequest { private string _name; /// <summary> /// Gets and sets the property Name. /// <para> /// The name that is associated with the schema. This is unique to each account and in /// each region. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=32)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } } }
78
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the CreateSchema operation. /// </summary> public partial class CreateSchemaResponse : AmazonWebServiceResponse { private string _schemaArn; /// <summary> /// Gets and sets the property SchemaArn. /// <para> /// The Amazon Resource Name (ARN) that is associated with the schema. For more information, /// see <a>arns</a>. /// </para> /// </summary> public string SchemaArn { get { return this._schemaArn; } set { this._schemaArn = value; } } // Check to see if SchemaArn property is set internal bool IsSetSchemaArn() { return this._schemaArn != null; } } }
58
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the CreateTypedLinkFacet operation. /// Creates a <a>TypedLinkFacet</a>. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed /// Links</a>. /// </summary> public partial class CreateTypedLinkFacetRequest : AmazonCloudDirectoryRequest { private TypedLinkFacet _facet; private string _schemaArn; /// <summary> /// Gets and sets the property Facet. /// <para> /// <a>Facet</a> structure that is associated with the typed link facet. /// </para> /// </summary> [AWSProperty(Required=true)] public TypedLinkFacet Facet { get { return this._facet; } set { this._facet = value; } } // Check to see if Facet property is set internal bool IsSetFacet() { return this._facet != null; } /// <summary> /// Gets and sets the property SchemaArn. /// <para> /// The Amazon Resource Name (ARN) that is associated with the schema. For more information, /// see <a>arns</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public string SchemaArn { get { return this._schemaArn; } set { this._schemaArn = value; } } // Check to see if SchemaArn property is set internal bool IsSetSchemaArn() { return this._schemaArn != null; } } }
81
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the CreateTypedLinkFacet operation. /// </summary> public partial class CreateTypedLinkFacetResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// Container for the parameters to the DeleteDirectory operation. /// Deletes a directory. Only disabled directories can be deleted. A deleted directory /// cannot be undone. Exercise extreme caution when deleting directories. /// </summary> public partial class DeleteDirectoryRequest : AmazonCloudDirectoryRequest { private string _directoryArn; /// <summary> /// Gets and sets the property DirectoryArn. /// <para> /// The ARN of the directory to delete. /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryArn { get { return this._directoryArn; } set { this._directoryArn = value; } } // Check to see if DirectoryArn property is set internal bool IsSetDirectoryArn() { return this._directoryArn != null; } } }
60
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the clouddirectory-2017-01-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudDirectory.Model { /// <summary> /// This is the response object from the DeleteDirectory operation. /// </summary> public partial class DeleteDirectoryResponse : AmazonWebServiceResponse { private string _directoryArn; /// <summary> /// Gets and sets the property DirectoryArn. /// <para> /// The ARN of the deleted directory. /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryArn { get { return this._directoryArn; } set { this._directoryArn = value; } } // Check to see if DirectoryArn property is set internal bool IsSetDirectoryArn() { return this._directoryArn != null; } } }
58