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 chime-sdk-voice-2022-08-03.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using System.Threading;
using System.Threading.Tasks;
using Amazon.Runtime;
namespace Amazon.ChimeSDKVoice.Model
{
/// <summary>
/// Base class for ListVoiceProfileDomains paginators.
/// </summary>
internal sealed partial class ListVoiceProfileDomainsPaginator : IPaginator<ListVoiceProfileDomainsResponse>, IListVoiceProfileDomainsPaginator
{
private readonly IAmazonChimeSDKVoice _client;
private readonly ListVoiceProfileDomainsRequest _request;
private int _isPaginatorInUse = 0;
/// <summary>
/// Enumerable containing all full responses for the operation
/// </summary>
public IPaginatedEnumerable<ListVoiceProfileDomainsResponse> Responses => new PaginatedResponse<ListVoiceProfileDomainsResponse>(this);
internal ListVoiceProfileDomainsPaginator(IAmazonChimeSDKVoice client, ListVoiceProfileDomainsRequest request)
{
this._client = client;
this._request = request;
}
#if BCL
IEnumerable<ListVoiceProfileDomainsResponse> IPaginator<ListVoiceProfileDomainsResponse>.Paginate()
{
if (Interlocked.Exchange(ref _isPaginatorInUse, 1) != 0)
{
throw new System.InvalidOperationException("Paginator has already been consumed and cannot be reused. Please create a new instance.");
}
PaginatorUtils.SetUserAgentAdditionOnRequest(_request);
var nextToken = _request.NextToken;
ListVoiceProfileDomainsResponse response;
do
{
_request.NextToken = nextToken;
response = _client.ListVoiceProfileDomains(_request);
nextToken = response.NextToken;
yield return response;
}
while (!string.IsNullOrEmpty(nextToken));
}
#endif
#if AWS_ASYNC_ENUMERABLES_API
async IAsyncEnumerable<ListVoiceProfileDomainsResponse> IPaginator<ListVoiceProfileDomainsResponse>.PaginateAsync(CancellationToken cancellationToken = default)
{
if (Interlocked.Exchange(ref _isPaginatorInUse, 1) != 0)
{
throw new System.InvalidOperationException("Paginator has already been consumed and cannot be reused. Please create a new instance.");
}
PaginatorUtils.SetUserAgentAdditionOnRequest(_request);
var nextToken = _request.NextToken;
ListVoiceProfileDomainsResponse response;
do
{
_request.NextToken = nextToken;
response = await _client.ListVoiceProfileDomainsAsync(_request, cancellationToken).ConfigureAwait(false);
nextToken = response.NextToken;
cancellationToken.ThrowIfCancellationRequested();
yield return response;
}
while (!string.IsNullOrEmpty(nextToken));
}
#endif
}
}
| 91 |
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 chime-sdk-voice-2022-08-03.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using System.Threading;
using System.Threading.Tasks;
using Amazon.Runtime;
namespace Amazon.ChimeSDKVoice.Model
{
/// <summary>
/// Base class for ListVoiceProfiles paginators.
/// </summary>
internal sealed partial class ListVoiceProfilesPaginator : IPaginator<ListVoiceProfilesResponse>, IListVoiceProfilesPaginator
{
private readonly IAmazonChimeSDKVoice _client;
private readonly ListVoiceProfilesRequest _request;
private int _isPaginatorInUse = 0;
/// <summary>
/// Enumerable containing all full responses for the operation
/// </summary>
public IPaginatedEnumerable<ListVoiceProfilesResponse> Responses => new PaginatedResponse<ListVoiceProfilesResponse>(this);
internal ListVoiceProfilesPaginator(IAmazonChimeSDKVoice client, ListVoiceProfilesRequest request)
{
this._client = client;
this._request = request;
}
#if BCL
IEnumerable<ListVoiceProfilesResponse> IPaginator<ListVoiceProfilesResponse>.Paginate()
{
if (Interlocked.Exchange(ref _isPaginatorInUse, 1) != 0)
{
throw new System.InvalidOperationException("Paginator has already been consumed and cannot be reused. Please create a new instance.");
}
PaginatorUtils.SetUserAgentAdditionOnRequest(_request);
var nextToken = _request.NextToken;
ListVoiceProfilesResponse response;
do
{
_request.NextToken = nextToken;
response = _client.ListVoiceProfiles(_request);
nextToken = response.NextToken;
yield return response;
}
while (!string.IsNullOrEmpty(nextToken));
}
#endif
#if AWS_ASYNC_ENUMERABLES_API
async IAsyncEnumerable<ListVoiceProfilesResponse> IPaginator<ListVoiceProfilesResponse>.PaginateAsync(CancellationToken cancellationToken = default)
{
if (Interlocked.Exchange(ref _isPaginatorInUse, 1) != 0)
{
throw new System.InvalidOperationException("Paginator has already been consumed and cannot be reused. Please create a new instance.");
}
PaginatorUtils.SetUserAgentAdditionOnRequest(_request);
var nextToken = _request.NextToken;
ListVoiceProfilesResponse response;
do
{
_request.NextToken = nextToken;
response = await _client.ListVoiceProfilesAsync(_request, cancellationToken).ConfigureAwait(false);
nextToken = response.NextToken;
cancellationToken.ThrowIfCancellationRequested();
yield return response;
}
while (!string.IsNullOrEmpty(nextToken));
}
#endif
}
}
| 91 |
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 chime-sdk-voice-2022-08-03.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using System.Threading;
using System.Threading.Tasks;
using Amazon.Runtime;
namespace Amazon.ChimeSDKVoice.Model
{
/// <summary>
/// Base class for SearchAvailablePhoneNumbers paginators.
/// </summary>
internal sealed partial class SearchAvailablePhoneNumbersPaginator : IPaginator<SearchAvailablePhoneNumbersResponse>, ISearchAvailablePhoneNumbersPaginator
{
private readonly IAmazonChimeSDKVoice _client;
private readonly SearchAvailablePhoneNumbersRequest _request;
private int _isPaginatorInUse = 0;
/// <summary>
/// Enumerable containing all full responses for the operation
/// </summary>
public IPaginatedEnumerable<SearchAvailablePhoneNumbersResponse> Responses => new PaginatedResponse<SearchAvailablePhoneNumbersResponse>(this);
internal SearchAvailablePhoneNumbersPaginator(IAmazonChimeSDKVoice client, SearchAvailablePhoneNumbersRequest request)
{
this._client = client;
this._request = request;
}
#if BCL
IEnumerable<SearchAvailablePhoneNumbersResponse> IPaginator<SearchAvailablePhoneNumbersResponse>.Paginate()
{
if (Interlocked.Exchange(ref _isPaginatorInUse, 1) != 0)
{
throw new System.InvalidOperationException("Paginator has already been consumed and cannot be reused. Please create a new instance.");
}
PaginatorUtils.SetUserAgentAdditionOnRequest(_request);
var nextToken = _request.NextToken;
SearchAvailablePhoneNumbersResponse response;
do
{
_request.NextToken = nextToken;
response = _client.SearchAvailablePhoneNumbers(_request);
nextToken = response.NextToken;
yield return response;
}
while (!string.IsNullOrEmpty(nextToken));
}
#endif
#if AWS_ASYNC_ENUMERABLES_API
async IAsyncEnumerable<SearchAvailablePhoneNumbersResponse> IPaginator<SearchAvailablePhoneNumbersResponse>.PaginateAsync(CancellationToken cancellationToken = default)
{
if (Interlocked.Exchange(ref _isPaginatorInUse, 1) != 0)
{
throw new System.InvalidOperationException("Paginator has already been consumed and cannot be reused. Please create a new instance.");
}
PaginatorUtils.SetUserAgentAdditionOnRequest(_request);
var nextToken = _request.NextToken;
SearchAvailablePhoneNumbersResponse response;
do
{
_request.NextToken = nextToken;
response = await _client.SearchAvailablePhoneNumbersAsync(_request, cancellationToken).ConfigureAwait(false);
nextToken = response.NextToken;
cancellationToken.ThrowIfCancellationRequested();
yield return response;
}
while (!string.IsNullOrEmpty(nextToken));
}
#endif
}
}
| 91 |
aws-sdk-net
|
aws
|
C#
|
using System;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("AWSSDK.ChimeSDKVoice")]
#if BCL35
[assembly: AssemblyDescription("The Amazon Web Services SDK for .NET (3.5) - Amazon Chime SDK Voice. Amazon Chime Voice Connector, Voice Connector Group and PSTN Audio Service APIs are now available in the Amazon Chime SDK Voice namespace. See https://docs.aws.amazon.com/chime-sdk/latest/dg/sdk-available-regions.html for more details.")]
#elif BCL45
[assembly: AssemblyDescription("The Amazon Web Services SDK for .NET (4.5) - Amazon Chime SDK Voice. Amazon Chime Voice Connector, Voice Connector Group and PSTN Audio Service APIs are now available in the Amazon Chime SDK Voice namespace. See https://docs.aws.amazon.com/chime-sdk/latest/dg/sdk-available-regions.html for more details.")]
#elif NETSTANDARD20
[assembly: AssemblyDescription("The Amazon Web Services SDK for .NET (NetStandard 2.0) - Amazon Chime SDK Voice. Amazon Chime Voice Connector, Voice Connector Group and PSTN Audio Service APIs are now available in the Amazon Chime SDK Voice namespace. See https://docs.aws.amazon.com/chime-sdk/latest/dg/sdk-available-regions.html for more details.")]
#elif NETCOREAPP3_1
[assembly: AssemblyDescription("The Amazon Web Services SDK for .NET (.NET Core 3.1) - Amazon Chime SDK Voice. Amazon Chime Voice Connector, Voice Connector Group and PSTN Audio Service APIs are now available in the Amazon Chime SDK Voice namespace. See https://docs.aws.amazon.com/chime-sdk/latest/dg/sdk-available-regions.html for more details.")]
#else
#error Unknown platform constant - unable to set correct AssemblyDescription
#endif
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyProduct("Amazon Web Services SDK for .NET")]
[assembly: AssemblyCompany("Amazon.com, Inc")]
[assembly: AssemblyCopyright("Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.3")]
[assembly: AssemblyFileVersion("3.7.105.10")]
[assembly: System.CLSCompliant(true)]
#if BCL
[assembly: System.Security.AllowPartiallyTrustedCallers]
#endif
| 51 |
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 cleanrooms-2022-02-17.normal.json service model.
*/
using System;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
using Amazon.Util.Internal;
using Amazon.CleanRooms.Internal;
namespace Amazon.CleanRooms
{
/// <summary>
/// Configuration for accessing Amazon CleanRooms service
/// </summary>
[AWSSignerType("v4")]
public partial class AmazonCleanRoomsConfig : ClientConfig
{
private static readonly string UserAgentString =
InternalSDKUtils.BuildUserAgentString("3.7.102.0");
private string _userAgent = UserAgentString;
/// <summary>
/// Default constructor
/// </summary>
public AmazonCleanRoomsConfig()
: base(new Amazon.Runtime.Internal.DefaultConfigurationProvider(AmazonCleanRoomsDefaultConfiguration.GetAllConfigurations()))
{
this.AuthenticationServiceName = "cleanrooms";
this.EndpointProvider = new AmazonCleanRoomsEndpointProvider();
}
/// <summary>
/// The constant used to lookup in the region hash the endpoint.
/// </summary>
public override string RegionEndpointServiceName
{
get
{
return "cleanrooms";
}
}
/// <summary>
/// Gets the ServiceVersion property.
/// </summary>
public override string ServiceVersion
{
get
{
return "2022-02-17";
}
}
/// <summary>
/// Gets the value of UserAgent property.
/// </summary>
public override string UserAgent
{
get
{
return _userAgent;
}
}
}
}
| 83 |
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 cleanrooms-2022-02-17.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using Amazon.Runtime;
namespace Amazon.CleanRooms
{
/// <summary>
/// Configuration for accessing Amazon CleanRooms service
/// </summary>
public static class AmazonCleanRoomsDefaultConfiguration
{
/// <summary>
/// Collection of all <see cref="DefaultConfiguration"/>s supported by
/// CleanRooms
/// </summary>
public static ReadOnlyCollection<IDefaultConfiguration> GetAllConfigurations()
{
return new ReadOnlyCollection<IDefaultConfiguration>(new List<IDefaultConfiguration>
{
Standard,
InRegion,
CrossRegion,
Mobile,
Auto,
Legacy
});
}
/// <summary>
/// <p>The STANDARD mode provides the latest recommended default values that should be safe to run in most scenarios</p><p>Note that the default values vended from this mode might change as best practices may evolve. As a result, it is encouraged to perform tests when upgrading the SDK</p>
/// </summary>
public static IDefaultConfiguration Standard {get;} = new DefaultConfiguration
{
Name = DefaultConfigurationMode.Standard,
RetryMode = RequestRetryMode.Standard,
StsRegionalEndpoints = StsRegionalEndpointsValue.Regional,
S3UsEast1RegionalEndpoint = S3UsEast1RegionalEndpointValue.Regional,
// 0:00:03.1
ConnectTimeout = TimeSpan.FromMilliseconds(3100L),
// 0:00:03.1
TlsNegotiationTimeout = TimeSpan.FromMilliseconds(3100L),
TimeToFirstByteTimeout = null,
HttpRequestTimeout = null
};
/// <summary>
/// <p>The IN_REGION mode builds on the standard mode and includes optimization tailored for applications which call AWS services from within the same AWS region</p><p>Note that the default values vended from this mode might change as best practices may evolve. As a result, it is encouraged to perform tests when upgrading the SDK</p>
/// </summary>
public static IDefaultConfiguration InRegion {get;} = new DefaultConfiguration
{
Name = DefaultConfigurationMode.InRegion,
RetryMode = RequestRetryMode.Standard,
StsRegionalEndpoints = StsRegionalEndpointsValue.Regional,
S3UsEast1RegionalEndpoint = S3UsEast1RegionalEndpointValue.Regional,
// 0:00:01.1
ConnectTimeout = TimeSpan.FromMilliseconds(1100L),
// 0:00:01.1
TlsNegotiationTimeout = TimeSpan.FromMilliseconds(1100L),
TimeToFirstByteTimeout = null,
HttpRequestTimeout = null
};
/// <summary>
/// <p>The CROSS_REGION mode builds on the standard mode and includes optimization tailored for applications which call AWS services in a different region</p><p>Note that the default values vended from this mode might change as best practices may evolve. As a result, it is encouraged to perform tests when upgrading the SDK</p>
/// </summary>
public static IDefaultConfiguration CrossRegion {get;} = new DefaultConfiguration
{
Name = DefaultConfigurationMode.CrossRegion,
RetryMode = RequestRetryMode.Standard,
StsRegionalEndpoints = StsRegionalEndpointsValue.Regional,
S3UsEast1RegionalEndpoint = S3UsEast1RegionalEndpointValue.Regional,
// 0:00:03.1
ConnectTimeout = TimeSpan.FromMilliseconds(3100L),
// 0:00:03.1
TlsNegotiationTimeout = TimeSpan.FromMilliseconds(3100L),
TimeToFirstByteTimeout = null,
HttpRequestTimeout = null
};
/// <summary>
/// <p>The MOBILE mode builds on the standard mode and includes optimization tailored for mobile applications</p><p>Note that the default values vended from this mode might change as best practices may evolve. As a result, it is encouraged to perform tests when upgrading the SDK</p>
/// </summary>
public static IDefaultConfiguration Mobile {get;} = new DefaultConfiguration
{
Name = DefaultConfigurationMode.Mobile,
RetryMode = RequestRetryMode.Standard,
StsRegionalEndpoints = StsRegionalEndpointsValue.Regional,
S3UsEast1RegionalEndpoint = S3UsEast1RegionalEndpointValue.Regional,
// 0:00:30
ConnectTimeout = TimeSpan.FromMilliseconds(30000L),
// 0:00:30
TlsNegotiationTimeout = TimeSpan.FromMilliseconds(30000L),
TimeToFirstByteTimeout = null,
HttpRequestTimeout = null
};
/// <summary>
/// <p>The AUTO mode is an experimental mode that builds on the standard mode. The SDK will attempt to discover the execution environment to determine the appropriate settings automatically.</p><p>Note that the auto detection is heuristics-based and does not guarantee 100% accuracy. STANDARD mode will be used if the execution environment cannot be determined. The auto detection might query <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html">EC2 Instance Metadata service</a>, which might introduce latency. Therefore we recommend choosing an explicit defaults_mode instead if startup latency is critical to your application</p>
/// </summary>
public static IDefaultConfiguration Auto {get;} = new DefaultConfiguration
{
Name = DefaultConfigurationMode.Auto,
RetryMode = RequestRetryMode.Standard,
StsRegionalEndpoints = StsRegionalEndpointsValue.Regional,
S3UsEast1RegionalEndpoint = S3UsEast1RegionalEndpointValue.Regional,
// 0:00:01.1
ConnectTimeout = TimeSpan.FromMilliseconds(1100L),
// 0:00:01.1
TlsNegotiationTimeout = TimeSpan.FromMilliseconds(1100L),
TimeToFirstByteTimeout = null,
HttpRequestTimeout = null
};
/// <summary>
/// <p>The LEGACY mode provides default settings that vary per SDK and were used prior to establishment of defaults_mode</p>
/// </summary>
public static IDefaultConfiguration Legacy {get;} = new DefaultConfiguration
{
Name = DefaultConfigurationMode.Legacy,
RetryMode = RequestRetryMode.Legacy,
StsRegionalEndpoints = StsRegionalEndpointsValue.Legacy,
S3UsEast1RegionalEndpoint = S3UsEast1RegionalEndpointValue.Legacy,
ConnectTimeout = null,
TlsNegotiationTimeout = null,
TimeToFirstByteTimeout = null,
HttpRequestTimeout = null
};
}
}
| 146 |
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 cleanrooms-2022-02-17.normal.json service model.
*/
using Amazon.Runtime;
using Amazon.Runtime.Endpoints;
namespace Amazon.CleanRooms.Endpoints
{
/// <summary>
/// Contains parameters used for resolving CleanRooms endpoints
/// Parameters can be sourced from client config and service operations
/// Used by internal CleanRoomsEndpointProvider and CleanRoomsEndpointResolver
/// Can be used by custom EndpointProvider, see ClientConfig.EndpointProvider
/// </summary>
public class CleanRoomsEndpointParameters : EndpointParameters
{
/// <summary>
/// CleanRoomsEndpointParameters constructor
/// </summary>
public CleanRoomsEndpointParameters()
{
UseDualStack = false;
UseFIPS = false;
}
/// <summary>
/// Region parameter
/// </summary>
public string Region
{
get { return (string)this["Region"]; }
set { this["Region"] = value; }
}
/// <summary>
/// UseDualStack parameter
/// </summary>
public bool? UseDualStack
{
get { return (bool?)this["UseDualStack"]; }
set { this["UseDualStack"] = value; }
}
/// <summary>
/// UseFIPS parameter
/// </summary>
public bool? UseFIPS
{
get { return (bool?)this["UseFIPS"]; }
set { this["UseFIPS"] = value; }
}
/// <summary>
/// Endpoint parameter
/// </summary>
public string Endpoint
{
get { return (string)this["Endpoint"]; }
set { this["Endpoint"] = value; }
}
}
}
| 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 cleanrooms-2022-02-17.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Net;
using System.Text;
using Amazon.Runtime;
namespace Amazon.CleanRooms
{
///<summary>
/// Common exception for the CleanRooms service.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class AmazonCleanRoomsException : AmazonServiceException
{
/// <summary>
/// Construct instance of AmazonCleanRoomsException
/// </summary>
/// <param name="message"></param>
public AmazonCleanRoomsException(string message)
: base(message)
{
}
/// <summary>
/// Construct instance of AmazonCleanRoomsException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public AmazonCleanRoomsException(string message, Exception innerException)
: base(message, innerException)
{
}
/// <summary>
/// Construct instance of AmazonCleanRoomsException
/// </summary>
/// <param name="innerException"></param>
public AmazonCleanRoomsException(Exception innerException)
: base(innerException.Message, innerException)
{
}
/// <summary>
/// Construct instance of AmazonCleanRoomsException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public AmazonCleanRoomsException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, errorType, errorCode, requestId, statusCode)
{
}
/// <summary>
/// Construct instance of AmazonCleanRoomsException
/// </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 AmazonCleanRoomsException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode)
{
}
#if !NETSTANDARD
/// <summary>
/// Constructs a new instance of the AmazonCleanRoomsException 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 AmazonCleanRoomsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
}
#endif
}
}
| 105 |
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 cleanrooms-2022-02-17.normal.json service model.
*/
using System;
using Amazon.Runtime;
namespace Amazon.CleanRooms
{
/// <summary>
/// Constants used for properties of type AccessDeniedExceptionReason.
/// </summary>
public class AccessDeniedExceptionReason : ConstantClass
{
/// <summary>
/// Constant INSUFFICIENT_PERMISSIONS for AccessDeniedExceptionReason
/// </summary>
public static readonly AccessDeniedExceptionReason INSUFFICIENT_PERMISSIONS = new AccessDeniedExceptionReason("INSUFFICIENT_PERMISSIONS");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public AccessDeniedExceptionReason(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static AccessDeniedExceptionReason FindValue(string value)
{
return FindValue<AccessDeniedExceptionReason>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator AccessDeniedExceptionReason(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type AggregateFunctionName.
/// </summary>
public class AggregateFunctionName : ConstantClass
{
/// <summary>
/// Constant AVG for AggregateFunctionName
/// </summary>
public static readonly AggregateFunctionName AVG = new AggregateFunctionName("AVG");
/// <summary>
/// Constant COUNT for AggregateFunctionName
/// </summary>
public static readonly AggregateFunctionName COUNT = new AggregateFunctionName("COUNT");
/// <summary>
/// Constant COUNT_DISTINCT for AggregateFunctionName
/// </summary>
public static readonly AggregateFunctionName COUNT_DISTINCT = new AggregateFunctionName("COUNT_DISTINCT");
/// <summary>
/// Constant SUM for AggregateFunctionName
/// </summary>
public static readonly AggregateFunctionName SUM = new AggregateFunctionName("SUM");
/// <summary>
/// Constant SUM_DISTINCT for AggregateFunctionName
/// </summary>
public static readonly AggregateFunctionName SUM_DISTINCT = new AggregateFunctionName("SUM_DISTINCT");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public AggregateFunctionName(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static AggregateFunctionName FindValue(string value)
{
return FindValue<AggregateFunctionName>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator AggregateFunctionName(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type AggregationType.
/// </summary>
public class AggregationType : ConstantClass
{
/// <summary>
/// Constant COUNT_DISTINCT for AggregationType
/// </summary>
public static readonly AggregationType COUNT_DISTINCT = new AggregationType("COUNT_DISTINCT");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public AggregationType(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static AggregationType FindValue(string value)
{
return FindValue<AggregationType>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator AggregationType(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type AnalysisMethod.
/// </summary>
public class AnalysisMethod : ConstantClass
{
/// <summary>
/// Constant DIRECT_QUERY for AnalysisMethod
/// </summary>
public static readonly AnalysisMethod DIRECT_QUERY = new AnalysisMethod("DIRECT_QUERY");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public AnalysisMethod(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static AnalysisMethod FindValue(string value)
{
return FindValue<AnalysisMethod>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator AnalysisMethod(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type AnalysisRuleType.
/// </summary>
public class AnalysisRuleType : ConstantClass
{
/// <summary>
/// Constant AGGREGATION for AnalysisRuleType
/// </summary>
public static readonly AnalysisRuleType AGGREGATION = new AnalysisRuleType("AGGREGATION");
/// <summary>
/// Constant LIST for AnalysisRuleType
/// </summary>
public static readonly AnalysisRuleType LIST = new AnalysisRuleType("LIST");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public AnalysisRuleType(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static AnalysisRuleType FindValue(string value)
{
return FindValue<AnalysisRuleType>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator AnalysisRuleType(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type CollaborationQueryLogStatus.
/// </summary>
public class CollaborationQueryLogStatus : ConstantClass
{
/// <summary>
/// Constant DISABLED for CollaborationQueryLogStatus
/// </summary>
public static readonly CollaborationQueryLogStatus DISABLED = new CollaborationQueryLogStatus("DISABLED");
/// <summary>
/// Constant ENABLED for CollaborationQueryLogStatus
/// </summary>
public static readonly CollaborationQueryLogStatus ENABLED = new CollaborationQueryLogStatus("ENABLED");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public CollaborationQueryLogStatus(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static CollaborationQueryLogStatus FindValue(string value)
{
return FindValue<CollaborationQueryLogStatus>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator CollaborationQueryLogStatus(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type ConfiguredTableAnalysisRuleType.
/// </summary>
public class ConfiguredTableAnalysisRuleType : ConstantClass
{
/// <summary>
/// Constant AGGREGATION for ConfiguredTableAnalysisRuleType
/// </summary>
public static readonly ConfiguredTableAnalysisRuleType AGGREGATION = new ConfiguredTableAnalysisRuleType("AGGREGATION");
/// <summary>
/// Constant LIST for ConfiguredTableAnalysisRuleType
/// </summary>
public static readonly ConfiguredTableAnalysisRuleType LIST = new ConfiguredTableAnalysisRuleType("LIST");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public ConfiguredTableAnalysisRuleType(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static ConfiguredTableAnalysisRuleType FindValue(string value)
{
return FindValue<ConfiguredTableAnalysisRuleType>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator ConfiguredTableAnalysisRuleType(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type ConflictExceptionReason.
/// </summary>
public class ConflictExceptionReason : ConstantClass
{
/// <summary>
/// Constant ALREADY_EXISTS for ConflictExceptionReason
/// </summary>
public static readonly ConflictExceptionReason ALREADY_EXISTS = new ConflictExceptionReason("ALREADY_EXISTS");
/// <summary>
/// Constant INVALID_STATE for ConflictExceptionReason
/// </summary>
public static readonly ConflictExceptionReason INVALID_STATE = new ConflictExceptionReason("INVALID_STATE");
/// <summary>
/// Constant SUBRESOURCES_EXIST for ConflictExceptionReason
/// </summary>
public static readonly ConflictExceptionReason SUBRESOURCES_EXIST = new ConflictExceptionReason("SUBRESOURCES_EXIST");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public ConflictExceptionReason(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static ConflictExceptionReason FindValue(string value)
{
return FindValue<ConflictExceptionReason>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator ConflictExceptionReason(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type FilterableMemberStatus.
/// </summary>
public class FilterableMemberStatus : ConstantClass
{
/// <summary>
/// Constant ACTIVE for FilterableMemberStatus
/// </summary>
public static readonly FilterableMemberStatus ACTIVE = new FilterableMemberStatus("ACTIVE");
/// <summary>
/// Constant INVITED for FilterableMemberStatus
/// </summary>
public static readonly FilterableMemberStatus INVITED = new FilterableMemberStatus("INVITED");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public FilterableMemberStatus(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static FilterableMemberStatus FindValue(string value)
{
return FindValue<FilterableMemberStatus>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator FilterableMemberStatus(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type JoinOperator.
/// </summary>
public class JoinOperator : ConstantClass
{
/// <summary>
/// Constant AND for JoinOperator
/// </summary>
public static readonly JoinOperator AND = new JoinOperator("AND");
/// <summary>
/// Constant OR for JoinOperator
/// </summary>
public static readonly JoinOperator OR = new JoinOperator("OR");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public JoinOperator(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static JoinOperator FindValue(string value)
{
return FindValue<JoinOperator>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator JoinOperator(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type JoinRequiredOption.
/// </summary>
public class JoinRequiredOption : ConstantClass
{
/// <summary>
/// Constant QUERY_RUNNER for JoinRequiredOption
/// </summary>
public static readonly JoinRequiredOption QUERY_RUNNER = new JoinRequiredOption("QUERY_RUNNER");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public JoinRequiredOption(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static JoinRequiredOption FindValue(string value)
{
return FindValue<JoinRequiredOption>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator JoinRequiredOption(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type MemberAbility.
/// </summary>
public class MemberAbility : ConstantClass
{
/// <summary>
/// Constant CAN_QUERY for MemberAbility
/// </summary>
public static readonly MemberAbility CAN_QUERY = new MemberAbility("CAN_QUERY");
/// <summary>
/// Constant CAN_RECEIVE_RESULTS for MemberAbility
/// </summary>
public static readonly MemberAbility CAN_RECEIVE_RESULTS = new MemberAbility("CAN_RECEIVE_RESULTS");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public MemberAbility(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static MemberAbility FindValue(string value)
{
return FindValue<MemberAbility>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator MemberAbility(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type MembershipQueryLogStatus.
/// </summary>
public class MembershipQueryLogStatus : ConstantClass
{
/// <summary>
/// Constant DISABLED for MembershipQueryLogStatus
/// </summary>
public static readonly MembershipQueryLogStatus DISABLED = new MembershipQueryLogStatus("DISABLED");
/// <summary>
/// Constant ENABLED for MembershipQueryLogStatus
/// </summary>
public static readonly MembershipQueryLogStatus ENABLED = new MembershipQueryLogStatus("ENABLED");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public MembershipQueryLogStatus(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static MembershipQueryLogStatus FindValue(string value)
{
return FindValue<MembershipQueryLogStatus>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator MembershipQueryLogStatus(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type MembershipStatus.
/// </summary>
public class MembershipStatus : ConstantClass
{
/// <summary>
/// Constant ACTIVE for MembershipStatus
/// </summary>
public static readonly MembershipStatus ACTIVE = new MembershipStatus("ACTIVE");
/// <summary>
/// Constant COLLABORATION_DELETED for MembershipStatus
/// </summary>
public static readonly MembershipStatus COLLABORATION_DELETED = new MembershipStatus("COLLABORATION_DELETED");
/// <summary>
/// Constant REMOVED for MembershipStatus
/// </summary>
public static readonly MembershipStatus REMOVED = new MembershipStatus("REMOVED");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public MembershipStatus(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static MembershipStatus FindValue(string value)
{
return FindValue<MembershipStatus>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator MembershipStatus(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type MemberStatus.
/// </summary>
public class MemberStatus : ConstantClass
{
/// <summary>
/// Constant ACTIVE for MemberStatus
/// </summary>
public static readonly MemberStatus ACTIVE = new MemberStatus("ACTIVE");
/// <summary>
/// Constant INVITED for MemberStatus
/// </summary>
public static readonly MemberStatus INVITED = new MemberStatus("INVITED");
/// <summary>
/// Constant LEFT for MemberStatus
/// </summary>
public static readonly MemberStatus LEFT = new MemberStatus("LEFT");
/// <summary>
/// Constant REMOVED for MemberStatus
/// </summary>
public static readonly MemberStatus REMOVED = new MemberStatus("REMOVED");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public MemberStatus(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static MemberStatus FindValue(string value)
{
return FindValue<MemberStatus>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator MemberStatus(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type ProtectedQueryStatus.
/// </summary>
public class ProtectedQueryStatus : ConstantClass
{
/// <summary>
/// Constant CANCELLED for ProtectedQueryStatus
/// </summary>
public static readonly ProtectedQueryStatus CANCELLED = new ProtectedQueryStatus("CANCELLED");
/// <summary>
/// Constant CANCELLING for ProtectedQueryStatus
/// </summary>
public static readonly ProtectedQueryStatus CANCELLING = new ProtectedQueryStatus("CANCELLING");
/// <summary>
/// Constant FAILED for ProtectedQueryStatus
/// </summary>
public static readonly ProtectedQueryStatus FAILED = new ProtectedQueryStatus("FAILED");
/// <summary>
/// Constant STARTED for ProtectedQueryStatus
/// </summary>
public static readonly ProtectedQueryStatus STARTED = new ProtectedQueryStatus("STARTED");
/// <summary>
/// Constant SUBMITTED for ProtectedQueryStatus
/// </summary>
public static readonly ProtectedQueryStatus SUBMITTED = new ProtectedQueryStatus("SUBMITTED");
/// <summary>
/// Constant SUCCESS for ProtectedQueryStatus
/// </summary>
public static readonly ProtectedQueryStatus SUCCESS = new ProtectedQueryStatus("SUCCESS");
/// <summary>
/// Constant TIMED_OUT for ProtectedQueryStatus
/// </summary>
public static readonly ProtectedQueryStatus TIMED_OUT = new ProtectedQueryStatus("TIMED_OUT");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public ProtectedQueryStatus(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static ProtectedQueryStatus FindValue(string value)
{
return FindValue<ProtectedQueryStatus>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator ProtectedQueryStatus(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type ProtectedQueryType.
/// </summary>
public class ProtectedQueryType : ConstantClass
{
/// <summary>
/// Constant SQL for ProtectedQueryType
/// </summary>
public static readonly ProtectedQueryType SQL = new ProtectedQueryType("SQL");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public ProtectedQueryType(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static ProtectedQueryType FindValue(string value)
{
return FindValue<ProtectedQueryType>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator ProtectedQueryType(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type ResourceType.
/// </summary>
public class ResourceType : ConstantClass
{
/// <summary>
/// Constant COLLABORATION for ResourceType
/// </summary>
public static readonly ResourceType COLLABORATION = new ResourceType("COLLABORATION");
/// <summary>
/// Constant CONFIGURED_TABLE for ResourceType
/// </summary>
public static readonly ResourceType CONFIGURED_TABLE = new ResourceType("CONFIGURED_TABLE");
/// <summary>
/// Constant CONFIGURED_TABLE_ASSOCIATION for ResourceType
/// </summary>
public static readonly ResourceType CONFIGURED_TABLE_ASSOCIATION = new ResourceType("CONFIGURED_TABLE_ASSOCIATION");
/// <summary>
/// Constant MEMBERSHIP for ResourceType
/// </summary>
public static readonly ResourceType MEMBERSHIP = new ResourceType("MEMBERSHIP");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public ResourceType(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static ResourceType FindValue(string value)
{
return FindValue<ResourceType>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator ResourceType(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type ResultFormat.
/// </summary>
public class ResultFormat : ConstantClass
{
/// <summary>
/// Constant CSV for ResultFormat
/// </summary>
public static readonly ResultFormat CSV = new ResultFormat("CSV");
/// <summary>
/// Constant PARQUET for ResultFormat
/// </summary>
public static readonly ResultFormat PARQUET = new ResultFormat("PARQUET");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public ResultFormat(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static ResultFormat FindValue(string value)
{
return FindValue<ResultFormat>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator ResultFormat(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type ScalarFunctions.
/// </summary>
public class ScalarFunctions : ConstantClass
{
/// <summary>
/// Constant ABS for ScalarFunctions
/// </summary>
public static readonly ScalarFunctions ABS = new ScalarFunctions("ABS");
/// <summary>
/// Constant CAST for ScalarFunctions
/// </summary>
public static readonly ScalarFunctions CAST = new ScalarFunctions("CAST");
/// <summary>
/// Constant CEILING for ScalarFunctions
/// </summary>
public static readonly ScalarFunctions CEILING = new ScalarFunctions("CEILING");
/// <summary>
/// Constant COALESCE for ScalarFunctions
/// </summary>
public static readonly ScalarFunctions COALESCE = new ScalarFunctions("COALESCE");
/// <summary>
/// Constant FLOOR for ScalarFunctions
/// </summary>
public static readonly ScalarFunctions FLOOR = new ScalarFunctions("FLOOR");
/// <summary>
/// Constant LN for ScalarFunctions
/// </summary>
public static readonly ScalarFunctions LN = new ScalarFunctions("LN");
/// <summary>
/// Constant LOG for ScalarFunctions
/// </summary>
public static readonly ScalarFunctions LOG = new ScalarFunctions("LOG");
/// <summary>
/// Constant LOWER for ScalarFunctions
/// </summary>
public static readonly ScalarFunctions LOWER = new ScalarFunctions("LOWER");
/// <summary>
/// Constant ROUND for ScalarFunctions
/// </summary>
public static readonly ScalarFunctions ROUND = new ScalarFunctions("ROUND");
/// <summary>
/// Constant RTRIM for ScalarFunctions
/// </summary>
public static readonly ScalarFunctions RTRIM = new ScalarFunctions("RTRIM");
/// <summary>
/// Constant SQRT for ScalarFunctions
/// </summary>
public static readonly ScalarFunctions SQRT = new ScalarFunctions("SQRT");
/// <summary>
/// Constant TRUNC for ScalarFunctions
/// </summary>
public static readonly ScalarFunctions TRUNC = new ScalarFunctions("TRUNC");
/// <summary>
/// Constant UPPER for ScalarFunctions
/// </summary>
public static readonly ScalarFunctions UPPER = new ScalarFunctions("UPPER");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public ScalarFunctions(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static ScalarFunctions FindValue(string value)
{
return FindValue<ScalarFunctions>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator ScalarFunctions(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type SchemaType.
/// </summary>
public class SchemaType : ConstantClass
{
/// <summary>
/// Constant TABLE for SchemaType
/// </summary>
public static readonly SchemaType TABLE = new SchemaType("TABLE");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public SchemaType(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static SchemaType FindValue(string value)
{
return FindValue<SchemaType>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator SchemaType(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type TargetProtectedQueryStatus.
/// </summary>
public class TargetProtectedQueryStatus : ConstantClass
{
/// <summary>
/// Constant CANCELLED for TargetProtectedQueryStatus
/// </summary>
public static readonly TargetProtectedQueryStatus CANCELLED = new TargetProtectedQueryStatus("CANCELLED");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public TargetProtectedQueryStatus(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static TargetProtectedQueryStatus FindValue(string value)
{
return FindValue<TargetProtectedQueryStatus>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator TargetProtectedQueryStatus(string value)
{
return FindValue(value);
}
}
/// <summary>
/// Constants used for properties of type ValidationExceptionReason.
/// </summary>
public class ValidationExceptionReason : ConstantClass
{
/// <summary>
/// Constant FIELD_VALIDATION_FAILED for ValidationExceptionReason
/// </summary>
public static readonly ValidationExceptionReason FIELD_VALIDATION_FAILED = new ValidationExceptionReason("FIELD_VALIDATION_FAILED");
/// <summary>
/// Constant INVALID_CONFIGURATION for ValidationExceptionReason
/// </summary>
public static readonly ValidationExceptionReason INVALID_CONFIGURATION = new ValidationExceptionReason("INVALID_CONFIGURATION");
/// <summary>
/// Constant INVALID_QUERY for ValidationExceptionReason
/// </summary>
public static readonly ValidationExceptionReason INVALID_QUERY = new ValidationExceptionReason("INVALID_QUERY");
/// <summary>
/// This constant constructor does not need to be called if the constant
/// you are attempting to use is already defined as a static instance of
/// this class.
/// This constructor should be used to construct constants that are not
/// defined as statics, for instance if attempting to use a feature that is
/// newer than the current version of the SDK.
/// </summary>
public ValidationExceptionReason(string value)
: base(value)
{
}
/// <summary>
/// Finds the constant for the unique value.
/// </summary>
/// <param name="value">The unique value for the constant</param>
/// <returns>The constant for the unique value</returns>
public static ValidationExceptionReason FindValue(string value)
{
return FindValue<ValidationExceptionReason>(value);
}
/// <summary>
/// Utility method to convert strings to the constant class.
/// </summary>
/// <param name="value">The string value to convert to the constant class.</param>
/// <returns></returns>
public static implicit operator ValidationExceptionReason(string value)
{
return FindValue(value);
}
}
}
| 1,252 |
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 cleanrooms-2022-02-17.normal.json service model.
*/
using System;
using System.Collections.Generic;
using Amazon.Runtime;
using Amazon.Runtime.Endpoints;
using static Amazon.Runtime.Internal.Endpoints.StandardLibrary.Fn;
namespace Amazon.CleanRooms.Internal
{
/// <summary>
/// Amazon CleanRooms endpoint provider.
/// Resolves endpoint for given set of CleanRoomsEndpointParameters.
/// Can throw AmazonClientException if endpoint resolution is unsuccessful.
/// </summary>
public class AmazonCleanRoomsEndpointProvider : IEndpointProvider
{
/// <summary>
/// Resolve endpoint for CleanRoomsEndpointParameters
/// </summary>
public Endpoint ResolveEndpoint(EndpointParameters parameters)
{
if (parameters == null)
throw new ArgumentNullException("parameters");
if (parameters["UseDualStack"] == null)
throw new AmazonClientException("UseDualStack parameter must be set for endpoint resolution");
if (parameters["UseFIPS"] == null)
throw new AmazonClientException("UseFIPS parameter must be set for endpoint resolution");
var refs = new Dictionary<string, object>()
{
["Region"] = parameters["Region"],
["UseDualStack"] = parameters["UseDualStack"],
["UseFIPS"] = parameters["UseFIPS"],
["Endpoint"] = parameters["Endpoint"],
};
if (IsSet(refs["Endpoint"]))
{
if (Equals(refs["UseFIPS"], true))
{
throw new AmazonClientException("Invalid Configuration: FIPS and custom endpoint are not supported");
}
if (Equals(refs["UseDualStack"], true))
{
throw new AmazonClientException("Invalid Configuration: Dualstack and custom endpoint are not supported");
}
return new Endpoint((string)refs["Endpoint"], InterpolateJson(@"", refs), InterpolateJson(@"", refs));
}
if (IsSet(refs["Region"]))
{
if ((refs["PartitionResult"] = Partition((string)refs["Region"])) != null)
{
if (Equals(refs["UseFIPS"], true) && Equals(refs["UseDualStack"], true))
{
if (Equals(true, GetAttr(refs["PartitionResult"], "supportsFIPS")) && Equals(true, GetAttr(refs["PartitionResult"], "supportsDualStack")))
{
return new Endpoint(Interpolate(@"https://cleanrooms-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", refs), InterpolateJson(@"", refs), InterpolateJson(@"", refs));
}
throw new AmazonClientException("FIPS and DualStack are enabled, but this partition does not support one or both");
}
if (Equals(refs["UseFIPS"], true))
{
if (Equals(true, GetAttr(refs["PartitionResult"], "supportsFIPS")))
{
return new Endpoint(Interpolate(@"https://cleanrooms-fips.{Region}.{PartitionResult#dnsSuffix}", refs), InterpolateJson(@"", refs), InterpolateJson(@"", refs));
}
throw new AmazonClientException("FIPS is enabled but this partition does not support FIPS");
}
if (Equals(refs["UseDualStack"], true))
{
if (Equals(true, GetAttr(refs["PartitionResult"], "supportsDualStack")))
{
return new Endpoint(Interpolate(@"https://cleanrooms.{Region}.{PartitionResult#dualStackDnsSuffix}", refs), InterpolateJson(@"", refs), InterpolateJson(@"", refs));
}
throw new AmazonClientException("DualStack is enabled but this partition does not support DualStack");
}
return new Endpoint(Interpolate(@"https://cleanrooms.{Region}.{PartitionResult#dnsSuffix}", refs), InterpolateJson(@"", refs), InterpolateJson(@"", refs));
}
}
throw new AmazonClientException("Invalid Configuration: Missing Region");
throw new AmazonClientException("Cannot resolve endpoint");
}
}
}
| 103 |
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 cleanrooms-2022-02-17.normal.json service model.
*/
using System;
using Amazon.CleanRooms.Model;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
using Amazon.Runtime.Endpoints;
using Amazon.Util;
using Amazon.CleanRooms.Endpoints;
#pragma warning disable 1591
namespace Amazon.CleanRooms.Internal
{
/// <summary>
/// Amazon CleanRooms endpoint resolver.
/// Custom PipelineHandler responsible for resolving endpoint and setting authentication parameters for CleanRooms service requests.
/// Collects values for CleanRoomsEndpointParameters and then tries to resolve endpoint by calling
/// ResolveEndpoint method on GlobalEndpoints.Provider if present, otherwise uses CleanRoomsEndpointProvider.
/// Responsible for setting authentication and http headers provided by resolved endpoint.
/// </summary>
public class AmazonCleanRoomsEndpointResolver : BaseEndpointResolver
{
protected override void ServiceSpecificHandler(IExecutionContext executionContext, EndpointParameters parameters)
{
InjectHostPrefix(executionContext.RequestContext);
}
protected override EndpointParameters MapEndpointsParameters(IRequestContext requestContext)
{
var config = (AmazonCleanRoomsConfig)requestContext.ClientConfig;
var result = new CleanRoomsEndpointParameters();
result.Region = config.RegionEndpoint?.SystemName;
result.UseDualStack = config.UseDualstackEndpoint;
result.UseFIPS = config.UseFIPSEndpoint;
result.Endpoint = config.ServiceURL;
// The region needs to be determined from the ServiceURL if not set.
var regionEndpoint = config.RegionEndpoint;
if (regionEndpoint == null && !string.IsNullOrEmpty(config.ServiceURL))
{
var regionName = AWSSDKUtils.DetermineRegion(config.ServiceURL);
result.Region = RegionEndpoint.GetBySystemName(regionName).SystemName;
}
// To support legacy endpoint overridding rules in the endpoints.json
if (result.Region == "us-east-1-regional")
{
result.Region = "us-east-1";
}
// Use AlternateEndpoint region override if set
if (requestContext.Request.AlternateEndpoint != null)
{
result.Region = requestContext.Request.AlternateEndpoint.SystemName;
}
// Assign staticContextParams and contextParam per operation
return result;
}
}
}
| 83 |
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 cleanrooms-2022-02-17.normal.json service model.
*/
using Amazon.Runtime.Internal;
namespace Amazon.CleanRooms.Internal
{
/// <summary>
/// Service metadata for Amazon CleanRooms service
/// </summary>
public partial class AmazonCleanRoomsMetadata : IServiceMetadata
{
/// <summary>
/// Gets the value of the Service Id.
/// </summary>
public string ServiceId
{
get
{
return "CleanRooms";
}
}
/// <summary>
/// Gets the dictionary that gives mapping of renamed operations
/// </summary>
public System.Collections.Generic.IDictionary<string, string> OperationNameMapping
{
get
{
return new System.Collections.Generic.Dictionary<string, string>(0)
{
};
}
}
}
}
| 55 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Caller does not have sufficient access to perform this action.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class AccessDeniedException : AmazonCleanRoomsException
{
private AccessDeniedExceptionReason _reason;
/// <summary>
/// Constructs a new AccessDeniedException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public AccessDeniedException(string message)
: base(message) {}
/// <summary>
/// Construct instance of AccessDeniedException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public AccessDeniedException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of AccessDeniedException
/// </summary>
/// <param name="innerException"></param>
public AccessDeniedException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of AccessDeniedException
/// </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 AccessDeniedException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of AccessDeniedException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public AccessDeniedException(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 AccessDeniedException 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 AccessDeniedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
this.Reason = (AccessDeniedExceptionReason)info.GetValue("Reason", typeof(AccessDeniedExceptionReason));
}
/// <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("Reason", this.Reason);
}
#endif
/// <summary>
/// Gets and sets the property Reason.
/// <para>
/// A reason code for the exception.
/// </para>
/// </summary>
public AccessDeniedExceptionReason Reason
{
get { return this._reason; }
set { this._reason = value; }
}
// Check to see if Reason property is set
internal bool IsSetReason()
{
return this._reason != null;
}
}
}
| 145 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Column in configured table that can be used in aggregate function in query.
/// </summary>
public partial class AggregateColumn
{
private List<string> _columnNames = new List<string>();
private AggregateFunctionName _function;
/// <summary>
/// Gets and sets the property ColumnNames.
/// <para>
/// Column names in configured table of aggregate columns.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1)]
public List<string> ColumnNames
{
get { return this._columnNames; }
set { this._columnNames = value; }
}
// Check to see if ColumnNames property is set
internal bool IsSetColumnNames()
{
return this._columnNames != null && this._columnNames.Count > 0;
}
/// <summary>
/// Gets and sets the property Function.
/// <para>
/// Aggregation function that can be applied to aggregate column in query.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public AggregateFunctionName Function
{
get { return this._function; }
set { this._function = value; }
}
// Check to see if Function property is set
internal bool IsSetFunction()
{
return this._function != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Constraint on query output removing output rows that do not meet a minimum number
/// of distinct values of a specified column.
/// </summary>
public partial class AggregationConstraint
{
private string _columnName;
private int? _minimum;
private AggregationType _type;
/// <summary>
/// Gets and sets the property ColumnName.
/// <para>
/// Column in aggregation constraint for which there must be a minimum number of distinct
/// values in an output row for it to be in the query output.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=127)]
public string ColumnName
{
get { return this._columnName; }
set { this._columnName = value; }
}
// Check to see if ColumnName property is set
internal bool IsSetColumnName()
{
return this._columnName != null;
}
/// <summary>
/// Gets and sets the property Minimum.
/// <para>
/// The minimum number of distinct values that an output row must be an aggregation of.
/// Minimum threshold of distinct values for a specified column that must exist in an
/// output row for it to be in the query output.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=2, Max=100000)]
public int Minimum
{
get { return this._minimum.GetValueOrDefault(); }
set { this._minimum = value; }
}
// Check to see if Minimum property is set
internal bool IsSetMinimum()
{
return this._minimum.HasValue;
}
/// <summary>
/// Gets and sets the property Type.
/// <para>
/// The type of aggregation the constraint allows. The only valid value is currently `COUNT_DISTINCT`.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public AggregationType Type
{
get { return this._type; }
set { this._type = value; }
}
// Check to see if Type property is set
internal bool IsSetType()
{
return this._type != null;
}
}
}
| 102 |
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 cleanrooms-2022-02-17.normal.json service model.
*/
using Amazon.Runtime;
namespace Amazon.CleanRooms
{
/// <summary>
/// Base class for CleanRooms operation requests.
/// </summary>
public partial class AmazonCleanRoomsRequest : 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// A specification about how data from the configured table can be used in a query.
/// </summary>
public partial class AnalysisRule
{
private string _collaborationId;
private DateTime? _createTime;
private string _name;
private AnalysisRulePolicy _policy;
private AnalysisRuleType _type;
private DateTime? _updateTime;
/// <summary>
/// Gets and sets the property CollaborationId.
/// <para>
/// The unique ID for the associated collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string CollaborationId
{
get { return this._collaborationId; }
set { this._collaborationId = value; }
}
// Check to see if CollaborationId property is set
internal bool IsSetCollaborationId()
{
return this._collaborationId != null;
}
/// <summary>
/// Gets and sets the property CreateTime.
/// <para>
/// The time the analysis rule was created.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime CreateTime
{
get { return this._createTime.GetValueOrDefault(); }
set { this._createTime = value; }
}
// Check to see if CreateTime property is set
internal bool IsSetCreateTime()
{
return this._createTime.HasValue;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The name for the analysis rule.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=128)]
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 Policy.
/// <para>
/// A policy that describes the associated data usage limitations.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public AnalysisRulePolicy Policy
{
get { return this._policy; }
set { this._policy = value; }
}
// Check to see if Policy property is set
internal bool IsSetPolicy()
{
return this._policy != null;
}
/// <summary>
/// Gets and sets the property Type.
/// <para>
/// The type of analysis rule. Valid values are `AGGREGATION` and `LIST`.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public AnalysisRuleType Type
{
get { return this._type; }
set { this._type = value; }
}
// Check to see if Type property is set
internal bool IsSetType()
{
return this._type != null;
}
/// <summary>
/// Gets and sets the property UpdateTime.
/// <para>
/// The time the analysis rule was last updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime UpdateTime
{
get { return this._updateTime.GetValueOrDefault(); }
set { this._updateTime = value; }
}
// Check to see if UpdateTime property is set
internal bool IsSetUpdateTime()
{
return this._updateTime.HasValue;
}
}
}
| 158 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Enables query structure and specified queries that produce aggregate statistics.
/// </summary>
public partial class AnalysisRuleAggregation
{
private List<AggregateColumn> _aggregateColumns = new List<AggregateColumn>();
private List<string> _allowedJoinOperators = new List<string>();
private List<string> _dimensionColumns = new List<string>();
private List<string> _joinColumns = new List<string>();
private JoinRequiredOption _joinRequired;
private List<AggregationConstraint> _outputConstraints = new List<AggregationConstraint>();
private List<string> _scalarFunctions = new List<string>();
/// <summary>
/// Gets and sets the property AggregateColumns.
/// <para>
/// The columns that query runners are allowed to use in aggregation queries.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1)]
public List<AggregateColumn> AggregateColumns
{
get { return this._aggregateColumns; }
set { this._aggregateColumns = value; }
}
// Check to see if AggregateColumns property is set
internal bool IsSetAggregateColumns()
{
return this._aggregateColumns != null && this._aggregateColumns.Count > 0;
}
/// <summary>
/// Gets and sets the property AllowedJoinOperators.
/// <para>
/// Which logical operators (if any) are to be used in an INNER JOIN match condition.
/// Default is <code>AND</code>.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=2)]
public List<string> AllowedJoinOperators
{
get { return this._allowedJoinOperators; }
set { this._allowedJoinOperators = value; }
}
// Check to see if AllowedJoinOperators property is set
internal bool IsSetAllowedJoinOperators()
{
return this._allowedJoinOperators != null && this._allowedJoinOperators.Count > 0;
}
/// <summary>
/// Gets and sets the property DimensionColumns.
/// <para>
/// The columns that query runners are allowed to select, group by, or filter by.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<string> DimensionColumns
{
get { return this._dimensionColumns; }
set { this._dimensionColumns = value; }
}
// Check to see if DimensionColumns property is set
internal bool IsSetDimensionColumns()
{
return this._dimensionColumns != null && this._dimensionColumns.Count > 0;
}
/// <summary>
/// Gets and sets the property JoinColumns.
/// <para>
/// Columns in configured table that can be used in join statements and/or as aggregate
/// columns. They can never be outputted directly.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<string> JoinColumns
{
get { return this._joinColumns; }
set { this._joinColumns = value; }
}
// Check to see if JoinColumns property is set
internal bool IsSetJoinColumns()
{
return this._joinColumns != null && this._joinColumns.Count > 0;
}
/// <summary>
/// Gets and sets the property JoinRequired.
/// <para>
/// Control that requires member who runs query to do a join with their configured table
/// and/or other configured table in query.
/// </para>
/// </summary>
public JoinRequiredOption JoinRequired
{
get { return this._joinRequired; }
set { this._joinRequired = value; }
}
// Check to see if JoinRequired property is set
internal bool IsSetJoinRequired()
{
return this._joinRequired != null;
}
/// <summary>
/// Gets and sets the property OutputConstraints.
/// <para>
/// Columns that must meet a specific threshold value (after an aggregation function is
/// applied to it) for each output row to be returned.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1)]
public List<AggregationConstraint> OutputConstraints
{
get { return this._outputConstraints; }
set { this._outputConstraints = value; }
}
// Check to see if OutputConstraints property is set
internal bool IsSetOutputConstraints()
{
return this._outputConstraints != null && this._outputConstraints.Count > 0;
}
/// <summary>
/// Gets and sets the property ScalarFunctions.
/// <para>
/// Set of scalar functions that are allowed to be used on dimension columns and the output
/// of aggregation of metrics.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<string> ScalarFunctions
{
get { return this._scalarFunctions; }
set { this._scalarFunctions = value; }
}
// Check to see if ScalarFunctions property is set
internal bool IsSetScalarFunctions()
{
return this._scalarFunctions != null && this._scalarFunctions.Count > 0;
}
}
}
| 182 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// A type of analysis rule that enables row-level analysis.
/// </summary>
public partial class AnalysisRuleList
{
private List<string> _allowedJoinOperators = new List<string>();
private List<string> _joinColumns = new List<string>();
private List<string> _listColumns = new List<string>();
/// <summary>
/// Gets and sets the property AllowedJoinOperators.
/// <para>
/// Which logical operators (if any) are to be used in an INNER JOIN match condition.
/// Default is <code>AND</code>.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=2)]
public List<string> AllowedJoinOperators
{
get { return this._allowedJoinOperators; }
set { this._allowedJoinOperators = value; }
}
// Check to see if AllowedJoinOperators property is set
internal bool IsSetAllowedJoinOperators()
{
return this._allowedJoinOperators != null && this._allowedJoinOperators.Count > 0;
}
/// <summary>
/// Gets and sets the property JoinColumns.
/// <para>
/// Columns that can be used to join a configured table with the table of the member who
/// can query and other members' configured tables.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1)]
public List<string> JoinColumns
{
get { return this._joinColumns; }
set { this._joinColumns = value; }
}
// Check to see if JoinColumns property is set
internal bool IsSetJoinColumns()
{
return this._joinColumns != null && this._joinColumns.Count > 0;
}
/// <summary>
/// Gets and sets the property ListColumns.
/// <para>
/// Columns that can be listed in the output.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<string> ListColumns
{
get { return this._listColumns; }
set { this._listColumns = value; }
}
// Check to see if ListColumns property is set
internal bool IsSetListColumns()
{
return this._listColumns != null && this._listColumns.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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Controls on the query specifications that can be run on configured table..
/// </summary>
public partial class AnalysisRulePolicy
{
private AnalysisRulePolicyV1 _v1;
/// <summary>
/// Gets and sets the property V1.
/// <para>
/// Controls on the query specifications that can be run on configured table..
/// </para>
/// </summary>
public AnalysisRulePolicyV1 V1
{
get { return this._v1; }
set { this._v1 = value; }
}
// Check to see if V1 property is set
internal bool IsSetV1()
{
return this._v1 != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Controls on the query specifications that can be run on configured table..
/// </summary>
public partial class AnalysisRulePolicyV1
{
private AnalysisRuleAggregation _aggregation;
private AnalysisRuleList _list;
/// <summary>
/// Gets and sets the property Aggregation.
/// <para>
/// Analysis rule type that enables only aggregation queries on a configured table.
/// </para>
/// </summary>
public AnalysisRuleAggregation Aggregation
{
get { return this._aggregation; }
set { this._aggregation = value; }
}
// Check to see if Aggregation property is set
internal bool IsSetAggregation()
{
return this._aggregation != null;
}
/// <summary>
/// Gets and sets the property List.
/// <para>
/// Analysis rule type that enables only list queries on a configured table.
/// </para>
/// </summary>
public AnalysisRuleList List
{
get { return this._list; }
set { this._list = value; }
}
// Check to see if List property is set
internal bool IsSetList()
{
return this._list != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// An error describing why a schema could not be fetched.
/// </summary>
public partial class BatchGetSchemaError
{
private string _code;
private string _message;
private string _name;
/// <summary>
/// Gets and sets the property Code.
/// <para>
/// An error code for the error.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string Code
{
get { return this._code; }
set { this._code = value; }
}
// Check to see if Code property is set
internal bool IsSetCode()
{
return this._code != null;
}
/// <summary>
/// Gets and sets the property Message.
/// <para>
/// An error message for the error.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
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 Name.
/// <para>
/// An error name for the error.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=128)]
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;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the BatchGetSchema operation.
/// Retrieves multiple schemas by their identifiers.
/// </summary>
public partial class BatchGetSchemaRequest : AmazonCleanRoomsRequest
{
private string _collaborationIdentifier;
private List<string> _names = new List<string>();
/// <summary>
/// Gets and sets the property CollaborationIdentifier.
/// <para>
/// A unique identifier for the collaboration that the schemas belong to. Currently accepts
/// collaboration ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string CollaborationIdentifier
{
get { return this._collaborationIdentifier; }
set { this._collaborationIdentifier = value; }
}
// Check to see if CollaborationIdentifier property is set
internal bool IsSetCollaborationIdentifier()
{
return this._collaborationIdentifier != null;
}
/// <summary>
/// Gets and sets the property Names.
/// <para>
/// The names for the schema objects to retrieve.>
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=25)]
public List<string> Names
{
get { return this._names; }
set { this._names = value; }
}
// Check to see if Names property is set
internal bool IsSetNames()
{
return this._names != null && this._names.Count > 0;
}
}
}
| 80 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the BatchGetSchema operation.
/// </summary>
public partial class BatchGetSchemaResponse : AmazonWebServiceResponse
{
private List<BatchGetSchemaError> _errors = new List<BatchGetSchemaError>();
private List<Schema> _schemas = new List<Schema>();
/// <summary>
/// Gets and sets the property Errors.
/// <para>
/// Error reasons for schemas that could not be retrieved. One error is returned for every
/// schema that could not be retrieved.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=25)]
public List<BatchGetSchemaError> Errors
{
get { return this._errors; }
set { this._errors = value; }
}
// Check to see if Errors property is set
internal bool IsSetErrors()
{
return this._errors != null && this._errors.Count > 0;
}
/// <summary>
/// Gets and sets the property Schemas.
/// <para>
/// The retrieved list of schemas.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=25)]
public List<Schema> Schemas
{
get { return this._schemas; }
set { this._schemas = value; }
}
// Check to see if Schemas property is set
internal bool IsSetSchemas()
{
return this._schemas != null && this._schemas.Count > 0;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// The multi-party data share environment. The collaboration contains metadata about
/// its purpose and participants.
/// </summary>
public partial class Collaboration
{
private string _arn;
private DateTime? _createTime;
private string _creatorAccountId;
private string _creatorDisplayName;
private DataEncryptionMetadata _dataEncryptionMetadata;
private string _description;
private string _id;
private string _membershipArn;
private string _membershipId;
private MemberStatus _memberStatus;
private string _name;
private CollaborationQueryLogStatus _queryLogStatus;
private DateTime? _updateTime;
/// <summary>
/// Gets and sets the property Arn.
/// <para>
/// The unique ARN for the collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
/// <summary>
/// Gets and sets the property CreateTime.
/// <para>
/// The time when the collaboration was created.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime CreateTime
{
get { return this._createTime.GetValueOrDefault(); }
set { this._createTime = value; }
}
// Check to see if CreateTime property is set
internal bool IsSetCreateTime()
{
return this._createTime.HasValue;
}
/// <summary>
/// Gets and sets the property CreatorAccountId.
/// <para>
/// The identifier used to reference members of the collaboration. Currently only supports
/// Amazon Web Services account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=12, Max=12)]
public string CreatorAccountId
{
get { return this._creatorAccountId; }
set { this._creatorAccountId = value; }
}
// Check to see if CreatorAccountId property is set
internal bool IsSetCreatorAccountId()
{
return this._creatorAccountId != null;
}
/// <summary>
/// Gets and sets the property CreatorDisplayName.
/// <para>
/// A display name of the collaboration creator.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
public string CreatorDisplayName
{
get { return this._creatorDisplayName; }
set { this._creatorDisplayName = value; }
}
// Check to see if CreatorDisplayName property is set
internal bool IsSetCreatorDisplayName()
{
return this._creatorDisplayName != null;
}
/// <summary>
/// Gets and sets the property DataEncryptionMetadata.
/// <para>
/// The settings for client-side encryption for cryptographic computing.
/// </para>
/// </summary>
public DataEncryptionMetadata DataEncryptionMetadata
{
get { return this._dataEncryptionMetadata; }
set { this._dataEncryptionMetadata = value; }
}
// Check to see if DataEncryptionMetadata property is set
internal bool IsSetDataEncryptionMetadata()
{
return this._dataEncryptionMetadata != null;
}
/// <summary>
/// Gets and sets the property Description.
/// <para>
/// A description of the collaboration provided by the collaboration owner.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=255)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
/// <summary>
/// Gets and sets the property Id.
/// <para>
/// The unique ID for the collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string Id
{
get { return this._id; }
set { this._id = value; }
}
// Check to see if Id property is set
internal bool IsSetId()
{
return this._id != null;
}
/// <summary>
/// Gets and sets the property MembershipArn.
/// <para>
/// The unique ARN for your membership within the collaboration.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=100)]
public string MembershipArn
{
get { return this._membershipArn; }
set { this._membershipArn = value; }
}
// Check to see if MembershipArn property is set
internal bool IsSetMembershipArn()
{
return this._membershipArn != null;
}
/// <summary>
/// Gets and sets the property MembershipId.
/// <para>
/// The unique ID for your membership within the collaboration.
/// </para>
/// </summary>
[AWSProperty(Min=36, Max=36)]
public string MembershipId
{
get { return this._membershipId; }
set { this._membershipId = value; }
}
// Check to see if MembershipId property is set
internal bool IsSetMembershipId()
{
return this._membershipId != null;
}
/// <summary>
/// Gets and sets the property MemberStatus.
/// <para>
/// The status of a member in a collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public MemberStatus MemberStatus
{
get { return this._memberStatus; }
set { this._memberStatus = value; }
}
// Check to see if MemberStatus property is set
internal bool IsSetMemberStatus()
{
return this._memberStatus != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// A human-readable identifier provided by the collaboration owner. Display names are
/// not unique.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
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 QueryLogStatus.
/// <para>
/// An indicator as to whether query logging has been enabled or disabled for the collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public CollaborationQueryLogStatus QueryLogStatus
{
get { return this._queryLogStatus; }
set { this._queryLogStatus = value; }
}
// Check to see if QueryLogStatus property is set
internal bool IsSetQueryLogStatus()
{
return this._queryLogStatus != null;
}
/// <summary>
/// Gets and sets the property UpdateTime.
/// <para>
/// The time the collaboration metadata was last updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime UpdateTime
{
get { return this._updateTime.GetValueOrDefault(); }
set { this._updateTime = value; }
}
// Check to see if UpdateTime property is set
internal bool IsSetUpdateTime()
{
return this._updateTime.HasValue;
}
}
}
| 300 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// The metadata of the collaboration.
/// </summary>
public partial class CollaborationSummary
{
private string _arn;
private DateTime? _createTime;
private string _creatorAccountId;
private string _creatorDisplayName;
private string _id;
private string _membershipArn;
private string _membershipId;
private MemberStatus _memberStatus;
private string _name;
private DateTime? _updateTime;
/// <summary>
/// Gets and sets the property Arn.
/// <para>
/// The ARN of the collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
/// <summary>
/// Gets and sets the property CreateTime.
/// <para>
/// The time when the collaboration was created.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime CreateTime
{
get { return this._createTime.GetValueOrDefault(); }
set { this._createTime = value; }
}
// Check to see if CreateTime property is set
internal bool IsSetCreateTime()
{
return this._createTime.HasValue;
}
/// <summary>
/// Gets and sets the property CreatorAccountId.
/// <para>
/// The identifier used to reference members of the collaboration. Currently only supports
/// Amazon Web Services account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=12, Max=12)]
public string CreatorAccountId
{
get { return this._creatorAccountId; }
set { this._creatorAccountId = value; }
}
// Check to see if CreatorAccountId property is set
internal bool IsSetCreatorAccountId()
{
return this._creatorAccountId != null;
}
/// <summary>
/// Gets and sets the property CreatorDisplayName.
/// <para>
/// The display name of the collaboration creator.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
public string CreatorDisplayName
{
get { return this._creatorDisplayName; }
set { this._creatorDisplayName = value; }
}
// Check to see if CreatorDisplayName property is set
internal bool IsSetCreatorDisplayName()
{
return this._creatorDisplayName != null;
}
/// <summary>
/// Gets and sets the property Id.
/// <para>
/// The identifier for the collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string Id
{
get { return this._id; }
set { this._id = value; }
}
// Check to see if Id property is set
internal bool IsSetId()
{
return this._id != null;
}
/// <summary>
/// Gets and sets the property MembershipArn.
/// <para>
/// The ARN of a member in a collaboration.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=100)]
public string MembershipArn
{
get { return this._membershipArn; }
set { this._membershipArn = value; }
}
// Check to see if MembershipArn property is set
internal bool IsSetMembershipArn()
{
return this._membershipArn != null;
}
/// <summary>
/// Gets and sets the property MembershipId.
/// <para>
/// The identifier of a member in a collaboration.
/// </para>
/// </summary>
[AWSProperty(Min=36, Max=36)]
public string MembershipId
{
get { return this._membershipId; }
set { this._membershipId = value; }
}
// Check to see if MembershipId property is set
internal bool IsSetMembershipId()
{
return this._membershipId != null;
}
/// <summary>
/// Gets and sets the property MemberStatus.
/// <para>
/// The status of a member in a collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public MemberStatus MemberStatus
{
get { return this._memberStatus; }
set { this._memberStatus = value; }
}
// Check to see if MemberStatus property is set
internal bool IsSetMemberStatus()
{
return this._memberStatus != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// A human-readable identifier provided by the collaboration owner. Display names are
/// not unique.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
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 UpdateTime.
/// <para>
/// The time the collaboration metadata was last updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime UpdateTime
{
get { return this._updateTime.GetValueOrDefault(); }
set { this._updateTime = value; }
}
// Check to see if UpdateTime property is set
internal bool IsSetUpdateTime()
{
return this._updateTime.HasValue;
}
}
}
| 240 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// A column within a schema relation, derived from the underlying Glue table.
/// </summary>
public partial class Column
{
private string _name;
private string _type;
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The name of the column.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=128)]
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 Type.
/// <para>
/// The type of the column.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=255)]
public string Type
{
get { return this._type; }
set { this._type = value; }
}
// Check to see if Type property is set
internal bool IsSetType()
{
return this._type != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// A table that has been configured for use in a collaboration.
/// </summary>
public partial class ConfiguredTable
{
private List<string> _allowedColumns = new List<string>();
private AnalysisMethod _analysisMethod;
private List<string> _analysisRuleTypes = new List<string>();
private string _arn;
private DateTime? _createTime;
private string _description;
private string _id;
private string _name;
private TableReference _tableReference;
private DateTime? _updateTime;
/// <summary>
/// Gets and sets the property AllowedColumns.
/// <para>
/// The columns within the underlying Glue table that can be utilized within collaborations.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
public List<string> AllowedColumns
{
get { return this._allowedColumns; }
set { this._allowedColumns = value; }
}
// Check to see if AllowedColumns property is set
internal bool IsSetAllowedColumns()
{
return this._allowedColumns != null && this._allowedColumns.Count > 0;
}
/// <summary>
/// Gets and sets the property AnalysisMethod.
/// <para>
/// The analysis method for the configured table. The only valid value is currently `DIRECT_QUERY`.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public AnalysisMethod AnalysisMethod
{
get { return this._analysisMethod; }
set { this._analysisMethod = value; }
}
// Check to see if AnalysisMethod property is set
internal bool IsSetAnalysisMethod()
{
return this._analysisMethod != null;
}
/// <summary>
/// Gets and sets the property AnalysisRuleTypes.
/// <para>
/// The types of analysis rules associated with this configured table. Valid values are
/// `AGGREGATION` and `LIST`. Currently, only one analysis rule may be associated with
/// a configured table.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<string> AnalysisRuleTypes
{
get { return this._analysisRuleTypes; }
set { this._analysisRuleTypes = value; }
}
// Check to see if AnalysisRuleTypes property is set
internal bool IsSetAnalysisRuleTypes()
{
return this._analysisRuleTypes != null && this._analysisRuleTypes.Count > 0;
}
/// <summary>
/// Gets and sets the property Arn.
/// <para>
/// The unique ARN for the configured table.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
/// <summary>
/// Gets and sets the property CreateTime.
/// <para>
/// The time the configured table was created.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime CreateTime
{
get { return this._createTime.GetValueOrDefault(); }
set { this._createTime = value; }
}
// Check to see if CreateTime property is set
internal bool IsSetCreateTime()
{
return this._createTime.HasValue;
}
/// <summary>
/// Gets and sets the property Description.
/// <para>
/// A description for the configured table.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=255)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
/// <summary>
/// Gets and sets the property Id.
/// <para>
/// The unique ID for the configured table.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string Id
{
get { return this._id; }
set { this._id = value; }
}
// Check to see if Id property is set
internal bool IsSetId()
{
return this._id != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// A name for the configured table.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
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 TableReference.
/// <para>
/// The Glue table that this configured table represents.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public TableReference TableReference
{
get { return this._tableReference; }
set { this._tableReference = value; }
}
// Check to see if TableReference property is set
internal bool IsSetTableReference()
{
return this._tableReference != null;
}
/// <summary>
/// Gets and sets the property UpdateTime.
/// <para>
/// The time the configured table was last updated
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime UpdateTime
{
get { return this._updateTime.GetValueOrDefault(); }
set { this._updateTime = value; }
}
// Check to see if UpdateTime property is set
internal bool IsSetUpdateTime()
{
return this._updateTime.HasValue;
}
}
}
| 240 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// A configured table analysis rule, which limits how data for this table can be used.
/// </summary>
public partial class ConfiguredTableAnalysisRule
{
private string _configuredTableArn;
private string _configuredTableId;
private DateTime? _createTime;
private ConfiguredTableAnalysisRulePolicy _policy;
private ConfiguredTableAnalysisRuleType _type;
private DateTime? _updateTime;
/// <summary>
/// Gets and sets the property ConfiguredTableArn.
/// <para>
/// The unique ARN for the configured table.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string ConfiguredTableArn
{
get { return this._configuredTableArn; }
set { this._configuredTableArn = value; }
}
// Check to see if ConfiguredTableArn property is set
internal bool IsSetConfiguredTableArn()
{
return this._configuredTableArn != null;
}
/// <summary>
/// Gets and sets the property ConfiguredTableId.
/// <para>
/// The unique ID for the configured table.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string ConfiguredTableId
{
get { return this._configuredTableId; }
set { this._configuredTableId = value; }
}
// Check to see if ConfiguredTableId property is set
internal bool IsSetConfiguredTableId()
{
return this._configuredTableId != null;
}
/// <summary>
/// Gets and sets the property CreateTime.
/// <para>
/// The time the configured table analysis rule was created.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime CreateTime
{
get { return this._createTime.GetValueOrDefault(); }
set { this._createTime = value; }
}
// Check to see if CreateTime property is set
internal bool IsSetCreateTime()
{
return this._createTime.HasValue;
}
/// <summary>
/// Gets and sets the property Policy.
/// <para>
/// The policy that controls SQL query rules.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ConfiguredTableAnalysisRulePolicy Policy
{
get { return this._policy; }
set { this._policy = value; }
}
// Check to see if Policy property is set
internal bool IsSetPolicy()
{
return this._policy != null;
}
/// <summary>
/// Gets and sets the property Type.
/// <para>
/// The type of configured table analysis rule. Valid values are `AGGREGATION` and `LIST`.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ConfiguredTableAnalysisRuleType Type
{
get { return this._type; }
set { this._type = value; }
}
// Check to see if Type property is set
internal bool IsSetType()
{
return this._type != null;
}
/// <summary>
/// Gets and sets the property UpdateTime.
/// <para>
/// The time the configured table analysis rule was last updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime UpdateTime
{
get { return this._updateTime.GetValueOrDefault(); }
set { this._updateTime = value; }
}
// Check to see if UpdateTime property is set
internal bool IsSetUpdateTime()
{
return this._updateTime.HasValue;
}
}
}
| 158 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Controls on the query specifications that can be run on a configured table.
/// </summary>
public partial class ConfiguredTableAnalysisRulePolicy
{
private ConfiguredTableAnalysisRulePolicyV1 _v1;
/// <summary>
/// Gets and sets the property V1.
/// <para>
/// Controls on the query specifications that can be run on a configured table.
/// </para>
/// </summary>
public ConfiguredTableAnalysisRulePolicyV1 V1
{
get { return this._v1; }
set { this._v1 = value; }
}
// Check to see if V1 property is set
internal bool IsSetV1()
{
return this._v1 != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Controls on the query specifications that can be run on a configured table.
/// </summary>
public partial class ConfiguredTableAnalysisRulePolicyV1
{
private AnalysisRuleAggregation _aggregation;
private AnalysisRuleList _list;
/// <summary>
/// Gets and sets the property Aggregation.
/// <para>
/// Analysis rule type that enables only aggregation queries on a configured table.
/// </para>
/// </summary>
public AnalysisRuleAggregation Aggregation
{
get { return this._aggregation; }
set { this._aggregation = value; }
}
// Check to see if Aggregation property is set
internal bool IsSetAggregation()
{
return this._aggregation != null;
}
/// <summary>
/// Gets and sets the property List.
/// <para>
/// Analysis rule type that enables only list queries on a configured table.
/// </para>
/// </summary>
public AnalysisRuleList List
{
get { return this._list; }
set { this._list = value; }
}
// Check to see if List property is set
internal bool IsSetList()
{
return this._list != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// A configured table association links a configured table to a collaboration.
/// </summary>
public partial class ConfiguredTableAssociation
{
private string _arn;
private string _configuredTableArn;
private string _configuredTableId;
private DateTime? _createTime;
private string _description;
private string _id;
private string _membershipArn;
private string _membershipId;
private string _name;
private string _roleArn;
private DateTime? _updateTime;
/// <summary>
/// Gets and sets the property Arn.
/// <para>
/// The unique ARN for the configured table association.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
/// <summary>
/// Gets and sets the property ConfiguredTableArn.
/// <para>
/// The unique ARN for the configured table that the association refers to.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string ConfiguredTableArn
{
get { return this._configuredTableArn; }
set { this._configuredTableArn = value; }
}
// Check to see if ConfiguredTableArn property is set
internal bool IsSetConfiguredTableArn()
{
return this._configuredTableArn != null;
}
/// <summary>
/// Gets and sets the property ConfiguredTableId.
/// <para>
/// The unique ID for the configured table that the association refers to.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string ConfiguredTableId
{
get { return this._configuredTableId; }
set { this._configuredTableId = value; }
}
// Check to see if ConfiguredTableId property is set
internal bool IsSetConfiguredTableId()
{
return this._configuredTableId != null;
}
/// <summary>
/// Gets and sets the property CreateTime.
/// <para>
/// The time the configured table association was created.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime CreateTime
{
get { return this._createTime.GetValueOrDefault(); }
set { this._createTime = value; }
}
// Check to see if CreateTime property is set
internal bool IsSetCreateTime()
{
return this._createTime.HasValue;
}
/// <summary>
/// Gets and sets the property Description.
/// <para>
/// A description of the configured table association.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=255)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
/// <summary>
/// Gets and sets the property Id.
/// <para>
/// The unique ID for the configured table association.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string Id
{
get { return this._id; }
set { this._id = value; }
}
// Check to see if Id property is set
internal bool IsSetId()
{
return this._id != null;
}
/// <summary>
/// Gets and sets the property MembershipArn.
/// <para>
/// The unique ARN for the membership this configured table association belongs to.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string MembershipArn
{
get { return this._membershipArn; }
set { this._membershipArn = value; }
}
// Check to see if MembershipArn property is set
internal bool IsSetMembershipArn()
{
return this._membershipArn != null;
}
/// <summary>
/// Gets and sets the property MembershipId.
/// <para>
/// The unique ID for the membership this configured table association belongs to.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string MembershipId
{
get { return this._membershipId; }
set { this._membershipId = value; }
}
// Check to see if MembershipId property is set
internal bool IsSetMembershipId()
{
return this._membershipId != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The name of the configured table association, in lowercase. The table is identified
/// by this name when running protected queries against the underlying data.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=128)]
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 RoleArn.
/// <para>
/// The service will assume this role to access catalog metadata and query the table.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=32, Max=512)]
public string RoleArn
{
get { return this._roleArn; }
set { this._roleArn = value; }
}
// Check to see if RoleArn property is set
internal bool IsSetRoleArn()
{
return this._roleArn != null;
}
/// <summary>
/// Gets and sets the property UpdateTime.
/// <para>
/// The time the configured table association was last updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime UpdateTime
{
get { return this._updateTime.GetValueOrDefault(); }
set { this._updateTime = value; }
}
// Check to see if UpdateTime property is set
internal bool IsSetUpdateTime()
{
return this._updateTime.HasValue;
}
}
}
| 259 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// The configured table association summary for the objects listed by the request.
/// </summary>
public partial class ConfiguredTableAssociationSummary
{
private string _arn;
private string _configuredTableId;
private DateTime? _createTime;
private string _id;
private string _membershipArn;
private string _membershipId;
private string _name;
private DateTime? _updateTime;
/// <summary>
/// Gets and sets the property Arn.
/// <para>
/// The unique ARN for the configured table association.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
/// <summary>
/// Gets and sets the property ConfiguredTableId.
/// <para>
/// The unique configured table ID that this configured table association refers to.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string ConfiguredTableId
{
get { return this._configuredTableId; }
set { this._configuredTableId = value; }
}
// Check to see if ConfiguredTableId property is set
internal bool IsSetConfiguredTableId()
{
return this._configuredTableId != null;
}
/// <summary>
/// Gets and sets the property CreateTime.
/// <para>
/// The time the configured table association was created.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime CreateTime
{
get { return this._createTime.GetValueOrDefault(); }
set { this._createTime = value; }
}
// Check to see if CreateTime property is set
internal bool IsSetCreateTime()
{
return this._createTime.HasValue;
}
/// <summary>
/// Gets and sets the property Id.
/// <para>
/// The unique ID for the configured table association.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string Id
{
get { return this._id; }
set { this._id = value; }
}
// Check to see if Id property is set
internal bool IsSetId()
{
return this._id != null;
}
/// <summary>
/// Gets and sets the property MembershipArn.
/// <para>
/// The unique ARN for the membership that the configured table association belongs to.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string MembershipArn
{
get { return this._membershipArn; }
set { this._membershipArn = value; }
}
// Check to see if MembershipArn property is set
internal bool IsSetMembershipArn()
{
return this._membershipArn != null;
}
/// <summary>
/// Gets and sets the property MembershipId.
/// <para>
/// The unique ID for the membership that the configured table association belongs to.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string MembershipId
{
get { return this._membershipId; }
set { this._membershipId = value; }
}
// Check to see if MembershipId property is set
internal bool IsSetMembershipId()
{
return this._membershipId != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The name of the configured table association. The table is identified by this name
/// when running Protected Queries against the underlying data.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=128)]
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 UpdateTime.
/// <para>
/// The time the configured table association was last updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime UpdateTime
{
get { return this._updateTime.GetValueOrDefault(); }
set { this._updateTime = value; }
}
// Check to see if UpdateTime property is set
internal bool IsSetUpdateTime()
{
return this._updateTime.HasValue;
}
}
}
| 199 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// The configured table summary for the objects listed by the request.
/// </summary>
public partial class ConfiguredTableSummary
{
private AnalysisMethod _analysisMethod;
private List<string> _analysisRuleTypes = new List<string>();
private string _arn;
private DateTime? _createTime;
private string _id;
private string _name;
private DateTime? _updateTime;
/// <summary>
/// Gets and sets the property AnalysisMethod.
/// <para>
/// The analysis method for the configured tables. The only valid value is currently `DIRECT_QUERY`.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public AnalysisMethod AnalysisMethod
{
get { return this._analysisMethod; }
set { this._analysisMethod = value; }
}
// Check to see if AnalysisMethod property is set
internal bool IsSetAnalysisMethod()
{
return this._analysisMethod != null;
}
/// <summary>
/// Gets and sets the property AnalysisRuleTypes.
/// <para>
/// The types of analysis rules associated with this configured table.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<string> AnalysisRuleTypes
{
get { return this._analysisRuleTypes; }
set { this._analysisRuleTypes = value; }
}
// Check to see if AnalysisRuleTypes property is set
internal bool IsSetAnalysisRuleTypes()
{
return this._analysisRuleTypes != null && this._analysisRuleTypes.Count > 0;
}
/// <summary>
/// Gets and sets the property Arn.
/// <para>
/// The unique ARN of the configured table.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
/// <summary>
/// Gets and sets the property CreateTime.
/// <para>
/// The time the configured table was created.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime CreateTime
{
get { return this._createTime.GetValueOrDefault(); }
set { this._createTime = value; }
}
// Check to see if CreateTime property is set
internal bool IsSetCreateTime()
{
return this._createTime.HasValue;
}
/// <summary>
/// Gets and sets the property Id.
/// <para>
/// The unique ID of the configured table.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string Id
{
get { return this._id; }
set { this._id = value; }
}
// Check to see if Id property is set
internal bool IsSetId()
{
return this._id != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The name of the configured table.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
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 UpdateTime.
/// <para>
/// The time the configured table was last updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime UpdateTime
{
get { return this._updateTime.GetValueOrDefault(); }
set { this._updateTime = value; }
}
// Check to see if UpdateTime property is set
internal bool IsSetUpdateTime()
{
return this._updateTime.HasValue;
}
}
}
| 178 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Updating or deleting a resource can cause an inconsistent state.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class ConflictException : AmazonCleanRoomsException
{
private ConflictExceptionReason _reason;
private string _resourceId;
private ResourceType _resourceType;
/// <summary>
/// Constructs a new ConflictException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public ConflictException(string message)
: base(message) {}
/// <summary>
/// Construct instance of ConflictException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public ConflictException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of ConflictException
/// </summary>
/// <param name="innerException"></param>
public ConflictException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of ConflictException
/// </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 ConflictException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of ConflictException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public ConflictException(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 ConflictException 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 ConflictException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
this.Reason = (ConflictExceptionReason)info.GetValue("Reason", typeof(ConflictExceptionReason));
this.ResourceId = (string)info.GetValue("ResourceId", typeof(string));
this.ResourceType = (ResourceType)info.GetValue("ResourceType", typeof(ResourceType));
}
/// <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("Reason", this.Reason);
info.AddValue("ResourceId", this.ResourceId);
info.AddValue("ResourceType", this.ResourceType);
}
#endif
/// <summary>
/// Gets and sets the property Reason.
/// <para>
/// A reason code for the exception.
/// </para>
/// </summary>
public ConflictExceptionReason Reason
{
get { return this._reason; }
set { this._reason = value; }
}
// Check to see if Reason property is set
internal bool IsSetReason()
{
return this._reason != null;
}
/// <summary>
/// Gets and sets the property ResourceId.
/// <para>
/// The ID of the conflicting resource.
/// </para>
/// </summary>
public string ResourceId
{
get { return this._resourceId; }
set { this._resourceId = value; }
}
// Check to see if ResourceId property is set
internal bool IsSetResourceId()
{
return this._resourceId != null;
}
/// <summary>
/// Gets and sets the property ResourceType.
/// <para>
/// The type of the conflicting resource.
/// </para>
/// </summary>
public ResourceType ResourceType
{
get { return this._resourceType; }
set { this._resourceType = value; }
}
// Check to see if ResourceType property is set
internal bool IsSetResourceType()
{
return this._resourceType != null;
}
}
}
| 187 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the CreateCollaboration operation.
/// Creates a new collaboration.
/// </summary>
public partial class CreateCollaborationRequest : AmazonCleanRoomsRequest
{
private string _creatorDisplayName;
private List<string> _creatorMemberAbilities = new List<string>();
private DataEncryptionMetadata _dataEncryptionMetadata;
private string _description;
private List<MemberSpecification> _members = new List<MemberSpecification>();
private string _name;
private CollaborationQueryLogStatus _queryLogStatus;
private Dictionary<string, string> _tags = new Dictionary<string, string>();
/// <summary>
/// Gets and sets the property CreatorDisplayName.
/// <para>
/// The display name of the collaboration creator.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
public string CreatorDisplayName
{
get { return this._creatorDisplayName; }
set { this._creatorDisplayName = value; }
}
// Check to see if CreatorDisplayName property is set
internal bool IsSetCreatorDisplayName()
{
return this._creatorDisplayName != null;
}
/// <summary>
/// Gets and sets the property CreatorMemberAbilities.
/// <para>
/// The abilities granted to the collaboration creator.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<string> CreatorMemberAbilities
{
get { return this._creatorMemberAbilities; }
set { this._creatorMemberAbilities = value; }
}
// Check to see if CreatorMemberAbilities property is set
internal bool IsSetCreatorMemberAbilities()
{
return this._creatorMemberAbilities != null && this._creatorMemberAbilities.Count > 0;
}
/// <summary>
/// Gets and sets the property DataEncryptionMetadata.
/// <para>
/// The settings for client-side encryption with Cryptographic Computing for Clean Rooms.
/// </para>
/// </summary>
public DataEncryptionMetadata DataEncryptionMetadata
{
get { return this._dataEncryptionMetadata; }
set { this._dataEncryptionMetadata = value; }
}
// Check to see if DataEncryptionMetadata property is set
internal bool IsSetDataEncryptionMetadata()
{
return this._dataEncryptionMetadata != null;
}
/// <summary>
/// Gets and sets the property Description.
/// <para>
/// A description of the collaboration provided by the collaboration owner.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=255)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
/// <summary>
/// Gets and sets the property Members.
/// <para>
/// A list of initial members, not including the creator. This list is immutable.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=9)]
public List<MemberSpecification> Members
{
get { return this._members; }
set { this._members = value; }
}
// Check to see if Members property is set
internal bool IsSetMembers()
{
return this._members != null && this._members.Count > 0;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The display name for a collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
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 QueryLogStatus.
/// <para>
/// An indicator as to whether query logging has been enabled or disabled for the collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public CollaborationQueryLogStatus QueryLogStatus
{
get { return this._queryLogStatus; }
set { this._queryLogStatus = value; }
}
// Check to see if QueryLogStatus property is set
internal bool IsSetQueryLogStatus()
{
return this._queryLogStatus != null;
}
/// <summary>
/// Gets and sets the property Tags.
/// <para>
/// An optional label that you can assign to a resource when you create it. Each tag consists
/// of a key and an optional value, both of which you define. When you use tagging, you
/// can also use tag-based access control in IAM policies to control access to this resource.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=200)]
public Dictionary<string, string> Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
}
}
| 200 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the CreateCollaboration operation.
/// </summary>
public partial class CreateCollaborationResponse : AmazonWebServiceResponse
{
private Collaboration _collaboration;
/// <summary>
/// Gets and sets the property Collaboration.
/// <para>
/// The entire created collaboration object.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public Collaboration Collaboration
{
get { return this._collaboration; }
set { this._collaboration = value; }
}
// Check to see if Collaboration property is set
internal bool IsSetCollaboration()
{
return this._collaboration != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the CreateConfiguredTableAnalysisRule operation.
/// Creates a new analysis rule for a configured table. Currently, only one analysis rule
/// can be created for a given configured table.
/// </summary>
public partial class CreateConfiguredTableAnalysisRuleRequest : AmazonCleanRoomsRequest
{
private ConfiguredTableAnalysisRulePolicy _analysisRulePolicy;
private ConfiguredTableAnalysisRuleType _analysisRuleType;
private string _configuredTableIdentifier;
/// <summary>
/// Gets and sets the property AnalysisRulePolicy.
/// <para>
/// The entire created configured table analysis rule object.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ConfiguredTableAnalysisRulePolicy AnalysisRulePolicy
{
get { return this._analysisRulePolicy; }
set { this._analysisRulePolicy = value; }
}
// Check to see if AnalysisRulePolicy property is set
internal bool IsSetAnalysisRulePolicy()
{
return this._analysisRulePolicy != null;
}
/// <summary>
/// Gets and sets the property AnalysisRuleType.
/// <para>
/// The type of analysis rule. Valid values are AGGREGATION and LIST.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ConfiguredTableAnalysisRuleType AnalysisRuleType
{
get { return this._analysisRuleType; }
set { this._analysisRuleType = value; }
}
// Check to see if AnalysisRuleType property is set
internal bool IsSetAnalysisRuleType()
{
return this._analysisRuleType != null;
}
/// <summary>
/// Gets and sets the property ConfiguredTableIdentifier.
/// <para>
/// The identifier for the configured table to create the analysis rule for. Currently
/// accepts the configured table ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string ConfiguredTableIdentifier
{
get { return this._configuredTableIdentifier; }
set { this._configuredTableIdentifier = value; }
}
// Check to see if ConfiguredTableIdentifier property is set
internal bool IsSetConfiguredTableIdentifier()
{
return this._configuredTableIdentifier != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the CreateConfiguredTableAnalysisRule operation.
/// </summary>
public partial class CreateConfiguredTableAnalysisRuleResponse : AmazonWebServiceResponse
{
private ConfiguredTableAnalysisRule _analysisRule;
/// <summary>
/// Gets and sets the property AnalysisRule.
/// <para>
/// The entire created analysis rule.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ConfiguredTableAnalysisRule AnalysisRule
{
get { return this._analysisRule; }
set { this._analysisRule = value; }
}
// Check to see if AnalysisRule property is set
internal bool IsSetAnalysisRule()
{
return this._analysisRule != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the CreateConfiguredTableAssociation operation.
/// Creates a configured table association. A configured table association links a configured
/// table with a collaboration.
/// </summary>
public partial class CreateConfiguredTableAssociationRequest : AmazonCleanRoomsRequest
{
private string _configuredTableIdentifier;
private string _description;
private string _membershipIdentifier;
private string _name;
private string _roleArn;
private Dictionary<string, string> _tags = new Dictionary<string, string>();
/// <summary>
/// Gets and sets the property ConfiguredTableIdentifier.
/// <para>
/// A unique identifier for the configured table to be associated to. Currently accepts
/// a configured table ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string ConfiguredTableIdentifier
{
get { return this._configuredTableIdentifier; }
set { this._configuredTableIdentifier = value; }
}
// Check to see if ConfiguredTableIdentifier property is set
internal bool IsSetConfiguredTableIdentifier()
{
return this._configuredTableIdentifier != null;
}
/// <summary>
/// Gets and sets the property Description.
/// <para>
/// A description for the configured table association.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=255)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
/// <summary>
/// Gets and sets the property MembershipIdentifier.
/// <para>
/// A unique identifier for one of your memberships for a collaboration. The configured
/// table is associated to the collaboration that this membership belongs to. Currently
/// accepts a membership ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string MembershipIdentifier
{
get { return this._membershipIdentifier; }
set { this._membershipIdentifier = value; }
}
// Check to see if MembershipIdentifier property is set
internal bool IsSetMembershipIdentifier()
{
return this._membershipIdentifier != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The name of the configured table association. This name is used to query the underlying
/// configured table.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=128)]
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 RoleArn.
/// <para>
/// The service will assume this role to access catalog metadata and query the table.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=32, Max=512)]
public string RoleArn
{
get { return this._roleArn; }
set { this._roleArn = value; }
}
// Check to see if RoleArn property is set
internal bool IsSetRoleArn()
{
return this._roleArn != null;
}
/// <summary>
/// Gets and sets the property Tags.
/// <para>
/// An optional label that you can assign to a resource when you create it. Each tag consists
/// of a key and an optional value, both of which you define. When you use tagging, you
/// can also use tag-based access control in IAM policies to control access to this resource.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=200)]
public Dictionary<string, string> Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
}
}
| 166 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the CreateConfiguredTableAssociation operation.
/// </summary>
public partial class CreateConfiguredTableAssociationResponse : AmazonWebServiceResponse
{
private ConfiguredTableAssociation _configuredTableAssociation;
/// <summary>
/// Gets and sets the property ConfiguredTableAssociation.
/// <para>
/// The entire configured table association object.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ConfiguredTableAssociation ConfiguredTableAssociation
{
get { return this._configuredTableAssociation; }
set { this._configuredTableAssociation = value; }
}
// Check to see if ConfiguredTableAssociation property is set
internal bool IsSetConfiguredTableAssociation()
{
return this._configuredTableAssociation != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the CreateConfiguredTable operation.
/// Creates a new configured table resource.
/// </summary>
public partial class CreateConfiguredTableRequest : AmazonCleanRoomsRequest
{
private List<string> _allowedColumns = new List<string>();
private AnalysisMethod _analysisMethod;
private string _description;
private string _name;
private TableReference _tableReference;
private Dictionary<string, string> _tags = new Dictionary<string, string>();
/// <summary>
/// Gets and sets the property AllowedColumns.
/// <para>
/// The columns of the underlying table that can be used by collaborations or analysis
/// rules.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
public List<string> AllowedColumns
{
get { return this._allowedColumns; }
set { this._allowedColumns = value; }
}
// Check to see if AllowedColumns property is set
internal bool IsSetAllowedColumns()
{
return this._allowedColumns != null && this._allowedColumns.Count > 0;
}
/// <summary>
/// Gets and sets the property AnalysisMethod.
/// <para>
/// The analysis method for the configured tables. The only valid value is currently `DIRECT_QUERY`.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public AnalysisMethod AnalysisMethod
{
get { return this._analysisMethod; }
set { this._analysisMethod = value; }
}
// Check to see if AnalysisMethod property is set
internal bool IsSetAnalysisMethod()
{
return this._analysisMethod != null;
}
/// <summary>
/// Gets and sets the property Description.
/// <para>
/// A description for the configured table.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=255)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The name of the configured table.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
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 TableReference.
/// <para>
/// A reference to the Glue table being configured.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public TableReference TableReference
{
get { return this._tableReference; }
set { this._tableReference = value; }
}
// Check to see if TableReference property is set
internal bool IsSetTableReference()
{
return this._tableReference != null;
}
/// <summary>
/// Gets and sets the property Tags.
/// <para>
/// An optional label that you can assign to a resource when you create it. Each tag consists
/// of a key and an optional value, both of which you define. When you use tagging, you
/// can also use tag-based access control in IAM policies to control access to this resource.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=200)]
public Dictionary<string, string> Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
}
}
| 162 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the CreateConfiguredTable operation.
/// </summary>
public partial class CreateConfiguredTableResponse : AmazonWebServiceResponse
{
private ConfiguredTable _configuredTable;
/// <summary>
/// Gets and sets the property ConfiguredTable.
/// <para>
/// The created configured table.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ConfiguredTable ConfiguredTable
{
get { return this._configuredTable; }
set { this._configuredTable = value; }
}
// Check to see if ConfiguredTable property is set
internal bool IsSetConfiguredTable()
{
return this._configuredTable != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the CreateMembership operation.
/// Creates a membership for a specific collaboration identifier and joins the collaboration.
/// </summary>
public partial class CreateMembershipRequest : AmazonCleanRoomsRequest
{
private string _collaborationIdentifier;
private MembershipQueryLogStatus _queryLogStatus;
private Dictionary<string, string> _tags = new Dictionary<string, string>();
/// <summary>
/// Gets and sets the property CollaborationIdentifier.
/// <para>
/// The unique ID for the associated collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string CollaborationIdentifier
{
get { return this._collaborationIdentifier; }
set { this._collaborationIdentifier = value; }
}
// Check to see if CollaborationIdentifier property is set
internal bool IsSetCollaborationIdentifier()
{
return this._collaborationIdentifier != null;
}
/// <summary>
/// Gets and sets the property QueryLogStatus.
/// <para>
/// An indicator as to whether query logging has been enabled or disabled for the collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public MembershipQueryLogStatus QueryLogStatus
{
get { return this._queryLogStatus; }
set { this._queryLogStatus = value; }
}
// Check to see if QueryLogStatus property is set
internal bool IsSetQueryLogStatus()
{
return this._queryLogStatus != null;
}
/// <summary>
/// Gets and sets the property Tags.
/// <para>
/// An optional label that you can assign to a resource when you create it. Each tag consists
/// of a key and an optional value, both of which you define. When you use tagging, you
/// can also use tag-based access control in IAM policies to control access to this resource.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=200)]
public Dictionary<string, string> Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the CreateMembership operation.
/// </summary>
public partial class CreateMembershipResponse : AmazonWebServiceResponse
{
private Membership _membership;
/// <summary>
/// Gets and sets the property Membership.
/// <para>
/// The membership that was created.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public Membership Membership
{
get { return this._membership; }
set { this._membership = value; }
}
// Check to see if Membership property is set
internal bool IsSetMembership()
{
return this._membership != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// The settings for client-side encryption for cryptographic computing.
/// </summary>
public partial class DataEncryptionMetadata
{
private bool? _allowCleartext;
private bool? _allowDuplicates;
private bool? _allowJoinsOnColumnsWithDifferentNames;
private bool? _preserveNulls;
/// <summary>
/// Gets and sets the property AllowCleartext.
/// <para>
/// Indicates whether encrypted tables can contain cleartext data (true) or are to cryptographically
/// process every column (false).
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public bool AllowCleartext
{
get { return this._allowCleartext.GetValueOrDefault(); }
set { this._allowCleartext = value; }
}
// Check to see if AllowCleartext property is set
internal bool IsSetAllowCleartext()
{
return this._allowCleartext.HasValue;
}
/// <summary>
/// Gets and sets the property AllowDuplicates.
/// <para>
/// Indicates whether Fingerprint columns can contain duplicate entries (true) or are
/// to contain only non-repeated values (false).
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public bool AllowDuplicates
{
get { return this._allowDuplicates.GetValueOrDefault(); }
set { this._allowDuplicates = value; }
}
// Check to see if AllowDuplicates property is set
internal bool IsSetAllowDuplicates()
{
return this._allowDuplicates.HasValue;
}
/// <summary>
/// Gets and sets the property AllowJoinsOnColumnsWithDifferentNames.
/// <para>
/// Indicates whether Fingerprint columns can be joined on any other Fingerprint column
/// with a different name (true) or can only be joined on Fingerprint columns of the same
/// name (false).
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public bool AllowJoinsOnColumnsWithDifferentNames
{
get { return this._allowJoinsOnColumnsWithDifferentNames.GetValueOrDefault(); }
set { this._allowJoinsOnColumnsWithDifferentNames = value; }
}
// Check to see if AllowJoinsOnColumnsWithDifferentNames property is set
internal bool IsSetAllowJoinsOnColumnsWithDifferentNames()
{
return this._allowJoinsOnColumnsWithDifferentNames.HasValue;
}
/// <summary>
/// Gets and sets the property PreserveNulls.
/// <para>
/// Indicates whether NULL values are to be copied as NULL to encrypted tables (true)
/// or cryptographically processed (false).
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public bool PreserveNulls
{
get { return this._preserveNulls.GetValueOrDefault(); }
set { this._preserveNulls = value; }
}
// Check to see if PreserveNulls property is set
internal bool IsSetPreserveNulls()
{
return this._preserveNulls.HasValue;
}
}
}
| 123 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the DeleteCollaboration operation.
/// Deletes a collaboration. It can only be called by the collaboration owner.
/// </summary>
public partial class DeleteCollaborationRequest : AmazonCleanRoomsRequest
{
private string _collaborationIdentifier;
/// <summary>
/// Gets and sets the property CollaborationIdentifier.
/// <para>
/// The identifier for the collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string CollaborationIdentifier
{
get { return this._collaborationIdentifier; }
set { this._collaborationIdentifier = value; }
}
// Check to see if CollaborationIdentifier property is set
internal bool IsSetCollaborationIdentifier()
{
return this._collaborationIdentifier != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the DeleteCollaboration operation.
/// </summary>
public partial class DeleteCollaborationResponse : 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the DeleteConfiguredTableAnalysisRule operation.
/// Deletes a configured table analysis rule.
/// </summary>
public partial class DeleteConfiguredTableAnalysisRuleRequest : AmazonCleanRoomsRequest
{
private ConfiguredTableAnalysisRuleType _analysisRuleType;
private string _configuredTableIdentifier;
/// <summary>
/// Gets and sets the property AnalysisRuleType.
/// <para>
/// The analysis rule type to be deleted. Configured table analysis rules are uniquely
/// identified by their configured table identifier and analysis rule type.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ConfiguredTableAnalysisRuleType AnalysisRuleType
{
get { return this._analysisRuleType; }
set { this._analysisRuleType = value; }
}
// Check to see if AnalysisRuleType property is set
internal bool IsSetAnalysisRuleType()
{
return this._analysisRuleType != null;
}
/// <summary>
/// Gets and sets the property ConfiguredTableIdentifier.
/// <para>
/// The unique identifier for the configured table that the analysis rule applies to.
/// Currently accepts the configured table ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string ConfiguredTableIdentifier
{
get { return this._configuredTableIdentifier; }
set { this._configuredTableIdentifier = value; }
}
// Check to see if ConfiguredTableIdentifier property is set
internal bool IsSetConfiguredTableIdentifier()
{
return this._configuredTableIdentifier != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// An empty response that indicates a successful delete.
/// </summary>
public partial class DeleteConfiguredTableAnalysisRuleResponse : 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the DeleteConfiguredTableAssociation operation.
/// Deletes a configured table association.
/// </summary>
public partial class DeleteConfiguredTableAssociationRequest : AmazonCleanRoomsRequest
{
private string _configuredTableAssociationIdentifier;
private string _membershipIdentifier;
/// <summary>
/// Gets and sets the property ConfiguredTableAssociationIdentifier.
/// <para>
/// The unique ID for the configured table association to be deleted. Currently accepts
/// the configured table ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string ConfiguredTableAssociationIdentifier
{
get { return this._configuredTableAssociationIdentifier; }
set { this._configuredTableAssociationIdentifier = value; }
}
// Check to see if ConfiguredTableAssociationIdentifier property is set
internal bool IsSetConfiguredTableAssociationIdentifier()
{
return this._configuredTableAssociationIdentifier != null;
}
/// <summary>
/// Gets and sets the property MembershipIdentifier.
/// <para>
/// A unique identifier for the membership that the configured table association belongs
/// to. Currently accepts the membership ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string MembershipIdentifier
{
get { return this._membershipIdentifier; }
set { this._membershipIdentifier = value; }
}
// Check to see if MembershipIdentifier property is set
internal bool IsSetMembershipIdentifier()
{
return this._membershipIdentifier != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the DeleteConfiguredTableAssociation operation.
/// </summary>
public partial class DeleteConfiguredTableAssociationResponse : 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the DeleteConfiguredTable operation.
/// Deletes a configured table.
/// </summary>
public partial class DeleteConfiguredTableRequest : AmazonCleanRoomsRequest
{
private string _configuredTableIdentifier;
/// <summary>
/// Gets and sets the property ConfiguredTableIdentifier.
/// <para>
/// The unique ID for the configured table to delete.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string ConfiguredTableIdentifier
{
get { return this._configuredTableIdentifier; }
set { this._configuredTableIdentifier = value; }
}
// Check to see if ConfiguredTableIdentifier property is set
internal bool IsSetConfiguredTableIdentifier()
{
return this._configuredTableIdentifier != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// The empty output for a successful deletion.
/// </summary>
public partial class DeleteConfiguredTableResponse : 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the DeleteMember operation.
/// Removes the specified member from a collaboration. The removed member is placed in
/// the Removed status and can't interact with the collaboration. The removed member's
/// data is inaccessible to active members of the collaboration.
/// </summary>
public partial class DeleteMemberRequest : AmazonCleanRoomsRequest
{
private string _accountId;
private string _collaborationIdentifier;
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The account ID of the member to remove.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=12, Max=12)]
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property CollaborationIdentifier.
/// <para>
/// The unique identifier for the associated collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string CollaborationIdentifier
{
get { return this._collaborationIdentifier; }
set { this._collaborationIdentifier = value; }
}
// Check to see if CollaborationIdentifier property is set
internal bool IsSetCollaborationIdentifier()
{
return this._collaborationIdentifier != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the DeleteMember operation.
/// </summary>
public partial class DeleteMemberResponse : 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the DeleteMembership operation.
/// Deletes a specified membership. All resources under a membership must be deleted.
/// </summary>
public partial class DeleteMembershipRequest : AmazonCleanRoomsRequest
{
private string _membershipIdentifier;
/// <summary>
/// Gets and sets the property MembershipIdentifier.
/// <para>
/// The identifier for a membership resource.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string MembershipIdentifier
{
get { return this._membershipIdentifier; }
set { this._membershipIdentifier = value; }
}
// Check to see if MembershipIdentifier property is set
internal bool IsSetMembershipIdentifier()
{
return this._membershipIdentifier != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the DeleteMembership operation.
/// </summary>
public partial class DeleteMembershipResponse : 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the GetCollaboration operation.
/// Returns metadata about a collaboration.
/// </summary>
public partial class GetCollaborationRequest : AmazonCleanRoomsRequest
{
private string _collaborationIdentifier;
/// <summary>
/// Gets and sets the property CollaborationIdentifier.
/// <para>
/// The identifier for the collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string CollaborationIdentifier
{
get { return this._collaborationIdentifier; }
set { this._collaborationIdentifier = value; }
}
// Check to see if CollaborationIdentifier property is set
internal bool IsSetCollaborationIdentifier()
{
return this._collaborationIdentifier != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the GetCollaboration operation.
/// </summary>
public partial class GetCollaborationResponse : AmazonWebServiceResponse
{
private Collaboration _collaboration;
/// <summary>
/// Gets and sets the property Collaboration.
/// <para>
/// The entire collaboration for this identifier.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public Collaboration Collaboration
{
get { return this._collaboration; }
set { this._collaboration = value; }
}
// Check to see if Collaboration property is set
internal bool IsSetCollaboration()
{
return this._collaboration != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the GetConfiguredTableAnalysisRule operation.
/// Retrieves a configured table analysis rule.
/// </summary>
public partial class GetConfiguredTableAnalysisRuleRequest : AmazonCleanRoomsRequest
{
private ConfiguredTableAnalysisRuleType _analysisRuleType;
private string _configuredTableIdentifier;
/// <summary>
/// Gets and sets the property AnalysisRuleType.
/// <para>
/// The analysis rule to be retrieved. Configured table analysis rules are uniquely identified
/// by their configured table identifier and analysis rule type.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ConfiguredTableAnalysisRuleType AnalysisRuleType
{
get { return this._analysisRuleType; }
set { this._analysisRuleType = value; }
}
// Check to see if AnalysisRuleType property is set
internal bool IsSetAnalysisRuleType()
{
return this._analysisRuleType != null;
}
/// <summary>
/// Gets and sets the property ConfiguredTableIdentifier.
/// <para>
/// The unique identifier for the configured table to retrieve. Currently accepts the
/// configured table ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string ConfiguredTableIdentifier
{
get { return this._configuredTableIdentifier; }
set { this._configuredTableIdentifier = value; }
}
// Check to see if ConfiguredTableIdentifier property is set
internal bool IsSetConfiguredTableIdentifier()
{
return this._configuredTableIdentifier != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the GetConfiguredTableAnalysisRule operation.
/// </summary>
public partial class GetConfiguredTableAnalysisRuleResponse : AmazonWebServiceResponse
{
private ConfiguredTableAnalysisRule _analysisRule;
/// <summary>
/// Gets and sets the property AnalysisRule.
/// <para>
/// The entire analysis rule output.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ConfiguredTableAnalysisRule AnalysisRule
{
get { return this._analysisRule; }
set { this._analysisRule = value; }
}
// Check to see if AnalysisRule property is set
internal bool IsSetAnalysisRule()
{
return this._analysisRule != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the GetConfiguredTableAssociation operation.
/// Retrieves a configured table association.
/// </summary>
public partial class GetConfiguredTableAssociationRequest : AmazonCleanRoomsRequest
{
private string _configuredTableAssociationIdentifier;
private string _membershipIdentifier;
/// <summary>
/// Gets and sets the property ConfiguredTableAssociationIdentifier.
/// <para>
/// The unique ID for the configured table association to retrieve. Currently accepts
/// the configured table ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string ConfiguredTableAssociationIdentifier
{
get { return this._configuredTableAssociationIdentifier; }
set { this._configuredTableAssociationIdentifier = value; }
}
// Check to see if ConfiguredTableAssociationIdentifier property is set
internal bool IsSetConfiguredTableAssociationIdentifier()
{
return this._configuredTableAssociationIdentifier != null;
}
/// <summary>
/// Gets and sets the property MembershipIdentifier.
/// <para>
/// A unique identifier for the membership that the configured table association belongs
/// to. Currently accepts the membership ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string MembershipIdentifier
{
get { return this._membershipIdentifier; }
set { this._membershipIdentifier = value; }
}
// Check to see if MembershipIdentifier property is set
internal bool IsSetMembershipIdentifier()
{
return this._membershipIdentifier != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the GetConfiguredTableAssociation operation.
/// </summary>
public partial class GetConfiguredTableAssociationResponse : AmazonWebServiceResponse
{
private ConfiguredTableAssociation _configuredTableAssociation;
/// <summary>
/// Gets and sets the property ConfiguredTableAssociation.
/// <para>
/// The entire configured table association object.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ConfiguredTableAssociation ConfiguredTableAssociation
{
get { return this._configuredTableAssociation; }
set { this._configuredTableAssociation = value; }
}
// Check to see if ConfiguredTableAssociation property is set
internal bool IsSetConfiguredTableAssociation()
{
return this._configuredTableAssociation != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the GetConfiguredTable operation.
/// Retrieves a configured table.
/// </summary>
public partial class GetConfiguredTableRequest : AmazonCleanRoomsRequest
{
private string _configuredTableIdentifier;
/// <summary>
/// Gets and sets the property ConfiguredTableIdentifier.
/// <para>
/// The unique ID for the configured table to retrieve.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string ConfiguredTableIdentifier
{
get { return this._configuredTableIdentifier; }
set { this._configuredTableIdentifier = value; }
}
// Check to see if ConfiguredTableIdentifier property is set
internal bool IsSetConfiguredTableIdentifier()
{
return this._configuredTableIdentifier != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the GetConfiguredTable operation.
/// </summary>
public partial class GetConfiguredTableResponse : AmazonWebServiceResponse
{
private ConfiguredTable _configuredTable;
/// <summary>
/// Gets and sets the property ConfiguredTable.
/// <para>
/// The retrieved configured table.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ConfiguredTable ConfiguredTable
{
get { return this._configuredTable; }
set { this._configuredTable = value; }
}
// Check to see if ConfiguredTable property is set
internal bool IsSetConfiguredTable()
{
return this._configuredTable != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the GetMembership operation.
/// Retrieves a specified membership for an identifier.
/// </summary>
public partial class GetMembershipRequest : AmazonCleanRoomsRequest
{
private string _membershipIdentifier;
/// <summary>
/// Gets and sets the property MembershipIdentifier.
/// <para>
/// The identifier for a membership resource.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string MembershipIdentifier
{
get { return this._membershipIdentifier; }
set { this._membershipIdentifier = value; }
}
// Check to see if MembershipIdentifier property is set
internal bool IsSetMembershipIdentifier()
{
return this._membershipIdentifier != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the GetMembership operation.
/// </summary>
public partial class GetMembershipResponse : AmazonWebServiceResponse
{
private Membership _membership;
/// <summary>
/// Gets and sets the property Membership.
/// <para>
/// The membership retrieved for the provided identifier.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public Membership Membership
{
get { return this._membership; }
set { this._membership = value; }
}
// Check to see if Membership property is set
internal bool IsSetMembership()
{
return this._membership != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the GetProtectedQuery operation.
/// Returns query processing metadata.
/// </summary>
public partial class GetProtectedQueryRequest : AmazonCleanRoomsRequest
{
private string _membershipIdentifier;
private string _protectedQueryIdentifier;
/// <summary>
/// Gets and sets the property MembershipIdentifier.
/// <para>
/// The identifier for a membership in a protected query instance.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string MembershipIdentifier
{
get { return this._membershipIdentifier; }
set { this._membershipIdentifier = value; }
}
// Check to see if MembershipIdentifier property is set
internal bool IsSetMembershipIdentifier()
{
return this._membershipIdentifier != null;
}
/// <summary>
/// Gets and sets the property ProtectedQueryIdentifier.
/// <para>
/// The identifier for a protected query instance.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=36)]
public string ProtectedQueryIdentifier
{
get { return this._protectedQueryIdentifier; }
set { this._protectedQueryIdentifier = value; }
}
// Check to see if ProtectedQueryIdentifier property is set
internal bool IsSetProtectedQueryIdentifier()
{
return this._protectedQueryIdentifier != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the GetProtectedQuery operation.
/// </summary>
public partial class GetProtectedQueryResponse : AmazonWebServiceResponse
{
private ProtectedQuery _protectedQuery;
/// <summary>
/// Gets and sets the property ProtectedQuery.
/// <para>
/// The query processing metadata.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ProtectedQuery ProtectedQuery
{
get { return this._protectedQuery; }
set { this._protectedQuery = value; }
}
// Check to see if ProtectedQuery property is set
internal bool IsSetProtectedQuery()
{
return this._protectedQuery != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the GetSchemaAnalysisRule operation.
/// Retrieves a schema analysis rule.
/// </summary>
public partial class GetSchemaAnalysisRuleRequest : AmazonCleanRoomsRequest
{
private string _collaborationIdentifier;
private string _name;
private AnalysisRuleType _type;
/// <summary>
/// Gets and sets the property CollaborationIdentifier.
/// <para>
/// A unique identifier for the collaboration that the schema belongs to. Currently accepts
/// a collaboration ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string CollaborationIdentifier
{
get { return this._collaborationIdentifier; }
set { this._collaborationIdentifier = value; }
}
// Check to see if CollaborationIdentifier property is set
internal bool IsSetCollaborationIdentifier()
{
return this._collaborationIdentifier != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The name of the schema to retrieve the analysis rule for.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=128)]
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 Type.
/// <para>
/// The type of the schema analysis rule to retrieve. Schema analysis rules are uniquely
/// identified by a combination of the collaboration, the schema name, and their type.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public AnalysisRuleType Type
{
get { return this._type; }
set { this._type = value; }
}
// Check to see if Type property is set
internal bool IsSetType()
{
return this._type != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the GetSchemaAnalysisRule operation.
/// </summary>
public partial class GetSchemaAnalysisRuleResponse : AmazonWebServiceResponse
{
private AnalysisRule _analysisRule;
/// <summary>
/// Gets and sets the property AnalysisRule.
/// <para>
/// A specification about how data from the configured table can be used.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public AnalysisRule AnalysisRule
{
get { return this._analysisRule; }
set { this._analysisRule = value; }
}
// Check to see if AnalysisRule property is set
internal bool IsSetAnalysisRule()
{
return this._analysisRule != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the GetSchema operation.
/// Retrieves the schema for a relation within a collaboration.
/// </summary>
public partial class GetSchemaRequest : AmazonCleanRoomsRequest
{
private string _collaborationIdentifier;
private string _name;
/// <summary>
/// Gets and sets the property CollaborationIdentifier.
/// <para>
/// A unique identifier for the collaboration that the schema belongs to. Currently accepts
/// a collaboration ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string CollaborationIdentifier
{
get { return this._collaborationIdentifier; }
set { this._collaborationIdentifier = value; }
}
// Check to see if CollaborationIdentifier property is set
internal bool IsSetCollaborationIdentifier()
{
return this._collaborationIdentifier != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The name of the relation to retrieve the schema for.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=128)]
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;
}
}
}
| 80 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the GetSchema operation.
/// </summary>
public partial class GetSchemaResponse : AmazonWebServiceResponse
{
private Schema _schema;
/// <summary>
/// Gets and sets the property Schema.
/// <para>
/// The entire schema object.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public Schema Schema
{
get { return this._schema; }
set { this._schema = value; }
}
// Check to see if Schema property is set
internal bool IsSetSchema()
{
return this._schema != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// A reference to a table within an Glue data catalog.
/// </summary>
public partial class GlueTableReference
{
private string _databaseName;
private string _tableName;
/// <summary>
/// Gets and sets the property DatabaseName.
/// <para>
/// The name of the database the Glue table belongs to.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=128)]
public string DatabaseName
{
get { return this._databaseName; }
set { this._databaseName = value; }
}
// Check to see if DatabaseName property is set
internal bool IsSetDatabaseName()
{
return this._databaseName != null;
}
/// <summary>
/// Gets and sets the property TableName.
/// <para>
/// The name of the Glue table.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=128)]
public string TableName
{
get { return this._tableName; }
set { this._tableName = value; }
}
// Check to see if TableName property is set
internal bool IsSetTableName()
{
return this._tableName != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Unexpected error during processing of request.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class InternalServerException : AmazonCleanRoomsException
{
/// <summary>
/// Constructs a new InternalServerException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public InternalServerException(string message)
: base(message) {}
/// <summary>
/// Construct instance of InternalServerException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public InternalServerException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of InternalServerException
/// </summary>
/// <param name="innerException"></param>
public InternalServerException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of InternalServerException
/// </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 InternalServerException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of InternalServerException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public InternalServerException(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 InternalServerException 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 InternalServerException(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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the ListCollaborations operation.
/// Lists collaborations the caller owns, is active in, or has been invited to.
/// </summary>
public partial class ListCollaborationsRequest : AmazonCleanRoomsRequest
{
private int? _maxResults;
private FilterableMemberStatus _memberStatus;
private string _nextToken;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum size of the results that is returned per call. Service chooses a default
/// if it has not been set. Service may return a nextToken even if the maximum results
/// has not been met.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
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 MemberStatus.
/// <para>
/// The caller's status in a collaboration.
/// </para>
/// </summary>
public FilterableMemberStatus MemberStatus
{
get { return this._memberStatus; }
set { this._memberStatus = value; }
}
// Check to see if MemberStatus property is set
internal bool IsSetMemberStatus()
{
return this._memberStatus != null;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token value retrieved from a previous call to access the next page of results.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=10240)]
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;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the ListCollaborations operation.
/// </summary>
public partial class ListCollaborationsResponse : AmazonWebServiceResponse
{
private List<CollaborationSummary> _collaborationList = new List<CollaborationSummary>();
private string _nextToken;
/// <summary>
/// Gets and sets the property CollaborationList.
/// <para>
/// The list of collaborations.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<CollaborationSummary> CollaborationList
{
get { return this._collaborationList; }
set { this._collaborationList = value; }
}
// Check to see if CollaborationList property is set
internal bool IsSetCollaborationList()
{
return this._collaborationList != null && this._collaborationList.Count > 0;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token value retrieved from a previous call to access the next page of results.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=10240)]
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;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the ListConfiguredTableAssociations operation.
/// Lists configured table associations for a membership.
/// </summary>
public partial class ListConfiguredTableAssociationsRequest : AmazonCleanRoomsRequest
{
private int? _maxResults;
private string _membershipIdentifier;
private string _nextToken;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum size of the results that is returned per call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
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 MembershipIdentifier.
/// <para>
/// A unique identifier for the membership to list configured table associations for.
/// Currently accepts the membership ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string MembershipIdentifier
{
get { return this._membershipIdentifier; }
set { this._membershipIdentifier = value; }
}
// Check to see if MembershipIdentifier property is set
internal bool IsSetMembershipIdentifier()
{
return this._membershipIdentifier != null;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token value retrieved from a previous call to access the next page of results.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=10240)]
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;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the ListConfiguredTableAssociations operation.
/// </summary>
public partial class ListConfiguredTableAssociationsResponse : AmazonWebServiceResponse
{
private List<ConfiguredTableAssociationSummary> _configuredTableAssociationSummaries = new List<ConfiguredTableAssociationSummary>();
private string _nextToken;
/// <summary>
/// Gets and sets the property ConfiguredTableAssociationSummaries.
/// <para>
/// The retrieved list of configured table associations.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<ConfiguredTableAssociationSummary> ConfiguredTableAssociationSummaries
{
get { return this._configuredTableAssociationSummaries; }
set { this._configuredTableAssociationSummaries = value; }
}
// Check to see if ConfiguredTableAssociationSummaries property is set
internal bool IsSetConfiguredTableAssociationSummaries()
{
return this._configuredTableAssociationSummaries != null && this._configuredTableAssociationSummaries.Count > 0;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token value retrieved from a previous call to access the next page of results.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=10240)]
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;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the ListConfiguredTables operation.
/// Lists configured tables.
/// </summary>
public partial class ListConfiguredTablesRequest : AmazonCleanRoomsRequest
{
private int? _maxResults;
private string _nextToken;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum size of the results that is returned per call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
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 token value retrieved from a previous call to access the next page of results.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=10240)]
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;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the ListConfiguredTables operation.
/// </summary>
public partial class ListConfiguredTablesResponse : AmazonWebServiceResponse
{
private List<ConfiguredTableSummary> _configuredTableSummaries = new List<ConfiguredTableSummary>();
private string _nextToken;
/// <summary>
/// Gets and sets the property ConfiguredTableSummaries.
/// <para>
/// The configured tables listed by the request.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<ConfiguredTableSummary> ConfiguredTableSummaries
{
get { return this._configuredTableSummaries; }
set { this._configuredTableSummaries = value; }
}
// Check to see if ConfiguredTableSummaries property is set
internal bool IsSetConfiguredTableSummaries()
{
return this._configuredTableSummaries != null && this._configuredTableSummaries.Count > 0;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token value retrieved from a previous call to access the next page of results.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=10240)]
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;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the ListMemberships operation.
/// Lists all memberships resources within the caller's account.
/// </summary>
public partial class ListMembershipsRequest : AmazonCleanRoomsRequest
{
private int? _maxResults;
private string _nextToken;
private MembershipStatus _status;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum size of the results that is returned per call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
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 token value retrieved from a previous call to access the next page of results.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=10240)]
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 Status.
/// <para>
/// A filter which will return only memberships in the specified status.
/// </para>
/// </summary>
public MembershipStatus Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the ListMemberships operation.
/// </summary>
public partial class ListMembershipsResponse : AmazonWebServiceResponse
{
private List<MembershipSummary> _membershipSummaries = new List<MembershipSummary>();
private string _nextToken;
/// <summary>
/// Gets and sets the property MembershipSummaries.
/// <para>
/// The list of memberships returned from the ListMemberships operation.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<MembershipSummary> MembershipSummaries
{
get { return this._membershipSummaries; }
set { this._membershipSummaries = value; }
}
// Check to see if MembershipSummaries property is set
internal bool IsSetMembershipSummaries()
{
return this._membershipSummaries != null && this._membershipSummaries.Count > 0;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token value retrieved from a previous call to access the next page of results.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=10240)]
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;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the ListMembers operation.
/// Lists all members within a collaboration.
/// </summary>
public partial class ListMembersRequest : AmazonCleanRoomsRequest
{
private string _collaborationIdentifier;
private int? _maxResults;
private string _nextToken;
/// <summary>
/// Gets and sets the property CollaborationIdentifier.
/// <para>
/// The identifier of the collaboration in which the members are listed.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string CollaborationIdentifier
{
get { return this._collaborationIdentifier; }
set { this._collaborationIdentifier = value; }
}
// Check to see if CollaborationIdentifier property is set
internal bool IsSetCollaborationIdentifier()
{
return this._collaborationIdentifier != null;
}
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum size of the results that is returned per call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
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 token value retrieved from a previous call to access the next page of results.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=10240)]
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;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the ListMembers operation.
/// </summary>
public partial class ListMembersResponse : AmazonWebServiceResponse
{
private List<MemberSummary> _memberSummaries = new List<MemberSummary>();
private string _nextToken;
/// <summary>
/// Gets and sets the property MemberSummaries.
/// <para>
/// The list of members returned by the ListMembers operation.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<MemberSummary> MemberSummaries
{
get { return this._memberSummaries; }
set { this._memberSummaries = value; }
}
// Check to see if MemberSummaries property is set
internal bool IsSetMemberSummaries()
{
return this._memberSummaries != null && this._memberSummaries.Count > 0;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token value retrieved from a previous call to access the next page of results.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=10240)]
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;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the ListProtectedQueries operation.
/// Lists protected queries, sorted by the most recent query.
/// </summary>
public partial class ListProtectedQueriesRequest : AmazonCleanRoomsRequest
{
private int? _maxResults;
private string _membershipIdentifier;
private string _nextToken;
private ProtectedQueryStatus _status;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum size of the results that is returned per call. Service chooses a default
/// if it has not been set. Service can return a nextToken even if the maximum results
/// has not been met.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
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 MembershipIdentifier.
/// <para>
/// The identifier for the membership in the collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string MembershipIdentifier
{
get { return this._membershipIdentifier; }
set { this._membershipIdentifier = value; }
}
// Check to see if MembershipIdentifier property is set
internal bool IsSetMembershipIdentifier()
{
return this._membershipIdentifier != null;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token value retrieved from a previous call to access the next page of results.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=10240)]
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 Status.
/// <para>
/// A filter on the status of the protected query.
/// </para>
/// </summary>
public ProtectedQueryStatus Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the ListProtectedQueries operation.
/// </summary>
public partial class ListProtectedQueriesResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<ProtectedQuerySummary> _protectedQueries = new List<ProtectedQuerySummary>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token value retrieved from a previous call to access the next page of results.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=10240)]
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 ProtectedQueries.
/// <para>
/// A list of protected queries.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<ProtectedQuerySummary> ProtectedQueries
{
get { return this._protectedQueries; }
set { this._protectedQueries = value; }
}
// Check to see if ProtectedQueries property is set
internal bool IsSetProtectedQueries()
{
return this._protectedQueries != null && this._protectedQueries.Count > 0;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the ListSchemas operation.
/// Lists the schemas for relations within a collaboration.
/// </summary>
public partial class ListSchemasRequest : AmazonCleanRoomsRequest
{
private string _collaborationIdentifier;
private int? _maxResults;
private string _nextToken;
private SchemaType _schemaType;
/// <summary>
/// Gets and sets the property CollaborationIdentifier.
/// <para>
/// A unique identifier for the collaboration that the schema belongs to. Currently accepts
/// a collaboration ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string CollaborationIdentifier
{
get { return this._collaborationIdentifier; }
set { this._collaborationIdentifier = value; }
}
// Check to see if CollaborationIdentifier property is set
internal bool IsSetCollaborationIdentifier()
{
return this._collaborationIdentifier != null;
}
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum size of the results that is returned per call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
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 token value retrieved from a previous call to access the next page of results.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=10240)]
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 SchemaType.
/// <para>
/// If present, filter schemas by schema type. The only valid schema type is currently
/// `TABLE`.
/// </para>
/// </summary>
public SchemaType SchemaType
{
get { return this._schemaType; }
set { this._schemaType = value; }
}
// Check to see if SchemaType property is set
internal bool IsSetSchemaType()
{
return this._schemaType != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the ListSchemas operation.
/// </summary>
public partial class ListSchemasResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<SchemaSummary> _schemaSummaries = new List<SchemaSummary>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token value retrieved from a previous call to access the next page of results.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=10240)]
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 SchemaSummaries.
/// <para>
/// The retrieved list of schemas.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<SchemaSummary> SchemaSummaries
{
get { return this._schemaSummaries; }
set { this._schemaSummaries = value; }
}
// Check to see if SchemaSummaries property is set
internal bool IsSetSchemaSummaries()
{
return this._schemaSummaries != null && this._schemaSummaries.Count > 0;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Container for the parameters to the ListTagsForResource operation.
/// Lists all of the tags that have been added to a resource.
/// </summary>
public partial class ListTagsForResourceRequest : AmazonCleanRoomsRequest
{
private string _resourceArn;
/// <summary>
/// Gets and sets the property ResourceArn.
/// <para>
/// The Amazon Resource Name (ARN) associated with the resource you want to list tags
/// on.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string ResourceArn
{
get { return this._resourceArn; }
set { this._resourceArn = value; }
}
// Check to see if ResourceArn property is set
internal bool IsSetResourceArn()
{
return this._resourceArn != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// This is the response object from the ListTagsForResource operation.
/// </summary>
public partial class ListTagsForResourceResponse : AmazonWebServiceResponse
{
private Dictionary<string, string> _tags = new Dictionary<string, string>();
/// <summary>
/// Gets and sets the property Tags.
/// <para>
/// A map of objects specifying each key name and value.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=200)]
public Dictionary<string, string> Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// The membership object.
/// </summary>
public partial class Membership
{
private string _arn;
private string _collaborationArn;
private string _collaborationCreatorAccountId;
private string _collaborationCreatorDisplayName;
private string _collaborationId;
private string _collaborationName;
private DateTime? _createTime;
private string _id;
private List<string> _memberAbilities = new List<string>();
private MembershipQueryLogStatus _queryLogStatus;
private MembershipStatus _status;
private DateTime? _updateTime;
/// <summary>
/// Gets and sets the property Arn.
/// <para>
/// The unique ARN for the membership.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
/// <summary>
/// Gets and sets the property CollaborationArn.
/// <para>
/// The unique ARN for the membership's associated collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string CollaborationArn
{
get { return this._collaborationArn; }
set { this._collaborationArn = value; }
}
// Check to see if CollaborationArn property is set
internal bool IsSetCollaborationArn()
{
return this._collaborationArn != null;
}
/// <summary>
/// Gets and sets the property CollaborationCreatorAccountId.
/// <para>
/// The identifier used to reference members of the collaboration. Currently only supports
/// Amazon Web Services account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=12, Max=12)]
public string CollaborationCreatorAccountId
{
get { return this._collaborationCreatorAccountId; }
set { this._collaborationCreatorAccountId = value; }
}
// Check to see if CollaborationCreatorAccountId property is set
internal bool IsSetCollaborationCreatorAccountId()
{
return this._collaborationCreatorAccountId != null;
}
/// <summary>
/// Gets and sets the property CollaborationCreatorDisplayName.
/// <para>
/// The display name of the collaboration creator.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
public string CollaborationCreatorDisplayName
{
get { return this._collaborationCreatorDisplayName; }
set { this._collaborationCreatorDisplayName = value; }
}
// Check to see if CollaborationCreatorDisplayName property is set
internal bool IsSetCollaborationCreatorDisplayName()
{
return this._collaborationCreatorDisplayName != null;
}
/// <summary>
/// Gets and sets the property CollaborationId.
/// <para>
/// The unique ID for the membership's collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string CollaborationId
{
get { return this._collaborationId; }
set { this._collaborationId = value; }
}
// Check to see if CollaborationId property is set
internal bool IsSetCollaborationId()
{
return this._collaborationId != null;
}
/// <summary>
/// Gets and sets the property CollaborationName.
/// <para>
/// The name of the membership's collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
public string CollaborationName
{
get { return this._collaborationName; }
set { this._collaborationName = value; }
}
// Check to see if CollaborationName property is set
internal bool IsSetCollaborationName()
{
return this._collaborationName != null;
}
/// <summary>
/// Gets and sets the property CreateTime.
/// <para>
/// The time when the membership was created.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime CreateTime
{
get { return this._createTime.GetValueOrDefault(); }
set { this._createTime = value; }
}
// Check to see if CreateTime property is set
internal bool IsSetCreateTime()
{
return this._createTime.HasValue;
}
/// <summary>
/// Gets and sets the property Id.
/// <para>
/// The unique ID of the membership.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string Id
{
get { return this._id; }
set { this._id = value; }
}
// Check to see if Id property is set
internal bool IsSetId()
{
return this._id != null;
}
/// <summary>
/// Gets and sets the property MemberAbilities.
/// <para>
/// The abilities granted to the collaboration member.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<string> MemberAbilities
{
get { return this._memberAbilities; }
set { this._memberAbilities = value; }
}
// Check to see if MemberAbilities property is set
internal bool IsSetMemberAbilities()
{
return this._memberAbilities != null && this._memberAbilities.Count > 0;
}
/// <summary>
/// Gets and sets the property QueryLogStatus.
/// <para>
/// An indicator as to whether query logging has been enabled or disabled for the collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public MembershipQueryLogStatus QueryLogStatus
{
get { return this._queryLogStatus; }
set { this._queryLogStatus = value; }
}
// Check to see if QueryLogStatus property is set
internal bool IsSetQueryLogStatus()
{
return this._queryLogStatus != null;
}
/// <summary>
/// Gets and sets the property Status.
/// <para>
/// The status of the membership. Valid values are `ACTIVE`, `REMOVED`, and `COLLABORATION_DELETED`.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public MembershipStatus Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != null;
}
/// <summary>
/// Gets and sets the property UpdateTime.
/// <para>
/// The time the membership metadata was last updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime UpdateTime
{
get { return this._updateTime.GetValueOrDefault(); }
set { this._updateTime = value; }
}
// Check to see if UpdateTime property is set
internal bool IsSetUpdateTime()
{
return this._updateTime.HasValue;
}
}
}
| 279 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// The membership object listed by the request.
/// </summary>
public partial class MembershipSummary
{
private string _arn;
private string _collaborationArn;
private string _collaborationCreatorAccountId;
private string _collaborationCreatorDisplayName;
private string _collaborationId;
private string _collaborationName;
private DateTime? _createTime;
private string _id;
private List<string> _memberAbilities = new List<string>();
private MembershipStatus _status;
private DateTime? _updateTime;
/// <summary>
/// Gets and sets the property Arn.
/// <para>
/// The unique ARN for the membership.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
/// <summary>
/// Gets and sets the property CollaborationArn.
/// <para>
/// The unique ARN for the membership's associated collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string CollaborationArn
{
get { return this._collaborationArn; }
set { this._collaborationArn = value; }
}
// Check to see if CollaborationArn property is set
internal bool IsSetCollaborationArn()
{
return this._collaborationArn != null;
}
/// <summary>
/// Gets and sets the property CollaborationCreatorAccountId.
/// <para>
/// The identifier of the Amazon Web Services principal that created the collaboration.
/// Currently only supports Amazon Web Services account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=12, Max=12)]
public string CollaborationCreatorAccountId
{
get { return this._collaborationCreatorAccountId; }
set { this._collaborationCreatorAccountId = value; }
}
// Check to see if CollaborationCreatorAccountId property is set
internal bool IsSetCollaborationCreatorAccountId()
{
return this._collaborationCreatorAccountId != null;
}
/// <summary>
/// Gets and sets the property CollaborationCreatorDisplayName.
/// <para>
/// The display name of the collaboration creator.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
public string CollaborationCreatorDisplayName
{
get { return this._collaborationCreatorDisplayName; }
set { this._collaborationCreatorDisplayName = value; }
}
// Check to see if CollaborationCreatorDisplayName property is set
internal bool IsSetCollaborationCreatorDisplayName()
{
return this._collaborationCreatorDisplayName != null;
}
/// <summary>
/// Gets and sets the property CollaborationId.
/// <para>
/// The unique ID for the membership's collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string CollaborationId
{
get { return this._collaborationId; }
set { this._collaborationId = value; }
}
// Check to see if CollaborationId property is set
internal bool IsSetCollaborationId()
{
return this._collaborationId != null;
}
/// <summary>
/// Gets and sets the property CollaborationName.
/// <para>
/// The name for the membership's collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
public string CollaborationName
{
get { return this._collaborationName; }
set { this._collaborationName = value; }
}
// Check to see if CollaborationName property is set
internal bool IsSetCollaborationName()
{
return this._collaborationName != null;
}
/// <summary>
/// Gets and sets the property CreateTime.
/// <para>
/// The time when the membership was created.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime CreateTime
{
get { return this._createTime.GetValueOrDefault(); }
set { this._createTime = value; }
}
// Check to see if CreateTime property is set
internal bool IsSetCreateTime()
{
return this._createTime.HasValue;
}
/// <summary>
/// Gets and sets the property Id.
/// <para>
/// The unique ID for the membership's collaboration.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string Id
{
get { return this._id; }
set { this._id = value; }
}
// Check to see if Id property is set
internal bool IsSetId()
{
return this._id != null;
}
/// <summary>
/// Gets and sets the property MemberAbilities.
/// <para>
/// The abilities granted to the collaboration member.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<string> MemberAbilities
{
get { return this._memberAbilities; }
set { this._memberAbilities = value; }
}
// Check to see if MemberAbilities property is set
internal bool IsSetMemberAbilities()
{
return this._memberAbilities != null && this._memberAbilities.Count > 0;
}
/// <summary>
/// Gets and sets the property Status.
/// <para>
/// The status of the membership. Valid values are `ACTIVE`, `REMOVED`, and `COLLABORATION_DELETED`.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public MembershipStatus Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != null;
}
/// <summary>
/// Gets and sets the property UpdateTime.
/// <para>
/// The time the membership metadata was last updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime UpdateTime
{
get { return this._updateTime.GetValueOrDefault(); }
set { this._updateTime = value; }
}
// Check to see if UpdateTime property is set
internal bool IsSetUpdateTime()
{
return this._updateTime.HasValue;
}
}
}
| 259 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Basic metadata used to construct a new member.
/// </summary>
public partial class MemberSpecification
{
private string _accountId;
private string _displayName;
private List<string> _memberAbilities = new List<string>();
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The identifier used to reference members of the collaboration. Currently only supports
/// Amazon Web Services account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=12, Max=12)]
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property DisplayName.
/// <para>
/// The member's display name.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
public string DisplayName
{
get { return this._displayName; }
set { this._displayName = value; }
}
// Check to see if DisplayName property is set
internal bool IsSetDisplayName()
{
return this._displayName != null;
}
/// <summary>
/// Gets and sets the property MemberAbilities.
/// <para>
/// The abilities granted to the collaboration member.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<string> MemberAbilities
{
get { return this._memberAbilities; }
set { this._memberAbilities = value; }
}
// Check to see if MemberAbilities property is set
internal bool IsSetMemberAbilities()
{
return this._memberAbilities != null && this._memberAbilities.Count > 0;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// The member object listed by the request.
/// </summary>
public partial class MemberSummary
{
private List<string> _abilities = new List<string>();
private string _accountId;
private DateTime? _createTime;
private string _displayName;
private string _membershipArn;
private string _membershipId;
private MemberStatus _status;
private DateTime? _updateTime;
/// <summary>
/// Gets and sets the property Abilities.
/// <para>
/// The abilities granted to the collaboration member.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public List<string> Abilities
{
get { return this._abilities; }
set { this._abilities = value; }
}
// Check to see if Abilities property is set
internal bool IsSetAbilities()
{
return this._abilities != null && this._abilities.Count > 0;
}
/// <summary>
/// Gets and sets the property AccountId.
/// <para>
/// The identifier used to reference members of the collaboration. Currently only supports
/// Amazon Web Services account ID.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=12, Max=12)]
public string AccountId
{
get { return this._accountId; }
set { this._accountId = value; }
}
// Check to see if AccountId property is set
internal bool IsSetAccountId()
{
return this._accountId != null;
}
/// <summary>
/// Gets and sets the property CreateTime.
/// <para>
/// The time when the member was created.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime CreateTime
{
get { return this._createTime.GetValueOrDefault(); }
set { this._createTime = value; }
}
// Check to see if CreateTime property is set
internal bool IsSetCreateTime()
{
return this._createTime.HasValue;
}
/// <summary>
/// Gets and sets the property DisplayName.
/// <para>
/// The member's display name.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
public string DisplayName
{
get { return this._displayName; }
set { this._displayName = value; }
}
// Check to see if DisplayName property is set
internal bool IsSetDisplayName()
{
return this._displayName != null;
}
/// <summary>
/// Gets and sets the property MembershipArn.
/// <para>
/// The unique ARN for the member's associated membership, if present.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=100)]
public string MembershipArn
{
get { return this._membershipArn; }
set { this._membershipArn = value; }
}
// Check to see if MembershipArn property is set
internal bool IsSetMembershipArn()
{
return this._membershipArn != null;
}
/// <summary>
/// Gets and sets the property MembershipId.
/// <para>
/// The unique ID for the member's associated membership, if present.
/// </para>
/// </summary>
[AWSProperty(Min=36, Max=36)]
public string MembershipId
{
get { return this._membershipId; }
set { this._membershipId = value; }
}
// Check to see if MembershipId property is set
internal bool IsSetMembershipId()
{
return this._membershipId != null;
}
/// <summary>
/// Gets and sets the property Status.
/// <para>
/// The status of the member. Valid values are `INVITED`, `ACTIVE`, `LEFT`, and `REMOVED`.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public MemberStatus Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != null;
}
/// <summary>
/// Gets and sets the property UpdateTime.
/// <para>
/// The time the member metadata was last updated.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime UpdateTime
{
get { return this._updateTime.GetValueOrDefault(); }
set { this._updateTime = value; }
}
// Check to see if UpdateTime property is set
internal bool IsSetUpdateTime()
{
return this._updateTime.HasValue;
}
}
}
| 199 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// The parameters for an Clean Rooms protected query.
/// </summary>
public partial class ProtectedQuery
{
private DateTime? _createTime;
private ProtectedQueryError _error;
private string _id;
private string _membershipArn;
private string _membershipId;
private ProtectedQueryResult _result;
private ProtectedQueryResultConfiguration _resultConfiguration;
private ProtectedQuerySQLParameters _sqlParameters;
private ProtectedQueryStatistics _statistics;
private ProtectedQueryStatus _status;
/// <summary>
/// Gets and sets the property CreateTime.
/// <para>
/// The time at which the protected query was created.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public DateTime CreateTime
{
get { return this._createTime.GetValueOrDefault(); }
set { this._createTime = value; }
}
// Check to see if CreateTime property is set
internal bool IsSetCreateTime()
{
return this._createTime.HasValue;
}
/// <summary>
/// Gets and sets the property Error.
/// <para>
/// An error thrown by the protected query.
/// </para>
/// </summary>
public ProtectedQueryError Error
{
get { return this._error; }
set { this._error = value; }
}
// Check to see if Error property is set
internal bool IsSetError()
{
return this._error != null;
}
/// <summary>
/// Gets and sets the property Id.
/// <para>
/// The identifier for a protected query instance.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string Id
{
get { return this._id; }
set { this._id = value; }
}
// Check to see if Id property is set
internal bool IsSetId()
{
return this._id != null;
}
/// <summary>
/// Gets and sets the property MembershipArn.
/// <para>
/// The ARN of the membership.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=0, Max=100)]
public string MembershipArn
{
get { return this._membershipArn; }
set { this._membershipArn = value; }
}
// Check to see if MembershipArn property is set
internal bool IsSetMembershipArn()
{
return this._membershipArn != null;
}
/// <summary>
/// Gets and sets the property MembershipId.
/// <para>
/// The identifier for the membership.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=36, Max=36)]
public string MembershipId
{
get { return this._membershipId; }
set { this._membershipId = value; }
}
// Check to see if MembershipId property is set
internal bool IsSetMembershipId()
{
return this._membershipId != null;
}
/// <summary>
/// Gets and sets the property Result.
/// <para>
/// The result of the protected query.
/// </para>
/// </summary>
public ProtectedQueryResult Result
{
get { return this._result; }
set { this._result = value; }
}
// Check to see if Result property is set
internal bool IsSetResult()
{
return this._result != null;
}
/// <summary>
/// Gets and sets the property ResultConfiguration.
/// <para>
/// Contains any details needed to write the query results.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ProtectedQueryResultConfiguration ResultConfiguration
{
get { return this._resultConfiguration; }
set { this._resultConfiguration = value; }
}
// Check to see if ResultConfiguration property is set
internal bool IsSetResultConfiguration()
{
return this._resultConfiguration != null;
}
/// <summary>
/// Gets and sets the property SqlParameters.
/// <para>
/// The protected query SQL parameters.
/// </para>
/// </summary>
[AWSProperty(Required=true, Sensitive=true)]
public ProtectedQuerySQLParameters SqlParameters
{
get { return this._sqlParameters; }
set { this._sqlParameters = value; }
}
// Check to see if SqlParameters property is set
internal bool IsSetSqlParameters()
{
return this._sqlParameters != null;
}
/// <summary>
/// Gets and sets the property Statistics.
/// <para>
/// Statistics about protected query execution.
/// </para>
/// </summary>
public ProtectedQueryStatistics Statistics
{
get { return this._statistics; }
set { this._statistics = value; }
}
// Check to see if Statistics property is set
internal bool IsSetStatistics()
{
return this._statistics != null;
}
/// <summary>
/// Gets and sets the property Status.
/// <para>
/// The status of the query.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ProtectedQueryStatus Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != null;
}
}
}
| 235 |
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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Details of errors thrown by the protected query.
/// </summary>
public partial class ProtectedQueryError
{
private string _code;
private string _message;
/// <summary>
/// Gets and sets the property Code.
/// <para>
/// An error code for the error.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string Code
{
get { return this._code; }
set { this._code = value; }
}
// Check to see if Code property is set
internal bool IsSetCode()
{
return this._code != null;
}
/// <summary>
/// Gets and sets the property Message.
/// <para>
/// A description of why the query failed.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
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;
}
}
}
| 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Contains details about the protected query output.
/// </summary>
public partial class ProtectedQueryOutput
{
private ProtectedQueryS3Output _s3;
/// <summary>
/// Gets and sets the property S3.
/// <para>
/// If present, the output for a protected query with an `S3` output type.
/// </para>
/// </summary>
public ProtectedQueryS3Output S3
{
get { return this._s3; }
set { this._s3 = value; }
}
// Check to see if S3 property is set
internal bool IsSetS3()
{
return this._s3 != 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 cleanrooms-2022-02-17.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.CleanRooms.Model
{
/// <summary>
/// Contains configuration details for protected query output.
/// </summary>
public partial class ProtectedQueryOutputConfiguration
{
private ProtectedQueryS3OutputConfiguration _s3;
/// <summary>
/// Gets and sets the property S3.
/// <para>
/// Required configuration for a protected query with an `S3` output type.
/// </para>
/// </summary>
public ProtectedQueryS3OutputConfiguration S3
{
get { return this._s3; }
set { this._s3 = value; }
}
// Check to see if S3 property is set
internal bool IsSetS3()
{
return this._s3 != null;
}
}
}
| 57 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.