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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// An error entity for the <code>BatchImportEvidenceToAssessmentControl</code> API. /// This is used to provide more meaningful errors than a simple string message. /// </summary> public partial class BatchImportEvidenceToAssessmentControlError { private string _errorCode; private string _errorMessage; private ManualEvidence _manualEvidence; /// <summary> /// Gets and sets the property ErrorCode. /// <para> /// The error code that the <code>BatchImportEvidenceToAssessmentControl</code> API returned. /// /// </para> /// </summary> [AWSProperty(Min=3, Max=3)] public string ErrorCode { get { return this._errorCode; } set { this._errorCode = value; } } // Check to see if ErrorCode property is set internal bool IsSetErrorCode() { return this._errorCode != null; } /// <summary> /// Gets and sets the property ErrorMessage. /// <para> /// The error message that the <code>BatchImportEvidenceToAssessmentControl</code> API /// returned. /// </para> /// </summary> [AWSProperty(Max=300)] public string ErrorMessage { get { return this._errorMessage; } set { this._errorMessage = value; } } // Check to see if ErrorMessage property is set internal bool IsSetErrorMessage() { return this._errorMessage != null; } /// <summary> /// Gets and sets the property ManualEvidence. /// <para> /// Manual evidence that can't be collected automatically by Audit Manager. /// </para> /// </summary> public ManualEvidence ManualEvidence { get { return this._manualEvidence; } set { this._manualEvidence = value; } } // Check to see if ManualEvidence property is set internal bool IsSetManualEvidence() { return this._manualEvidence != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the BatchImportEvidenceToAssessmentControl operation. /// Adds one or more pieces of evidence to a control in an Audit Manager assessment. /// /// /// <para> /// You can import manual evidence from any S3 bucket by specifying the S3 URI of the /// object. You can also upload a file from your browser, or enter plain text in response /// to a risk assessment question. /// </para> /// /// <para> /// The following restrictions apply to this action: /// </para> /// <ul> <li> /// <para> /// <code>manualEvidence</code> can be only one of the following: <code>evidenceFileName</code>, /// <code>s3ResourcePath</code>, or <code>textResponse</code> /// </para> /// </li> <li> /// <para> /// Maximum size of an individual evidence file: 100 MB /// </para> /// </li> <li> /// <para> /// Number of daily manual evidence uploads per control: 100 /// </para> /// </li> <li> /// <para> /// Supported file formats: See <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/upload-evidence.html#supported-manual-evidence-files">Supported /// file types for manual evidence</a> in the <i>Audit Manager User Guide</i> /// </para> /// </li> </ul> /// <para> /// For more information about Audit Manager service restrictions, see <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/service-quotas.html">Quotas /// and restrictions for Audit Manager</a>. /// </para> /// </summary> public partial class BatchImportEvidenceToAssessmentControlRequest : AmazonAuditManagerRequest { private string _assessmentId; private string _controlId; private string _controlSetId; private List<ManualEvidence> _manualEvidence = new List<ManualEvidence>(); /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The identifier for the assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property ControlId. /// <para> /// The identifier for the control. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string ControlId { get { return this._controlId; } set { this._controlId = value; } } // Check to see if ControlId property is set internal bool IsSetControlId() { return this._controlId != null; } /// <summary> /// Gets and sets the property ControlSetId. /// <para> /// The identifier for the control set. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=300)] public string ControlSetId { get { return this._controlSetId; } set { this._controlSetId = value; } } // Check to see if ControlSetId property is set internal bool IsSetControlSetId() { return this._controlSetId != null; } /// <summary> /// Gets and sets the property ManualEvidence. /// <para> /// The list of manual evidence objects. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=50)] public List<ManualEvidence> ManualEvidence { get { return this._manualEvidence; } set { this._manualEvidence = value; } } // Check to see if ManualEvidence property is set internal bool IsSetManualEvidence() { return this._manualEvidence != null && this._manualEvidence.Count > 0; } } }
153
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the BatchImportEvidenceToAssessmentControl operation. /// </summary> public partial class BatchImportEvidenceToAssessmentControlResponse : AmazonWebServiceResponse { private List<BatchImportEvidenceToAssessmentControlError> _errors = new List<BatchImportEvidenceToAssessmentControlError>(); /// <summary> /// Gets and sets the property Errors. /// <para> /// A list of errors that the <code>BatchImportEvidenceToAssessmentControl</code> API /// returned. /// </para> /// </summary> public List<BatchImportEvidenceToAssessmentControlError> 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; } } }
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// The record of a change within Audit Manager. For example, this could be the status /// change of an assessment or the delegation of a control set. /// </summary> public partial class ChangeLog { private ActionEnum _action; private DateTime? _createdAt; private string _createdBy; private string _objectName; private ObjectTypeEnum _objectType; /// <summary> /// Gets and sets the property Action. /// <para> /// The action that was performed. /// </para> /// </summary> public ActionEnum Action { get { return this._action; } set { this._action = value; } } // Check to see if Action property is set internal bool IsSetAction() { return this._action != null; } /// <summary> /// Gets and sets the property CreatedAt. /// <para> /// The time when the action was performed and the changelog record was created. /// </para> /// </summary> public DateTime CreatedAt { get { return this._createdAt.GetValueOrDefault(); } set { this._createdAt = value; } } // Check to see if CreatedAt property is set internal bool IsSetCreatedAt() { return this._createdAt.HasValue; } /// <summary> /// Gets and sets the property CreatedBy. /// <para> /// The user or role that performed the action. /// </para> /// </summary> [AWSProperty(Min=20, Max=2048)] public string CreatedBy { get { return this._createdBy; } set { this._createdBy = value; } } // Check to see if CreatedBy property is set internal bool IsSetCreatedBy() { return this._createdBy != null; } /// <summary> /// Gets and sets the property ObjectName. /// <para> /// The name of the object that changed. This could be the name of an assessment, control, /// or control set. /// </para> /// </summary> [AWSProperty(Min=1, Max=2048)] public string ObjectName { get { return this._objectName; } set { this._objectName = value; } } // Check to see if ObjectName property is set internal bool IsSetObjectName() { return this._objectName != null; } /// <summary> /// Gets and sets the property ObjectType. /// <para> /// The object that was changed, such as an assessment, control, or control set. /// </para> /// </summary> public ObjectTypeEnum ObjectType { get { return this._objectType; } set { this._objectType = value; } } // Check to see if ObjectType property is set internal bool IsSetObjectType() { return this._objectType != null; } } }
137
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// A control in Audit Manager. /// </summary> public partial class Control { private string _actionPlanInstructions; private string _actionPlanTitle; private string _arn; private List<ControlMappingSource> _controlMappingSources = new List<ControlMappingSource>(); private string _controlSources; private DateTime? _createdAt; private string _createdBy; private string _description; private string _id; private DateTime? _lastUpdatedAt; private string _lastUpdatedBy; private string _name; private Dictionary<string, string> _tags = new Dictionary<string, string>(); private string _testingInformation; private ControlType _type; /// <summary> /// Gets and sets the property ActionPlanInstructions. /// <para> /// The recommended actions to carry out if the control isn't fulfilled. /// </para> /// </summary> [AWSProperty(Max=1000)] public string ActionPlanInstructions { get { return this._actionPlanInstructions; } set { this._actionPlanInstructions = value; } } // Check to see if ActionPlanInstructions property is set internal bool IsSetActionPlanInstructions() { return this._actionPlanInstructions != null; } /// <summary> /// Gets and sets the property ActionPlanTitle. /// <para> /// The title of the action plan for remediating the control. /// </para> /// </summary> [AWSProperty(Max=300)] public string ActionPlanTitle { get { return this._actionPlanTitle; } set { this._actionPlanTitle = value; } } // Check to see if ActionPlanTitle property is set internal bool IsSetActionPlanTitle() { return this._actionPlanTitle != null; } /// <summary> /// Gets and sets the property Arn. /// <para> /// The Amazon Resource Name (ARN) of the control. /// </para> /// </summary> [AWSProperty(Min=20, Max=2048)] 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 ControlMappingSources. /// <para> /// The data mapping sources for the control. /// </para> /// </summary> [AWSProperty(Min=1)] public List<ControlMappingSource> ControlMappingSources { get { return this._controlMappingSources; } set { this._controlMappingSources = value; } } // Check to see if ControlMappingSources property is set internal bool IsSetControlMappingSources() { return this._controlMappingSources != null && this._controlMappingSources.Count > 0; } /// <summary> /// Gets and sets the property ControlSources. /// <para> /// The data source types that determine where Audit Manager collects evidence from for /// the control. /// </para> /// </summary> [AWSProperty(Min=1, Max=100)] public string ControlSources { get { return this._controlSources; } set { this._controlSources = value; } } // Check to see if ControlSources property is set internal bool IsSetControlSources() { return this._controlSources != null; } /// <summary> /// Gets and sets the property CreatedAt. /// <para> /// The time when the control was created. /// </para> /// </summary> public DateTime CreatedAt { get { return this._createdAt.GetValueOrDefault(); } set { this._createdAt = value; } } // Check to see if CreatedAt property is set internal bool IsSetCreatedAt() { return this._createdAt.HasValue; } /// <summary> /// Gets and sets the property CreatedBy. /// <para> /// The user or role that created the control. /// </para> /// </summary> [AWSProperty(Min=1, Max=100)] public string CreatedBy { get { return this._createdBy; } set { this._createdBy = value; } } // Check to see if CreatedBy property is set internal bool IsSetCreatedBy() { return this._createdBy != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the control. /// </para> /// </summary> [AWSProperty(Max=1000)] 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 identifier for the control. /// </para> /// </summary> [AWSProperty(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 LastUpdatedAt. /// <para> /// The time when the control was most recently updated. /// </para> /// </summary> public DateTime LastUpdatedAt { get { return this._lastUpdatedAt.GetValueOrDefault(); } set { this._lastUpdatedAt = value; } } // Check to see if LastUpdatedAt property is set internal bool IsSetLastUpdatedAt() { return this._lastUpdatedAt.HasValue; } /// <summary> /// Gets and sets the property LastUpdatedBy. /// <para> /// The user or role that most recently updated the control. /// </para> /// </summary> [AWSProperty(Min=1, Max=100)] public string LastUpdatedBy { get { return this._lastUpdatedBy; } set { this._lastUpdatedBy = value; } } // Check to see if LastUpdatedBy property is set internal bool IsSetLastUpdatedBy() { return this._lastUpdatedBy != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the control. /// </para> /// </summary> [AWSProperty(Min=1, Max=300)] 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 Tags. /// <para> /// The tags associated with the control. /// </para> /// </summary> [AWSProperty(Min=0, Max=50)] 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; } /// <summary> /// Gets and sets the property TestingInformation. /// <para> /// The steps that you should follow to determine if the control has been satisfied. /// /// </para> /// </summary> [AWSProperty(Max=1000)] public string TestingInformation { get { return this._testingInformation; } set { this._testingInformation = value; } } // Check to see if TestingInformation property is set internal bool IsSetTestingInformation() { return this._testingInformation != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// Specifies whether the control is a standard control or a custom control. /// </para> /// </summary> public ControlType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } } }
337
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// A comment that's posted by a user on a control. This includes the author's name, /// the comment text, and a timestamp. /// </summary> public partial class ControlComment { private string _authorName; private string _commentBody; private DateTime? _postedDate; /// <summary> /// Gets and sets the property AuthorName. /// <para> /// The name of the user who authored the comment. /// </para> /// </summary> [AWSProperty(Min=1, Max=128)] public string AuthorName { get { return this._authorName; } set { this._authorName = value; } } // Check to see if AuthorName property is set internal bool IsSetAuthorName() { return this._authorName != null; } /// <summary> /// Gets and sets the property CommentBody. /// <para> /// The body text of a control comment. /// </para> /// </summary> [AWSProperty(Max=500)] public string CommentBody { get { return this._commentBody; } set { this._commentBody = value; } } // Check to see if CommentBody property is set internal bool IsSetCommentBody() { return this._commentBody != null; } /// <summary> /// Gets and sets the property PostedDate. /// <para> /// The time when the comment was posted. /// </para> /// </summary> public DateTime PostedDate { get { return this._postedDate.GetValueOrDefault(); } set { this._postedDate = value; } } // Check to see if PostedDate property is set internal bool IsSetPostedDate() { return this._postedDate.HasValue; } } }
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// A summary of the latest analytics data for a specific control domain. /// /// /// <para> /// Control domain insights are grouped by control domain, and ranked by the highest total /// count of non-compliant evidence. /// </para> /// </summary> public partial class ControlDomainInsights { private int? _controlsCountByNoncompliantEvidence; private EvidenceInsights _evidenceInsights; private string _id; private DateTime? _lastUpdated; private string _name; private int? _totalControlsCount; /// <summary> /// Gets and sets the property ControlsCountByNoncompliantEvidence. /// <para> /// The number of controls in the control domain that collected non-compliant evidence /// on the <code>lastUpdated</code> date. /// </para> /// </summary> public int ControlsCountByNoncompliantEvidence { get { return this._controlsCountByNoncompliantEvidence.GetValueOrDefault(); } set { this._controlsCountByNoncompliantEvidence = value; } } // Check to see if ControlsCountByNoncompliantEvidence property is set internal bool IsSetControlsCountByNoncompliantEvidence() { return this._controlsCountByNoncompliantEvidence.HasValue; } /// <summary> /// Gets and sets the property EvidenceInsights. /// <para> /// A breakdown of the compliance check status for the evidence that’s associated with /// the control domain. /// </para> /// </summary> public EvidenceInsights EvidenceInsights { get { return this._evidenceInsights; } set { this._evidenceInsights = value; } } // Check to see if EvidenceInsights property is set internal bool IsSetEvidenceInsights() { return this._evidenceInsights != null; } /// <summary> /// Gets and sets the property Id. /// <para> /// The unique identifier for the control domain. /// </para> /// </summary> [AWSProperty(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 LastUpdated. /// <para> /// The time when the control domain insights were last updated. /// </para> /// </summary> public DateTime LastUpdated { get { return this._lastUpdated.GetValueOrDefault(); } set { this._lastUpdated = value; } } // Check to see if LastUpdated property is set internal bool IsSetLastUpdated() { return this._lastUpdated.HasValue; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the control domain. /// </para> /// </summary> [AWSProperty(Min=1, Max=2048)] 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 TotalControlsCount. /// <para> /// The total number of controls in the control domain. /// </para> /// </summary> public int TotalControlsCount { get { return this._totalControlsCount.GetValueOrDefault(); } set { this._totalControlsCount = value; } } // Check to see if TotalControlsCount property is set internal bool IsSetTotalControlsCount() { return this._totalControlsCount.HasValue; } } }
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// A summary of the latest analytics data for a specific control in a specific active /// assessment. /// /// /// <para> /// Control insights are grouped by control domain, and ranked by the highest total count /// of non-compliant evidence. /// </para> /// </summary> public partial class ControlInsightsMetadataByAssessmentItem { private string _controlSetName; private EvidenceInsights _evidenceInsights; private string _id; private DateTime? _lastUpdated; private string _name; /// <summary> /// Gets and sets the property ControlSetName. /// <para> /// The name of the control set that the assessment control belongs to. /// </para> /// </summary> [AWSProperty(Min=1, Max=2048)] public string ControlSetName { get { return this._controlSetName; } set { this._controlSetName = value; } } // Check to see if ControlSetName property is set internal bool IsSetControlSetName() { return this._controlSetName != null; } /// <summary> /// Gets and sets the property EvidenceInsights. /// <para> /// A breakdown of the compliance check status for the evidence that’s associated with /// the assessment control. /// </para> /// </summary> public EvidenceInsights EvidenceInsights { get { return this._evidenceInsights; } set { this._evidenceInsights = value; } } // Check to see if EvidenceInsights property is set internal bool IsSetEvidenceInsights() { return this._evidenceInsights != null; } /// <summary> /// Gets and sets the property Id. /// <para> /// The unique identifier for the assessment control. /// </para> /// </summary> [AWSProperty(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 LastUpdated. /// <para> /// The time when the assessment control insights were last updated. /// </para> /// </summary> public DateTime LastUpdated { get { return this._lastUpdated.GetValueOrDefault(); } set { this._lastUpdated = value; } } // Check to see if LastUpdated property is set internal bool IsSetLastUpdated() { return this._lastUpdated.HasValue; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the assessment control. /// </para> /// </summary> [AWSProperty(Min=1, Max=2048)] 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; } } }
144
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// A summary of the latest analytics data for a specific control. /// /// /// <para> /// This data reflects the total counts for the specified control across all active assessments. /// Control insights are grouped by control domain, and ranked by the highest total count /// of non-compliant evidence. /// </para> /// </summary> public partial class ControlInsightsMetadataItem { private EvidenceInsights _evidenceInsights; private string _id; private DateTime? _lastUpdated; private string _name; /// <summary> /// Gets and sets the property EvidenceInsights. /// <para> /// A breakdown of the compliance check status for the evidence that’s associated with /// the control. /// </para> /// </summary> public EvidenceInsights EvidenceInsights { get { return this._evidenceInsights; } set { this._evidenceInsights = value; } } // Check to see if EvidenceInsights property is set internal bool IsSetEvidenceInsights() { return this._evidenceInsights != null; } /// <summary> /// Gets and sets the property Id. /// <para> /// The unique identifier for the control. /// </para> /// </summary> [AWSProperty(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 LastUpdated. /// <para> /// The time when the control insights were last updated. /// </para> /// </summary> public DateTime LastUpdated { get { return this._lastUpdated.GetValueOrDefault(); } set { this._lastUpdated = value; } } // Check to see if LastUpdated property is set internal bool IsSetLastUpdated() { return this._lastUpdated.HasValue; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the control. /// </para> /// </summary> [AWSProperty(Min=1, Max=2048)] 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; } } }
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// The data source that determines where Audit Manager collects evidence from for the /// control. /// </summary> public partial class ControlMappingSource { private string _sourceDescription; private SourceFrequency _sourceFrequency; private string _sourceId; private SourceKeyword _sourceKeyword; private string _sourceName; private SourceSetUpOption _sourceSetUpOption; private SourceType _sourceType; private string _troubleshootingText; /// <summary> /// Gets and sets the property SourceDescription. /// <para> /// The description of the source. /// </para> /// </summary> [AWSProperty(Max=1000)] public string SourceDescription { get { return this._sourceDescription; } set { this._sourceDescription = value; } } // Check to see if SourceDescription property is set internal bool IsSetSourceDescription() { return this._sourceDescription != null; } /// <summary> /// Gets and sets the property SourceFrequency. /// <para> /// Specifies how often evidence is collected from the control mapping source. /// </para> /// </summary> public SourceFrequency SourceFrequency { get { return this._sourceFrequency; } set { this._sourceFrequency = value; } } // Check to see if SourceFrequency property is set internal bool IsSetSourceFrequency() { return this._sourceFrequency != null; } /// <summary> /// Gets and sets the property SourceId. /// <para> /// The unique identifier for the source. /// </para> /// </summary> [AWSProperty(Min=36, Max=36)] public string SourceId { get { return this._sourceId; } set { this._sourceId = value; } } // Check to see if SourceId property is set internal bool IsSetSourceId() { return this._sourceId != null; } /// <summary> /// Gets and sets the property SourceKeyword. /// </summary> public SourceKeyword SourceKeyword { get { return this._sourceKeyword; } set { this._sourceKeyword = value; } } // Check to see if SourceKeyword property is set internal bool IsSetSourceKeyword() { return this._sourceKeyword != null; } /// <summary> /// Gets and sets the property SourceName. /// <para> /// The name of the source. /// </para> /// </summary> [AWSProperty(Min=1, Max=100)] public string SourceName { get { return this._sourceName; } set { this._sourceName = value; } } // Check to see if SourceName property is set internal bool IsSetSourceName() { return this._sourceName != null; } /// <summary> /// Gets and sets the property SourceSetUpOption. /// <para> /// The setup option for the data source. This option reflects if the evidence collection /// is automated or manual. /// </para> /// </summary> public SourceSetUpOption SourceSetUpOption { get { return this._sourceSetUpOption; } set { this._sourceSetUpOption = value; } } // Check to see if SourceSetUpOption property is set internal bool IsSetSourceSetUpOption() { return this._sourceSetUpOption != null; } /// <summary> /// Gets and sets the property SourceType. /// <para> /// Specifies one of the five data source types for evidence collection. /// </para> /// </summary> public SourceType SourceType { get { return this._sourceType; } set { this._sourceType = value; } } // Check to see if SourceType property is set internal bool IsSetSourceType() { return this._sourceType != null; } /// <summary> /// Gets and sets the property TroubleshootingText. /// <para> /// The instructions for troubleshooting the control. /// </para> /// </summary> [AWSProperty(Max=1000)] public string TroubleshootingText { get { return this._troubleshootingText; } set { this._troubleshootingText = value; } } // Check to see if TroubleshootingText property is set internal bool IsSetTroubleshootingText() { return this._troubleshootingText != null; } } }
193
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// The metadata that's associated with the standard control or custom control. /// </summary> public partial class ControlMetadata { private string _arn; private string _controlSources; private DateTime? _createdAt; private string _id; private DateTime? _lastUpdatedAt; private string _name; /// <summary> /// Gets and sets the property Arn. /// <para> /// The Amazon Resource Name (ARN) of the control. /// </para> /// </summary> [AWSProperty(Min=20, Max=2048)] 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 ControlSources. /// <para> /// The data source that determines where Audit Manager collects evidence from for the /// control. /// </para> /// </summary> [AWSProperty(Min=1, Max=100)] public string ControlSources { get { return this._controlSources; } set { this._controlSources = value; } } // Check to see if ControlSources property is set internal bool IsSetControlSources() { return this._controlSources != null; } /// <summary> /// Gets and sets the property CreatedAt. /// <para> /// The time when the control was created. /// </para> /// </summary> public DateTime CreatedAt { get { return this._createdAt.GetValueOrDefault(); } set { this._createdAt = value; } } // Check to see if CreatedAt property is set internal bool IsSetCreatedAt() { return this._createdAt.HasValue; } /// <summary> /// Gets and sets the property Id. /// <para> /// The unique identifier for the control. /// </para> /// </summary> [AWSProperty(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 LastUpdatedAt. /// <para> /// The time when the control was most recently updated. /// </para> /// </summary> public DateTime LastUpdatedAt { get { return this._lastUpdatedAt.GetValueOrDefault(); } set { this._lastUpdatedAt = value; } } // Check to see if LastUpdatedAt property is set internal bool IsSetLastUpdatedAt() { return this._lastUpdatedAt.HasValue; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the control. /// </para> /// </summary> [AWSProperty(Min=1, Max=300)] 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; } } }
157
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// A set of controls in Audit Manager. /// </summary> public partial class ControlSet { private List<Control> _controls = new List<Control>(); private string _id; private string _name; /// <summary> /// Gets and sets the property Controls. /// <para> /// The list of controls within the control set. /// </para> /// </summary> [AWSProperty(Min=1)] public List<Control> Controls { get { return this._controls; } set { this._controls = value; } } // Check to see if Controls property is set internal bool IsSetControls() { return this._controls != null && this._controls.Count > 0; } /// <summary> /// Gets and sets the property Id. /// <para> /// The identifier of the control set in the assessment. This is the control set name /// in a plain string format. /// </para> /// </summary> [AWSProperty(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 control set. /// </para> /// </summary> [AWSProperty(Min=1, Max=300)] 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; } } }
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// The control entity attributes that uniquely identify an existing control to be added /// to a framework in Audit Manager. /// </summary> public partial class CreateAssessmentFrameworkControl { private string _id; /// <summary> /// Gets and sets the property Id. /// <para> /// The unique identifier of the control. /// </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; } } }
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// A <code>controlSet</code> entity that represents a collection of controls in Audit /// Manager. This doesn't contain the control set ID. /// </summary> public partial class CreateAssessmentFrameworkControlSet { private List<CreateAssessmentFrameworkControl> _controls = new List<CreateAssessmentFrameworkControl>(); private string _name; /// <summary> /// Gets and sets the property Controls. /// <para> /// The list of controls within the control set. This doesn't contain the control set /// ID. /// </para> /// </summary> [AWSProperty(Min=1)] public List<CreateAssessmentFrameworkControl> Controls { get { return this._controls; } set { this._controls = value; } } // Check to see if Controls property is set internal bool IsSetControls() { return this._controls != null && this._controls.Count > 0; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the control set. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=300)] 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the CreateAssessmentFramework operation. /// Creates a custom framework in Audit Manager. /// </summary> public partial class CreateAssessmentFrameworkRequest : AmazonAuditManagerRequest { private string _complianceType; private List<CreateAssessmentFrameworkControlSet> _controlSets = new List<CreateAssessmentFrameworkControlSet>(); private string _description; private string _name; private Dictionary<string, string> _tags = new Dictionary<string, string>(); /// <summary> /// Gets and sets the property ComplianceType. /// <para> /// The compliance type that the new custom framework supports, such as CIS or HIPAA. /// /// </para> /// </summary> [AWSProperty(Max=100)] public string ComplianceType { get { return this._complianceType; } set { this._complianceType = value; } } // Check to see if ComplianceType property is set internal bool IsSetComplianceType() { return this._complianceType != null; } /// <summary> /// Gets and sets the property ControlSets. /// <para> /// The control sets that are associated with the framework. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public List<CreateAssessmentFrameworkControlSet> ControlSets { get { return this._controlSets; } set { this._controlSets = value; } } // Check to see if ControlSets property is set internal bool IsSetControlSets() { return this._controlSets != null && this._controlSets.Count > 0; } /// <summary> /// Gets and sets the property Description. /// <para> /// An optional description for the new custom framework. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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 new custom framework. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=300)] 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 Tags. /// <para> /// The tags that are associated with the framework. /// </para> /// </summary> [AWSProperty(Min=0, Max=50)] 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; } } }
140
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the CreateAssessmentFramework operation. /// </summary> public partial class CreateAssessmentFrameworkResponse : AmazonWebServiceResponse { private Framework _framework; /// <summary> /// Gets and sets the property Framework. /// <para> /// The name of the new framework that the <code>CreateAssessmentFramework</code> API /// returned. /// </para> /// </summary> public Framework Framework { get { return this._framework; } set { this._framework = value; } } // Check to see if Framework property is set internal bool IsSetFramework() { return this._framework != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the CreateAssessmentReport operation. /// Creates an assessment report for the specified assessment. /// </summary> public partial class CreateAssessmentReportRequest : AmazonAuditManagerRequest { private string _assessmentId; private string _description; private string _name; private string _queryStatement; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The identifier for the assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the assessment report. /// </para> /// </summary> [AWSProperty(Max=1000)] 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 new assessment report. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=300)] 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 QueryStatement. /// <para> /// A SQL statement that represents an evidence finder query. /// </para> /// /// <para> /// Provide this parameter when you want to generate an assessment report from the results /// of an evidence finder search query. When you use this parameter, Audit Manager generates /// a one-time report using only the evidence from the query output. This report does /// not include any assessment evidence that was manually <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/generate-assessment-report.html#generate-assessment-report-include-evidence">added /// to a report using the console</a>, or <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_BatchAssociateAssessmentReportEvidence.html">associated /// with a report using the API</a>. /// </para> /// /// <para> /// To use this parameter, the <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_EvidenceFinderEnablement.html#auditmanager-Type-EvidenceFinderEnablement-enablementStatus">enablementStatus</a> /// of evidence finder must be <code>ENABLED</code>. /// </para> /// /// <para> /// For examples and help resolving <code>queryStatement</code> validation exceptions, /// see <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/evidence-finder-issues.html#querystatement-exceptions">Troubleshooting /// evidence finder issues</a> in the <i>Audit Manager User Guide.</i> /// </para> /// </summary> [AWSProperty(Min=1, Max=10000)] public string QueryStatement { get { return this._queryStatement; } set { this._queryStatement = value; } } // Check to see if QueryStatement property is set internal bool IsSetQueryStatement() { return this._queryStatement != null; } } }
139
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the CreateAssessmentReport operation. /// </summary> public partial class CreateAssessmentReportResponse : AmazonWebServiceResponse { private AssessmentReport _assessmentReport; /// <summary> /// Gets and sets the property AssessmentReport. /// <para> /// The new assessment report that the <code>CreateAssessmentReport</code> API returned. /// /// </para> /// </summary> public AssessmentReport AssessmentReport { get { return this._assessmentReport; } set { this._assessmentReport = value; } } // Check to see if AssessmentReport property is set internal bool IsSetAssessmentReport() { return this._assessmentReport != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the CreateAssessment operation. /// Creates an assessment in Audit Manager. /// </summary> public partial class CreateAssessmentRequest : AmazonAuditManagerRequest { private AssessmentReportsDestination _assessmentReportsDestination; private string _description; private string _frameworkId; private string _name; private List<Role> _roles = new List<Role>(); private Scope _scope; private Dictionary<string, string> _tags = new Dictionary<string, string>(); /// <summary> /// Gets and sets the property AssessmentReportsDestination. /// <para> /// The assessment report storage destination for the assessment that's being created. /// /// </para> /// </summary> [AWSProperty(Required=true)] public AssessmentReportsDestination AssessmentReportsDestination { get { return this._assessmentReportsDestination; } set { this._assessmentReportsDestination = value; } } // Check to see if AssessmentReportsDestination property is set internal bool IsSetAssessmentReportsDestination() { return this._assessmentReportsDestination != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// The optional description of the assessment to be created. /// </para> /// </summary> [AWSProperty(Max=1000)] 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 FrameworkId. /// <para> /// The identifier for the framework that the assessment will be created from. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string FrameworkId { get { return this._frameworkId; } set { this._frameworkId = value; } } // Check to see if FrameworkId property is set internal bool IsSetFrameworkId() { return this._frameworkId != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the assessment to be created. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=300)] 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 Roles. /// <para> /// The list of roles for the assessment. /// </para> /// </summary> [AWSProperty(Required=true)] public List<Role> Roles { get { return this._roles; } set { this._roles = value; } } // Check to see if Roles property is set internal bool IsSetRoles() { return this._roles != null && this._roles.Count > 0; } /// <summary> /// Gets and sets the property Scope. /// </summary> [AWSProperty(Required=true)] public Scope Scope { get { return this._scope; } set { this._scope = value; } } // Check to see if Scope property is set internal bool IsSetScope() { return this._scope != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The tags that are associated with the assessment. /// </para> /// </summary> [AWSProperty(Min=0, Max=50)] 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; } } }
177
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the CreateAssessment operation. /// </summary> public partial class CreateAssessmentResponse : AmazonWebServiceResponse { private Assessment _assessment; /// <summary> /// Gets and sets the property Assessment. /// </summary> public Assessment Assessment { get { return this._assessment; } set { this._assessment = value; } } // Check to see if Assessment property is set internal bool IsSetAssessment() { return this._assessment != null; } } }
54
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// The control mapping fields that represent the source for evidence collection, along /// with related parameters and metadata. This doesn't contain <code>mappingID</code>. /// </summary> public partial class CreateControlMappingSource { private string _sourceDescription; private SourceFrequency _sourceFrequency; private SourceKeyword _sourceKeyword; private string _sourceName; private SourceSetUpOption _sourceSetUpOption; private SourceType _sourceType; private string _troubleshootingText; /// <summary> /// Gets and sets the property SourceDescription. /// <para> /// The description of the data source that determines where Audit Manager collects evidence /// from for the control. /// </para> /// </summary> [AWSProperty(Max=1000)] public string SourceDescription { get { return this._sourceDescription; } set { this._sourceDescription = value; } } // Check to see if SourceDescription property is set internal bool IsSetSourceDescription() { return this._sourceDescription != null; } /// <summary> /// Gets and sets the property SourceFrequency. /// <para> /// Specifies how often evidence is collected from the control mapping source. /// </para> /// </summary> public SourceFrequency SourceFrequency { get { return this._sourceFrequency; } set { this._sourceFrequency = value; } } // Check to see if SourceFrequency property is set internal bool IsSetSourceFrequency() { return this._sourceFrequency != null; } /// <summary> /// Gets and sets the property SourceKeyword. /// </summary> public SourceKeyword SourceKeyword { get { return this._sourceKeyword; } set { this._sourceKeyword = value; } } // Check to see if SourceKeyword property is set internal bool IsSetSourceKeyword() { return this._sourceKeyword != null; } /// <summary> /// Gets and sets the property SourceName. /// <para> /// The name of the control mapping data source. /// </para> /// </summary> [AWSProperty(Min=1, Max=100)] public string SourceName { get { return this._sourceName; } set { this._sourceName = value; } } // Check to see if SourceName property is set internal bool IsSetSourceName() { return this._sourceName != null; } /// <summary> /// Gets and sets the property SourceSetUpOption. /// <para> /// The setup option for the data source, which reflects if the evidence collection is /// automated or manual. /// </para> /// </summary> public SourceSetUpOption SourceSetUpOption { get { return this._sourceSetUpOption; } set { this._sourceSetUpOption = value; } } // Check to see if SourceSetUpOption property is set internal bool IsSetSourceSetUpOption() { return this._sourceSetUpOption != null; } /// <summary> /// Gets and sets the property SourceType. /// <para> /// Specifies one of the five types of data sources for evidence collection. /// </para> /// </summary> public SourceType SourceType { get { return this._sourceType; } set { this._sourceType = value; } } // Check to see if SourceType property is set internal bool IsSetSourceType() { return this._sourceType != null; } /// <summary> /// Gets and sets the property TroubleshootingText. /// <para> /// The instructions for troubleshooting the control. /// </para> /// </summary> [AWSProperty(Max=1000)] public string TroubleshootingText { get { return this._troubleshootingText; } set { this._troubleshootingText = value; } } // Check to see if TroubleshootingText property is set internal bool IsSetTroubleshootingText() { return this._troubleshootingText != null; } } }
174
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the CreateControl operation. /// Creates a new custom control in Audit Manager. /// </summary> public partial class CreateControlRequest : AmazonAuditManagerRequest { private string _actionPlanInstructions; private string _actionPlanTitle; private List<CreateControlMappingSource> _controlMappingSources = new List<CreateControlMappingSource>(); private string _description; private string _name; private Dictionary<string, string> _tags = new Dictionary<string, string>(); private string _testingInformation; /// <summary> /// Gets and sets the property ActionPlanInstructions. /// <para> /// The recommended actions to carry out if the control isn't fulfilled. /// </para> /// </summary> [AWSProperty(Max=1000)] public string ActionPlanInstructions { get { return this._actionPlanInstructions; } set { this._actionPlanInstructions = value; } } // Check to see if ActionPlanInstructions property is set internal bool IsSetActionPlanInstructions() { return this._actionPlanInstructions != null; } /// <summary> /// Gets and sets the property ActionPlanTitle. /// <para> /// The title of the action plan for remediating the control. /// </para> /// </summary> [AWSProperty(Max=300)] public string ActionPlanTitle { get { return this._actionPlanTitle; } set { this._actionPlanTitle = value; } } // Check to see if ActionPlanTitle property is set internal bool IsSetActionPlanTitle() { return this._actionPlanTitle != null; } /// <summary> /// Gets and sets the property ControlMappingSources. /// <para> /// The data mapping sources for the control. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public List<CreateControlMappingSource> ControlMappingSources { get { return this._controlMappingSources; } set { this._controlMappingSources = value; } } // Check to see if ControlMappingSources property is set internal bool IsSetControlMappingSources() { return this._controlMappingSources != null && this._controlMappingSources.Count > 0; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the control. /// </para> /// </summary> [AWSProperty(Max=1000)] 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 control. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=300)] 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 Tags. /// <para> /// The tags that are associated with the control. /// </para> /// </summary> [AWSProperty(Min=0, Max=50)] 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; } /// <summary> /// Gets and sets the property TestingInformation. /// <para> /// The steps to follow to determine if the control is satisfied. /// </para> /// </summary> [AWSProperty(Max=1000)] public string TestingInformation { get { return this._testingInformation; } set { this._testingInformation = value; } } // Check to see if TestingInformation property is set internal bool IsSetTestingInformation() { return this._testingInformation != null; } } }
179
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the CreateControl operation. /// </summary> public partial class CreateControlResponse : AmazonWebServiceResponse { private Control _control; /// <summary> /// Gets and sets the property Control. /// <para> /// The new control that the <code>CreateControl</code> API returned. /// </para> /// </summary> public Control Control { get { return this._control; } set { this._control = value; } } // Check to see if Control property is set internal bool IsSetControl() { return this._control != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// A collection of attributes that's used to create a delegation for an assessment in /// Audit Manager. /// </summary> public partial class CreateDelegationRequest { private string _comment; private string _controlSetId; private string _roleArn; private RoleType _roleType; /// <summary> /// Gets and sets the property Comment. /// <para> /// A comment that's related to the delegation request. /// </para> /// </summary> [AWSProperty(Max=350)] public string Comment { get { return this._comment; } set { this._comment = value; } } // Check to see if Comment property is set internal bool IsSetComment() { return this._comment != null; } /// <summary> /// Gets and sets the property ControlSetId. /// <para> /// The unique identifier for the control set. /// </para> /// </summary> [AWSProperty(Min=1, Max=300)] public string ControlSetId { get { return this._controlSetId; } set { this._controlSetId = value; } } // Check to see if ControlSetId property is set internal bool IsSetControlSetId() { return this._controlSetId != null; } /// <summary> /// Gets and sets the property RoleArn. /// <para> /// The Amazon Resource Name (ARN) of the IAM role. /// </para> /// </summary> [AWSProperty(Min=20, Max=2048)] 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 RoleType. /// <para> /// The type of customer persona. /// </para> /// <note> /// <para> /// In <code>CreateAssessment</code>, <code>roleType</code> can only be <code>PROCESS_OWNER</code>. /// /// </para> /// /// <para> /// In <code>UpdateSettings</code>, <code>roleType</code> can only be <code>PROCESS_OWNER</code>. /// </para> /// /// <para> /// In <code>BatchCreateDelegationByAssessment</code>, <code>roleType</code> can only /// be <code>RESOURCE_OWNER</code>. /// </para> /// </note> /// </summary> public RoleType RoleType { get { return this._roleType; } set { this._roleType = value; } } // Check to see if RoleType property is set internal bool IsSetRoleType() { return this._roleType != null; } } }
133
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// The default s3 bucket where Audit Manager saves the files that you export from evidence /// finder. /// </summary> public partial class DefaultExportDestination { private string _destination; private ExportDestinationType _destinationType; /// <summary> /// Gets and sets the property Destination. /// <para> /// The destination bucket where Audit Manager stores exported files. /// </para> /// </summary> [AWSProperty(Min=1, Max=1024)] public string Destination { get { return this._destination; } set { this._destination = value; } } // Check to see if Destination property is set internal bool IsSetDestination() { return this._destination != null; } /// <summary> /// Gets and sets the property DestinationType. /// <para> /// The destination type, such as Amazon S3. /// </para> /// </summary> public ExportDestinationType DestinationType { get { return this._destinationType; } set { this._destinationType = value; } } // Check to see if DestinationType property is set internal bool IsSetDestinationType() { return this._destinationType != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// The assignment of a control set to a delegate for review. /// </summary> public partial class Delegation { private string _assessmentId; private string _assessmentName; private string _comment; private string _controlSetId; private string _createdBy; private DateTime? _creationTime; private string _id; private DateTime? _lastUpdated; private string _roleArn; private RoleType _roleType; private DelegationStatus _status; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The identifier for the assessment that's associated with the delegation. /// </para> /// </summary> [AWSProperty(Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property AssessmentName. /// <para> /// The name of the assessment that's associated with the delegation. /// </para> /// </summary> [AWSProperty(Min=1, Max=300)] public string AssessmentName { get { return this._assessmentName; } set { this._assessmentName = value; } } // Check to see if AssessmentName property is set internal bool IsSetAssessmentName() { return this._assessmentName != null; } /// <summary> /// Gets and sets the property Comment. /// <para> /// The comment that's related to the delegation. /// </para> /// </summary> [AWSProperty(Max=350)] public string Comment { get { return this._comment; } set { this._comment = value; } } // Check to see if Comment property is set internal bool IsSetComment() { return this._comment != null; } /// <summary> /// Gets and sets the property ControlSetId. /// <para> /// The identifier for the control set that's associated with the delegation. /// </para> /// </summary> [AWSProperty(Min=1, Max=300)] public string ControlSetId { get { return this._controlSetId; } set { this._controlSetId = value; } } // Check to see if ControlSetId property is set internal bool IsSetControlSetId() { return this._controlSetId != null; } /// <summary> /// Gets and sets the property CreatedBy. /// <para> /// The user or role that created the delegation. /// </para> /// </summary> [AWSProperty(Min=1, Max=100)] public string CreatedBy { get { return this._createdBy; } set { this._createdBy = value; } } // Check to see if CreatedBy property is set internal bool IsSetCreatedBy() { return this._createdBy != null; } /// <summary> /// Gets and sets the property CreationTime. /// <para> /// Specifies when the delegation was created. /// </para> /// </summary> public DateTime CreationTime { get { return this._creationTime.GetValueOrDefault(); } set { this._creationTime = value; } } // Check to see if CreationTime property is set internal bool IsSetCreationTime() { return this._creationTime.HasValue; } /// <summary> /// Gets and sets the property Id. /// <para> /// The unique identifier for the delegation. /// </para> /// </summary> [AWSProperty(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 LastUpdated. /// <para> /// Specifies when the delegation was last updated. /// </para> /// </summary> public DateTime LastUpdated { get { return this._lastUpdated.GetValueOrDefault(); } set { this._lastUpdated = value; } } // Check to see if LastUpdated property is set internal bool IsSetLastUpdated() { return this._lastUpdated.HasValue; } /// <summary> /// Gets and sets the property RoleArn. /// <para> /// The Amazon Resource Name (ARN) of the IAM role. /// </para> /// </summary> [AWSProperty(Min=20, Max=2048)] 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 RoleType. /// <para> /// The type of customer persona. /// </para> /// <note> /// <para> /// In <code>CreateAssessment</code>, <code>roleType</code> can only be <code>PROCESS_OWNER</code>. /// /// </para> /// /// <para> /// In <code>UpdateSettings</code>, <code>roleType</code> can only be <code>PROCESS_OWNER</code>. /// </para> /// /// <para> /// In <code>BatchCreateDelegationByAssessment</code>, <code>roleType</code> can only /// be <code>RESOURCE_OWNER</code>. /// </para> /// </note> /// </summary> public RoleType RoleType { get { return this._roleType; } set { this._roleType = value; } } // Check to see if RoleType property is set internal bool IsSetRoleType() { return this._roleType != null; } /// <summary> /// Gets and sets the property Status. /// <para> /// The status of the delegation. /// </para> /// </summary> public DelegationStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } } }
269
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// The metadata that's associated with the delegation. /// </summary> public partial class DelegationMetadata { private string _assessmentId; private string _assessmentName; private string _controlSetName; private DateTime? _creationTime; private string _id; private string _roleArn; private DelegationStatus _status; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The unique identifier for the assessment. /// </para> /// </summary> [AWSProperty(Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property AssessmentName. /// <para> /// The name of the associated assessment. /// </para> /// </summary> [AWSProperty(Min=1, Max=300)] public string AssessmentName { get { return this._assessmentName; } set { this._assessmentName = value; } } // Check to see if AssessmentName property is set internal bool IsSetAssessmentName() { return this._assessmentName != null; } /// <summary> /// Gets and sets the property ControlSetName. /// <para> /// Specifies the name of the control set that was delegated for review. /// </para> /// </summary> [AWSProperty(Min=1, Max=2048)] public string ControlSetName { get { return this._controlSetName; } set { this._controlSetName = value; } } // Check to see if ControlSetName property is set internal bool IsSetControlSetName() { return this._controlSetName != null; } /// <summary> /// Gets and sets the property CreationTime. /// <para> /// Specifies when the delegation was created. /// </para> /// </summary> public DateTime CreationTime { get { return this._creationTime.GetValueOrDefault(); } set { this._creationTime = value; } } // Check to see if CreationTime property is set internal bool IsSetCreationTime() { return this._creationTime.HasValue; } /// <summary> /// Gets and sets the property Id. /// <para> /// The unique identifier for the delegation. /// </para> /// </summary> [AWSProperty(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 RoleArn. /// <para> /// The Amazon Resource Name (ARN) of the IAM role. /// </para> /// </summary> [AWSProperty(Min=20, Max=2048)] 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 Status. /// <para> /// The current status of the delegation. /// </para> /// </summary> public DelegationStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } } }
176
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the DeleteAssessmentFramework operation. /// Deletes a custom framework in Audit Manager. /// </summary> public partial class DeleteAssessmentFrameworkRequest : AmazonAuditManagerRequest { private string _frameworkId; /// <summary> /// Gets and sets the property FrameworkId. /// <para> /// The identifier for the custom framework. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string FrameworkId { get { return this._frameworkId; } set { this._frameworkId = value; } } // Check to see if FrameworkId property is set internal bool IsSetFrameworkId() { return this._frameworkId != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the DeleteAssessmentFramework operation. /// </summary> public partial class DeleteAssessmentFrameworkResponse : 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the DeleteAssessmentFrameworkShare operation. /// Deletes a share request for a custom framework in Audit Manager. /// </summary> public partial class DeleteAssessmentFrameworkShareRequest : AmazonAuditManagerRequest { private string _requestId; private ShareRequestType _requestType; /// <summary> /// Gets and sets the property RequestId. /// <para> /// The unique identifier for the share request to be deleted. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string RequestId { get { return this._requestId; } set { this._requestId = value; } } // Check to see if RequestId property is set internal bool IsSetRequestId() { return this._requestId != null; } /// <summary> /// Gets and sets the property RequestType. /// <para> /// Specifies whether the share request is a sent request or a received request. /// </para> /// </summary> [AWSProperty(Required=true)] public ShareRequestType RequestType { get { return this._requestType; } set { this._requestType = value; } } // Check to see if RequestType property is set internal bool IsSetRequestType() { return this._requestType != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the DeleteAssessmentFrameworkShare operation. /// </summary> public partial class DeleteAssessmentFrameworkShareResponse : 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the DeleteAssessmentReport operation. /// Deletes an assessment report in Audit Manager. /// /// /// <para> /// When you run the <code>DeleteAssessmentReport</code> operation, Audit Manager attempts /// to delete the following data: /// </para> /// <ol> <li> /// <para> /// The specified assessment report that’s stored in your S3 bucket /// </para> /// </li> <li> /// <para> /// The associated metadata that’s stored in Audit Manager /// </para> /// </li> </ol> /// <para> /// If Audit Manager can’t access the assessment report in your S3 bucket, the report /// isn’t deleted. In this event, the <code>DeleteAssessmentReport</code> operation doesn’t /// fail. Instead, it proceeds to delete the associated metadata only. You must then delete /// the assessment report from the S3 bucket yourself. /// </para> /// /// <para> /// This scenario happens when Audit Manager receives a <code>403 (Forbidden)</code> or /// <code>404 (Not Found)</code> error from Amazon S3. To avoid this, make sure that your /// S3 bucket is available, and that you configured the correct permissions for Audit /// Manager to delete resources in your S3 bucket. For an example permissions policy that /// you can use, see <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/security_iam_id-based-policy-examples.html#full-administrator-access-assessment-report-destination">Assessment /// report destination permissions</a> in the <i>Audit Manager User Guide</i>. For information /// about the issues that could cause a <code>403 (Forbidden)</code> or <code>404 (Not /// Found</code>) error from Amazon S3, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList">List /// of Error Codes</a> in the <i>Amazon Simple Storage Service API Reference</i>. /// </para> /// </summary> public partial class DeleteAssessmentReportRequest : AmazonAuditManagerRequest { private string _assessmentId; private string _assessmentReportId; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The unique identifier for the assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property AssessmentReportId. /// <para> /// The unique identifier for the assessment report. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentReportId { get { return this._assessmentReportId; } set { this._assessmentReportId = value; } } // Check to see if AssessmentReportId property is set internal bool IsSetAssessmentReportId() { return this._assessmentReportId != null; } } }
112
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the DeleteAssessmentReport operation. /// </summary> public partial class DeleteAssessmentReportResponse : 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the DeleteAssessment operation. /// Deletes an assessment in Audit Manager. /// </summary> public partial class DeleteAssessmentRequest : AmazonAuditManagerRequest { private string _assessmentId; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The identifier for the assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the DeleteAssessment operation. /// </summary> public partial class DeleteAssessmentResponse : 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the DeleteControl operation. /// Deletes a custom control in Audit Manager. /// /// <important> /// <para> /// When you invoke this operation, the custom control is deleted from any frameworks /// or assessments that it’s currently part of. As a result, Audit Manager will stop collecting /// evidence for that custom control in all of your assessments. This includes assessments /// that you previously created before you deleted the custom control. /// </para> /// </important> /// </summary> public partial class DeleteControlRequest : AmazonAuditManagerRequest { private string _controlId; /// <summary> /// Gets and sets the property ControlId. /// <para> /// The unique identifier for the control. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string ControlId { get { return this._controlId; } set { this._controlId = value; } } // Check to see if ControlId property is set internal bool IsSetControlId() { return this._controlId != null; } } }
68
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the DeleteControl operation. /// </summary> public partial class DeleteControlResponse : 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the DeregisterAccount operation. /// Deregisters an account in Audit Manager. /// /// <note> /// <para> /// Before you deregister, you can use the <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_UpdateSettings.html">UpdateSettings</a> /// API operation to set your preferred data retention policy. By default, Audit Manager /// retains your data. If you want to delete your data, you can use the <code>DeregistrationPolicy</code> /// attribute to request the deletion of your data. /// </para> /// /// <para> /// For more information about data retention, see <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/data-protection.html">Data /// Protection</a> in the <i>Audit Manager User Guide</i>. /// </para> /// </note> /// </summary> public partial class DeregisterAccountRequest : AmazonAuditManagerRequest { } }
53
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the DeregisterAccount operation. /// </summary> public partial class DeregisterAccountResponse : AmazonWebServiceResponse { private AccountStatus _status; /// <summary> /// Gets and sets the property Status. /// <para> /// The registration status of the account. /// </para> /// </summary> public AccountStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the DeregisterOrganizationAdminAccount operation. /// Removes the specified Amazon Web Services account as a delegated administrator for /// Audit Manager. /// /// /// <para> /// When you remove a delegated administrator from your Audit Manager settings, you continue /// to have access to the evidence that you previously collected under that account. This /// is also the case when you deregister a delegated administrator from Organizations. /// However, Audit Manager stops collecting and attaching evidence to that delegated administrator /// account moving forward. /// </para> /// <important> /// <para> /// Keep in mind the following cleanup task if you use evidence finder: /// </para> /// /// <para> /// Before you use your management account to remove a delegated administrator, make sure /// that the current delegated administrator account signs in to Audit Manager and disables /// evidence finder first. Disabling evidence finder automatically deletes the event data /// store that was created in their account when they enabled evidence finder. If this /// task isn’t completed, the event data store remains in their account. In this case, /// we recommend that the original delegated administrator goes to CloudTrail Lake and /// manually <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/query-eds-disable-termination.html">deletes /// the event data store</a>. /// </para> /// /// <para> /// This cleanup task is necessary to ensure that you don't end up with multiple event /// data stores. Audit Manager ignores an unused event data store after you remove or /// change a delegated administrator account. However, the unused event data store continues /// to incur storage costs from CloudTrail Lake if you don't delete it. /// </para> /// </important> /// <para> /// When you deregister a delegated administrator account for Audit Manager, the data /// for that account isn’t deleted. If you want to delete resource data for a delegated /// administrator account, you must perform that task separately before you deregister /// the account. Either, you can do this in the Audit Manager console. Or, you can use /// one of the delete API operations that are provided by Audit Manager. /// </para> /// /// <para> /// To delete your Audit Manager resource data, see the following instructions: /// </para> /// <ul> <li> /// <para> /// <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessment.html">DeleteAssessment</a> /// (see also: <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/delete-assessment.html">Deleting /// an assessment</a> in the <i>Audit Manager User Guide</i>) /// </para> /// </li> <li> /// <para> /// <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessmentFramework.html">DeleteAssessmentFramework</a> /// (see also: <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/delete-custom-framework.html">Deleting /// a custom framework</a> in the <i>Audit Manager User Guide</i>) /// </para> /// </li> <li> /// <para> /// <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessmentFrameworkShare.html">DeleteAssessmentFrameworkShare</a> /// (see also: <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/deleting-shared-framework-requests.html">Deleting /// a share request</a> in the <i>Audit Manager User Guide</i>) /// </para> /// </li> <li> /// <para> /// <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessmentReport.html">DeleteAssessmentReport</a> /// (see also: <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/generate-assessment-report.html#delete-assessment-report-steps">Deleting /// an assessment report</a> in the <i>Audit Manager User Guide</i>) /// </para> /// </li> <li> /// <para> /// <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteControl.html">DeleteControl</a> /// (see also: <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/delete-controls.html">Deleting /// a custom control</a> in the <i>Audit Manager User Guide</i>) /// </para> /// </li> </ul> /// <para> /// At this time, Audit Manager doesn't provide an option to delete evidence for a specific /// delegated administrator. Instead, when your management account deregisters Audit Manager, /// we perform a cleanup for the current delegated administrator account at the time of /// deregistration. /// </para> /// </summary> public partial class DeregisterOrganizationAdminAccountRequest : AmazonAuditManagerRequest { private string _adminAccountId; /// <summary> /// Gets and sets the property AdminAccountId. /// <para> /// The identifier for the administrator account. /// </para> /// </summary> [AWSProperty(Min=12, Max=12)] public string AdminAccountId { get { return this._adminAccountId; } set { this._adminAccountId = value; } } // Check to see if AdminAccountId property is set internal bool IsSetAdminAccountId() { return this._adminAccountId != null; } } }
140
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the DeregisterOrganizationAdminAccount operation. /// </summary> public partial class DeregisterOrganizationAdminAccountResponse : 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// The deregistration policy for the data that's stored in Audit Manager. You can use /// this attribute to determine how your data is handled when you <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeregisterAccount.html">deregister /// Audit Manager</a>. /// /// /// <para> /// By default, Audit Manager retains evidence data for two years from the time of its /// creation. Other Audit Manager resources (including assessments, custom controls, and /// custom frameworks) remain in Audit Manager indefinitely, and are available if you /// <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_RegisterAccount.html">re-register /// Audit Manager</a> in the future. For more information about data retention, see <a /// href="https://docs.aws.amazon.com/audit-manager/latest/userguide/data-protection.html">Data /// Protection</a> in the <i>Audit Manager User Guide</i>. /// </para> /// <important> /// <para> /// If you choose to delete all data, this action permanently deletes all evidence data /// in your account within seven days. It also deletes all of the Audit Manager resources /// that you created, including assessments, custom controls, and custom frameworks. Your /// data will not be available if you re-register Audit Manager in the future. /// </para> /// </important> /// </summary> public partial class DeregistrationPolicy { private DeleteResources _deleteResources; /// <summary> /// Gets and sets the property DeleteResources. /// <para> /// Specifies which Audit Manager data will be deleted when you deregister Audit Manager. /// </para> /// <ul> <li> /// <para> /// If you set the value to <code>ALL</code>, all of your data is deleted within seven /// days of deregistration. /// </para> /// </li> <li> /// <para> /// If you set the value to <code>DEFAULT</code>, none of your data is deleted at the /// time of deregistration. However, keep in mind that the Audit Manager data retention /// policy still applies. As a result, any evidence data will be deleted two years after /// its creation date. Your other Audit Manager resources will continue to exist indefinitely. /// </para> /// </li> </ul> /// </summary> public DeleteResources DeleteResources { get { return this._deleteResources; } set { this._deleteResources = value; } } // Check to see if DeleteResources property is set internal bool IsSetDeleteResources() { return this._deleteResources != null; } } }
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the DisassociateAssessmentReportEvidenceFolder operation. /// Disassociates an evidence folder from the specified assessment report in Audit Manager. /// </summary> public partial class DisassociateAssessmentReportEvidenceFolderRequest : AmazonAuditManagerRequest { private string _assessmentId; private string _evidenceFolderId; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The unique identifier for the assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property EvidenceFolderId. /// <para> /// The unique identifier for the folder that the evidence is stored in. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string EvidenceFolderId { get { return this._evidenceFolderId; } set { this._evidenceFolderId = value; } } // Check to see if EvidenceFolderId property is set internal bool IsSetEvidenceFolderId() { return this._evidenceFolderId != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the DisassociateAssessmentReportEvidenceFolder operation. /// </summary> public partial class DisassociateAssessmentReportEvidenceFolderResponse : 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// A record that contains the information needed to demonstrate compliance with the /// requirements specified by a control. Examples of evidence include change activity /// invoked by a user, or a system configuration snapshot. /// </summary> public partial class Evidence { private string _assessmentReportSelection; private Dictionary<string, string> _attributes = new Dictionary<string, string>(); private string _awsAccountId; private string _awsOrganization; private string _complianceCheck; private string _dataSource; private string _eventName; private string _eventSource; private string _evidenceAwsAccountId; private string _evidenceByType; private string _evidenceFolderId; private string _iamId; private string _id; private List<Resource> _resourcesIncluded = new List<Resource>(); private DateTime? _time; /// <summary> /// Gets and sets the property AssessmentReportSelection. /// <para> /// Specifies whether the evidence is included in the assessment report. /// </para> /// </summary> [AWSProperty(Min=0, Max=2048)] public string AssessmentReportSelection { get { return this._assessmentReportSelection; } set { this._assessmentReportSelection = value; } } // Check to see if AssessmentReportSelection property is set internal bool IsSetAssessmentReportSelection() { return this._assessmentReportSelection != null; } /// <summary> /// Gets and sets the property Attributes. /// <para> /// The names and values that are used by the evidence event. This includes an attribute /// name (such as <code>allowUsersToChangePassword</code>) and value (such as <code>true</code> /// or <code>false</code>). /// </para> /// </summary> public Dictionary<string, string> Attributes { get { return this._attributes; } set { this._attributes = value; } } // Check to see if Attributes property is set internal bool IsSetAttributes() { return this._attributes != null && this._attributes.Count > 0; } /// <summary> /// Gets and sets the property AwsAccountId. /// <para> /// The identifier for the Amazon Web Services account. /// </para> /// </summary> [AWSProperty(Min=12, Max=12)] public string AwsAccountId { get { return this._awsAccountId; } set { this._awsAccountId = value; } } // Check to see if AwsAccountId property is set internal bool IsSetAwsAccountId() { return this._awsAccountId != null; } /// <summary> /// Gets and sets the property AwsOrganization. /// <para> /// The Amazon Web Services account that the evidence is collected from, and its organization /// path. /// </para> /// </summary> [AWSProperty(Min=0, Max=2048)] public string AwsOrganization { get { return this._awsOrganization; } set { this._awsOrganization = value; } } // Check to see if AwsOrganization property is set internal bool IsSetAwsOrganization() { return this._awsOrganization != null; } /// <summary> /// Gets and sets the property ComplianceCheck. /// <para> /// The evaluation status for automated evidence that falls under the compliance check /// category. /// </para> /// <ul> <li> /// <para> /// Audit Manager classes evidence as non-compliant if Security Hub reports a <i>Fail</i> /// result, or if Config reports a <i>Non-compliant</i> result. /// </para> /// </li> <li> /// <para> /// Audit Manager classes evidence as compliant if Security Hub reports a <i>Pass</i> /// result, or if Config reports a <i>Compliant</i> result. /// </para> /// </li> <li> /// <para> /// If a compliance check isn't available or applicable, then no compliance evaluation /// can be made for that evidence. This is the case if the evidence uses Config or Security /// Hub as the underlying data source type, but those services aren't enabled. This is /// also the case if the evidence uses an underlying data source type that doesn't support /// compliance checks (such as manual evidence, Amazon Web Services API calls, or CloudTrail). /// /// </para> /// </li> </ul> /// </summary> [AWSProperty(Min=0, Max=2048)] public string ComplianceCheck { get { return this._complianceCheck; } set { this._complianceCheck = value; } } // Check to see if ComplianceCheck property is set internal bool IsSetComplianceCheck() { return this._complianceCheck != null; } /// <summary> /// Gets and sets the property DataSource. /// <para> /// The data source where the evidence was collected from. /// </para> /// </summary> [AWSProperty(Min=0, Max=2048)] public string DataSource { get { return this._dataSource; } set { this._dataSource = value; } } // Check to see if DataSource property is set internal bool IsSetDataSource() { return this._dataSource != null; } /// <summary> /// Gets and sets the property EventName. /// <para> /// The name of the evidence event. /// </para> /// </summary> [AWSProperty(Max=100)] public string EventName { get { return this._eventName; } set { this._eventName = value; } } // Check to see if EventName property is set internal bool IsSetEventName() { return this._eventName != null; } /// <summary> /// Gets and sets the property EventSource. /// <para> /// The Amazon Web Service that the evidence is collected from. /// </para> /// </summary> [AWSProperty(Min=1, Max=40)] public string EventSource { get { return this._eventSource; } set { this._eventSource = value; } } // Check to see if EventSource property is set internal bool IsSetEventSource() { return this._eventSource != null; } /// <summary> /// Gets and sets the property EvidenceAwsAccountId. /// <para> /// The identifier for the Amazon Web Services account. /// </para> /// </summary> [AWSProperty(Min=12, Max=12)] public string EvidenceAwsAccountId { get { return this._evidenceAwsAccountId; } set { this._evidenceAwsAccountId = value; } } // Check to see if EvidenceAwsAccountId property is set internal bool IsSetEvidenceAwsAccountId() { return this._evidenceAwsAccountId != null; } /// <summary> /// Gets and sets the property EvidenceByType. /// <para> /// The type of automated evidence. /// </para> /// </summary> [AWSProperty(Min=0, Max=2048)] public string EvidenceByType { get { return this._evidenceByType; } set { this._evidenceByType = value; } } // Check to see if EvidenceByType property is set internal bool IsSetEvidenceByType() { return this._evidenceByType != null; } /// <summary> /// Gets and sets the property EvidenceFolderId. /// <para> /// The identifier for the folder that the evidence is stored in. /// </para> /// </summary> [AWSProperty(Min=36, Max=36)] public string EvidenceFolderId { get { return this._evidenceFolderId; } set { this._evidenceFolderId = value; } } // Check to see if EvidenceFolderId property is set internal bool IsSetEvidenceFolderId() { return this._evidenceFolderId != null; } /// <summary> /// Gets and sets the property IamId. /// <para> /// The unique identifier for the user or role that's associated with the evidence. /// </para> /// </summary> [AWSProperty(Min=20, Max=2048)] public string IamId { get { return this._iamId; } set { this._iamId = value; } } // Check to see if IamId property is set internal bool IsSetIamId() { return this._iamId != null; } /// <summary> /// Gets and sets the property Id. /// <para> /// The identifier for the evidence. /// </para> /// </summary> [AWSProperty(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 ResourcesIncluded. /// <para> /// The list of resources that are assessed to generate the evidence. /// </para> /// </summary> public List<Resource> ResourcesIncluded { get { return this._resourcesIncluded; } set { this._resourcesIncluded = value; } } // Check to see if ResourcesIncluded property is set internal bool IsSetResourcesIncluded() { return this._resourcesIncluded != null && this._resourcesIncluded.Count > 0; } /// <summary> /// Gets and sets the property Time. /// <para> /// The timestamp that represents when the evidence was collected. /// </para> /// </summary> public DateTime Time { get { return this._time.GetValueOrDefault(); } set { this._time = value; } } // Check to see if Time property is set internal bool IsSetTime() { return this._time.HasValue; } } }
361
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// The settings object that specifies whether evidence finder is enabled. This object /// also describes the related event data store, and the backfill status for populating /// the event data store with evidence data. /// </summary> public partial class EvidenceFinderEnablement { private EvidenceFinderBackfillStatus _backfillStatus; private EvidenceFinderEnablementStatus _enablementStatus; private string _error; private string _eventDataStoreArn; /// <summary> /// Gets and sets the property BackfillStatus. /// <para> /// The current status of the evidence data backfill process. /// </para> /// /// <para> /// The backfill starts after you enable evidence finder. During this task, Audit Manager /// populates an event data store with your past two years’ worth of evidence data so /// that your evidence can be queried. /// </para> /// <ul> <li> /// <para> /// <code>NOT_STARTED</code> means that the backfill hasn’t started yet. /// </para> /// </li> <li> /// <para> /// <code>IN_PROGRESS</code> means that the backfill is in progress. This can take up /// to 7 days to complete, depending on the amount of evidence data. /// </para> /// </li> <li> /// <para> /// <code>COMPLETED</code> means that the backfill is complete. All of your past evidence /// is now queryable. /// </para> /// </li> </ul> /// </summary> public EvidenceFinderBackfillStatus BackfillStatus { get { return this._backfillStatus; } set { this._backfillStatus = value; } } // Check to see if BackfillStatus property is set internal bool IsSetBackfillStatus() { return this._backfillStatus != null; } /// <summary> /// Gets and sets the property EnablementStatus. /// <para> /// The current status of the evidence finder feature and the related event data store. /// /// </para> /// <ul> <li> /// <para> /// <code>ENABLE_IN_PROGRESS</code> means that you requested to enable evidence finder. /// An event data store is currently being created to support evidence finder queries. /// </para> /// </li> <li> /// <para> /// <code>ENABLED</code> means that an event data store was successfully created and /// evidence finder is enabled. We recommend that you wait 7 days until the event data /// store is backfilled with your past two years’ worth of evidence data. You can use /// evidence finder in the meantime, but not all data might be available until the backfill /// is complete. /// </para> /// </li> <li> /// <para> /// <code>DISABLE_IN_PROGRESS</code> means that you requested to disable evidence finder, /// and your request is pending the deletion of the event data store. /// </para> /// </li> <li> /// <para> /// <code>DISABLED</code> means that you have permanently disabled evidence finder and /// the event data store has been deleted. You can't re-enable evidence finder after this /// point. /// </para> /// </li> </ul> /// </summary> public EvidenceFinderEnablementStatus EnablementStatus { get { return this._enablementStatus; } set { this._enablementStatus = value; } } // Check to see if EnablementStatus property is set internal bool IsSetEnablementStatus() { return this._enablementStatus != null; } /// <summary> /// Gets and sets the property Error. /// <para> /// Represents any errors that occurred when enabling or disabling evidence finder. /// </para> /// </summary> [AWSProperty(Max=300)] public string 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 EventDataStoreArn. /// <para> /// The Amazon Resource Name (ARN) of the CloudTrail Lake event data store that’s used /// by evidence finder. The event data store is the lake of evidence data that evidence /// finder runs queries against. /// </para> /// </summary> [AWSProperty(Min=20, Max=2048)] public string EventDataStoreArn { get { return this._eventDataStoreArn; } set { this._eventDataStoreArn = value; } } // Check to see if EventDataStoreArn property is set internal bool IsSetEventDataStoreArn() { return this._eventDataStoreArn != null; } } }
167
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// A breakdown of the latest compliance check status for the evidence in your Audit Manager /// assessments. /// </summary> public partial class EvidenceInsights { private int? _compliantEvidenceCount; private int? _inconclusiveEvidenceCount; private int? _noncompliantEvidenceCount; /// <summary> /// Gets and sets the property CompliantEvidenceCount. /// <para> /// The number of compliance check evidence that Audit Manager classified as compliant. /// This includes evidence that was collected from Security Hub with a <i>Pass</i> ruling, /// or collected from Config with a <i>Compliant</i> ruling. /// </para> /// </summary> public int CompliantEvidenceCount { get { return this._compliantEvidenceCount.GetValueOrDefault(); } set { this._compliantEvidenceCount = value; } } // Check to see if CompliantEvidenceCount property is set internal bool IsSetCompliantEvidenceCount() { return this._compliantEvidenceCount.HasValue; } /// <summary> /// Gets and sets the property InconclusiveEvidenceCount. /// <para> /// The number of evidence that a compliance check ruling isn't available for. Evidence /// is inconclusive when the associated control uses Security Hub or Config as a data /// source but you didn't enable those services. This is also the case when a control /// uses a data source that doesn’t support compliance checks (for example, manual evidence, /// API calls, or CloudTrail). /// </para> /// <note> /// <para> /// If evidence has a compliance check status of <i>not applicable</i> in the console, /// it's classified as <i>inconclusive</i> in <code>EvidenceInsights</code> data. /// </para> /// </note> /// </summary> public int InconclusiveEvidenceCount { get { return this._inconclusiveEvidenceCount.GetValueOrDefault(); } set { this._inconclusiveEvidenceCount = value; } } // Check to see if InconclusiveEvidenceCount property is set internal bool IsSetInconclusiveEvidenceCount() { return this._inconclusiveEvidenceCount.HasValue; } /// <summary> /// Gets and sets the property NoncompliantEvidenceCount. /// <para> /// The number of compliance check evidence that Audit Manager classified as non-compliant. /// This includes evidence that was collected from Security Hub with a <i>Fail</i> ruling, /// or collected from Config with a <i>Non-compliant</i> ruling. /// </para> /// </summary> public int NoncompliantEvidenceCount { get { return this._noncompliantEvidenceCount.GetValueOrDefault(); } set { this._noncompliantEvidenceCount = value; } } // Check to see if NoncompliantEvidenceCount property is set internal bool IsSetNoncompliantEvidenceCount() { return this._noncompliantEvidenceCount.HasValue; } } }
110
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// The file that's used to structure and automate Audit Manager assessments for a given /// compliance standard. /// </summary> public partial class Framework { private string _arn; private string _complianceType; private List<ControlSet> _controlSets = new List<ControlSet>(); private string _controlSources; private DateTime? _createdAt; private string _createdBy; private string _description; private string _id; private DateTime? _lastUpdatedAt; private string _lastUpdatedBy; private string _logo; private string _name; private Dictionary<string, string> _tags = new Dictionary<string, string>(); private FrameworkType _type; /// <summary> /// Gets and sets the property Arn. /// <para> /// The Amazon Resource Name (ARN) of the framework. /// </para> /// </summary> [AWSProperty(Min=20, Max=2048)] 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 ComplianceType. /// <para> /// The compliance type that the framework supports, such as CIS or HIPAA. /// </para> /// </summary> [AWSProperty(Max=100)] public string ComplianceType { get { return this._complianceType; } set { this._complianceType = value; } } // Check to see if ComplianceType property is set internal bool IsSetComplianceType() { return this._complianceType != null; } /// <summary> /// Gets and sets the property ControlSets. /// <para> /// The control sets that are associated with the framework. /// </para> /// </summary> [AWSProperty(Min=1)] public List<ControlSet> ControlSets { get { return this._controlSets; } set { this._controlSets = value; } } // Check to see if ControlSets property is set internal bool IsSetControlSets() { return this._controlSets != null && this._controlSets.Count > 0; } /// <summary> /// Gets and sets the property ControlSources. /// <para> /// The control data sources where Audit Manager collects evidence from. /// </para> /// </summary> [AWSProperty(Min=1, Max=100)] public string ControlSources { get { return this._controlSources; } set { this._controlSources = value; } } // Check to see if ControlSources property is set internal bool IsSetControlSources() { return this._controlSources != null; } /// <summary> /// Gets and sets the property CreatedAt. /// <para> /// The time when the framework was created. /// </para> /// </summary> public DateTime CreatedAt { get { return this._createdAt.GetValueOrDefault(); } set { this._createdAt = value; } } // Check to see if CreatedAt property is set internal bool IsSetCreatedAt() { return this._createdAt.HasValue; } /// <summary> /// Gets and sets the property CreatedBy. /// <para> /// The user or role that created the framework. /// </para> /// </summary> [AWSProperty(Min=1, Max=100)] public string CreatedBy { get { return this._createdBy; } set { this._createdBy = value; } } // Check to see if CreatedBy property is set internal bool IsSetCreatedBy() { return this._createdBy != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the framework. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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 identifier for the framework. /// </para> /// </summary> [AWSProperty(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 LastUpdatedAt. /// <para> /// The time when the framework was most recently updated. /// </para> /// </summary> public DateTime LastUpdatedAt { get { return this._lastUpdatedAt.GetValueOrDefault(); } set { this._lastUpdatedAt = value; } } // Check to see if LastUpdatedAt property is set internal bool IsSetLastUpdatedAt() { return this._lastUpdatedAt.HasValue; } /// <summary> /// Gets and sets the property LastUpdatedBy. /// <para> /// The user or role that most recently updated the framework. /// </para> /// </summary> [AWSProperty(Min=1, Max=100)] public string LastUpdatedBy { get { return this._lastUpdatedBy; } set { this._lastUpdatedBy = value; } } // Check to see if LastUpdatedBy property is set internal bool IsSetLastUpdatedBy() { return this._lastUpdatedBy != null; } /// <summary> /// Gets and sets the property Logo. /// <para> /// The logo that's associated with the framework. /// </para> /// </summary> [AWSProperty(Min=1, Max=255)] public string Logo { get { return this._logo; } set { this._logo = value; } } // Check to see if Logo property is set internal bool IsSetLogo() { return this._logo != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the framework. /// </para> /// </summary> [AWSProperty(Min=1, Max=300)] 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 Tags. /// <para> /// The tags that are associated with the framework. /// </para> /// </summary> [AWSProperty(Min=0, Max=50)] 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; } /// <summary> /// Gets and sets the property Type. /// <para> /// Specifies whether the framework is a standard framework or a custom framework. /// </para> /// </summary> public FrameworkType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } } }
316
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// The metadata of a framework, such as the name, ID, or description. /// </summary> public partial class FrameworkMetadata { private string _complianceType; private string _description; private string _logo; private string _name; /// <summary> /// Gets and sets the property ComplianceType. /// <para> /// The compliance standard that's associated with the framework. For example, this could /// be PCI DSS or HIPAA. /// </para> /// </summary> [AWSProperty(Max=100)] public string ComplianceType { get { return this._complianceType; } set { this._complianceType = value; } } // Check to see if ComplianceType property is set internal bool IsSetComplianceType() { return this._complianceType != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the framework. /// </para> /// </summary> [AWSProperty(Min=1, Max=200)] 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 Logo. /// <para> /// The logo that's associated with the framework. /// </para> /// </summary> [AWSProperty(Min=1, Max=255)] public string Logo { get { return this._logo; } set { this._logo = value; } } // Check to see if Logo property is set internal bool IsSetLogo() { return this._logo != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the framework. /// </para> /// </summary> [AWSProperty(Min=1, Max=300)] 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; } } }
119
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetAccountStatus operation. /// Gets the registration status of an account in Audit Manager. /// </summary> public partial class GetAccountStatusRequest : AmazonAuditManagerRequest { } }
39
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetAccountStatus operation. /// </summary> public partial class GetAccountStatusResponse : AmazonWebServiceResponse { private AccountStatus _status; /// <summary> /// Gets and sets the property Status. /// <para> /// The status of the Amazon Web Services account. /// </para> /// </summary> public AccountStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetAssessmentFramework operation. /// Gets information about a specified framework. /// </summary> public partial class GetAssessmentFrameworkRequest : AmazonAuditManagerRequest { private string _frameworkId; /// <summary> /// Gets and sets the property FrameworkId. /// <para> /// The identifier for the framework. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string FrameworkId { get { return this._frameworkId; } set { this._frameworkId = value; } } // Check to see if FrameworkId property is set internal bool IsSetFrameworkId() { return this._frameworkId != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetAssessmentFramework operation. /// </summary> public partial class GetAssessmentFrameworkResponse : AmazonWebServiceResponse { private Framework _framework; /// <summary> /// Gets and sets the property Framework. /// <para> /// The framework that the <code>GetAssessmentFramework</code> API returned. /// </para> /// </summary> public Framework Framework { get { return this._framework; } set { this._framework = value; } } // Check to see if Framework property is set internal bool IsSetFramework() { return this._framework != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetAssessmentReportUrl operation. /// Gets the URL of an assessment report in Audit Manager. /// </summary> public partial class GetAssessmentReportUrlRequest : AmazonAuditManagerRequest { private string _assessmentId; private string _assessmentReportId; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The unique identifier for the assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property AssessmentReportId. /// <para> /// The unique identifier for the assessment report. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentReportId { get { return this._assessmentReportId; } set { this._assessmentReportId = value; } } // Check to see if AssessmentReportId property is set internal bool IsSetAssessmentReportId() { return this._assessmentReportId != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetAssessmentReportUrl operation. /// </summary> public partial class GetAssessmentReportUrlResponse : AmazonWebServiceResponse { private URL _preSignedUrl; /// <summary> /// Gets and sets the property PreSignedUrl. /// </summary> public URL PreSignedUrl { get { return this._preSignedUrl; } set { this._preSignedUrl = value; } } // Check to see if PreSignedUrl property is set internal bool IsSetPreSignedUrl() { return this._preSignedUrl != null; } } }
54
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetAssessment operation. /// Gets information about a specified assessment. /// </summary> public partial class GetAssessmentRequest : AmazonAuditManagerRequest { private string _assessmentId; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The unique identifier for the assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetAssessment operation. /// </summary> public partial class GetAssessmentResponse : AmazonWebServiceResponse { private Assessment _assessment; private Role _userRole; /// <summary> /// Gets and sets the property Assessment. /// </summary> public Assessment Assessment { get { return this._assessment; } set { this._assessment = value; } } // Check to see if Assessment property is set internal bool IsSetAssessment() { return this._assessment != null; } /// <summary> /// Gets and sets the property UserRole. /// </summary> public Role UserRole { get { return this._userRole; } set { this._userRole = value; } } // Check to see if UserRole property is set internal bool IsSetUserRole() { return this._userRole != null; } } }
70
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetChangeLogs operation. /// Gets a list of changelogs from Audit Manager. /// </summary> public partial class GetChangeLogsRequest : AmazonAuditManagerRequest { private string _assessmentId; private string _controlId; private string _controlSetId; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The unique identifier for the assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property ControlId. /// <para> /// The unique identifier for the control. /// </para> /// </summary> [AWSProperty(Min=36, Max=36)] public string ControlId { get { return this._controlId; } set { this._controlId = value; } } // Check to see if ControlId property is set internal bool IsSetControlId() { return this._controlId != null; } /// <summary> /// Gets and sets the property ControlSetId. /// <para> /// The unique identifier for the control set. /// </para> /// </summary> [AWSProperty(Min=1, Max=300)] public string ControlSetId { get { return this._controlSetId; } set { this._controlSetId = value; } } // Check to see if ControlSetId property is set internal bool IsSetControlSetId() { return this._controlSetId != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// Represents the maximum number of results on a page or for an API request call. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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; } } }
139
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetChangeLogs operation. /// </summary> public partial class GetChangeLogsResponse : AmazonWebServiceResponse { private List<ChangeLog> _changeLogs = new List<ChangeLog>(); private string _nextToken; /// <summary> /// Gets and sets the property ChangeLogs. /// <para> /// The list of user activity for the control. /// </para> /// </summary> public List<ChangeLog> ChangeLogs { get { return this._changeLogs; } set { this._changeLogs = value; } } // Check to see if ChangeLogs property is set internal bool IsSetChangeLogs() { return this._changeLogs != null && this._changeLogs.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
77
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetControl operation. /// Gets information about a specified control. /// </summary> public partial class GetControlRequest : AmazonAuditManagerRequest { private string _controlId; /// <summary> /// Gets and sets the property ControlId. /// <para> /// The identifier for the control. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string ControlId { get { return this._controlId; } set { this._controlId = value; } } // Check to see if ControlId property is set internal bool IsSetControlId() { return this._controlId != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetControl operation. /// </summary> public partial class GetControlResponse : AmazonWebServiceResponse { private Control _control; /// <summary> /// Gets and sets the property Control. /// <para> /// The details of the control that the <code>GetControl</code> API returned. /// </para> /// </summary> public Control Control { get { return this._control; } set { this._control = value; } } // Check to see if Control property is set internal bool IsSetControl() { return this._control != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetDelegations operation. /// Gets a list of delegations from an audit owner to a delegate. /// </summary> public partial class GetDelegationsRequest : AmazonAuditManagerRequest { private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// Represents the maximum number of results on a page or for an API request call. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetDelegations operation. /// </summary> public partial class GetDelegationsResponse : AmazonWebServiceResponse { private List<DelegationMetadata> _delegations = new List<DelegationMetadata>(); private string _nextToken; /// <summary> /// Gets and sets the property Delegations. /// <para> /// The list of delegations that the <code>GetDelegations</code> API returned. /// </para> /// </summary> public List<DelegationMetadata> Delegations { get { return this._delegations; } set { this._delegations = value; } } // Check to see if Delegations property is set internal bool IsSetDelegations() { return this._delegations != null && this._delegations.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
77
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetEvidenceByEvidenceFolder operation. /// Gets all evidence from a specified evidence folder in Audit Manager. /// </summary> public partial class GetEvidenceByEvidenceFolderRequest : AmazonAuditManagerRequest { private string _assessmentId; private string _controlSetId; private string _evidenceFolderId; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The identifier for the assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property ControlSetId. /// <para> /// The identifier for the control set. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=300)] public string ControlSetId { get { return this._controlSetId; } set { this._controlSetId = value; } } // Check to see if ControlSetId property is set internal bool IsSetControlSetId() { return this._controlSetId != null; } /// <summary> /// Gets and sets the property EvidenceFolderId. /// <para> /// The unique identifier for the folder that the evidence is stored in. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string EvidenceFolderId { get { return this._evidenceFolderId; } set { this._evidenceFolderId = value; } } // Check to see if EvidenceFolderId property is set internal bool IsSetEvidenceFolderId() { return this._evidenceFolderId != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// Represents the maximum number of results on a page or for an API request call. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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; } } }
139
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetEvidenceByEvidenceFolder operation. /// </summary> public partial class GetEvidenceByEvidenceFolderResponse : AmazonWebServiceResponse { private List<Evidence> _evidence = new List<Evidence>(); private string _nextToken; /// <summary> /// Gets and sets the property Evidence. /// <para> /// The list of evidence that the <code>GetEvidenceByEvidenceFolder</code> API returned. /// /// </para> /// </summary> public List<Evidence> Evidence { get { return this._evidence; } set { this._evidence = value; } } // Check to see if Evidence property is set internal bool IsSetEvidence() { return this._evidence != null && this._evidence.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetEvidenceFileUploadUrl operation. /// Creates a presigned Amazon S3 URL that can be used to upload a file as manual evidence. /// For instructions on how to use this operation, see <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/upload-evidence.html#how-to-upload-manual-evidence-files">Upload /// a file from your browser </a> in the <i>Audit Manager User Guide</i>. /// /// /// <para> /// The following restrictions apply to this operation: /// </para> /// <ul> <li> /// <para> /// Maximum size of an individual evidence file: 100 MB /// </para> /// </li> <li> /// <para> /// Number of daily manual evidence uploads per control: 100 /// </para> /// </li> <li> /// <para> /// Supported file formats: See <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/upload-evidence.html#supported-manual-evidence-files">Supported /// file types for manual evidence</a> in the <i>Audit Manager User Guide</i> /// </para> /// </li> </ul> /// <para> /// For more information about Audit Manager service restrictions, see <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/service-quotas.html">Quotas /// and restrictions for Audit Manager</a>. /// </para> /// </summary> public partial class GetEvidenceFileUploadUrlRequest : AmazonAuditManagerRequest { private string _fileName; /// <summary> /// Gets and sets the property FileName. /// <para> /// The file that you want to upload. For a list of supported file formats, see <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/upload-evidence.html#supported-manual-evidence-files">Supported /// file types for manual evidence</a> in the <i>Audit Manager User Guide</i>. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=300)] public string FileName { get { return this._fileName; } set { this._fileName = value; } } // Check to see if FileName property is set internal bool IsSetFileName() { return this._fileName != null; } } }
85
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetEvidenceFileUploadUrl operation. /// </summary> public partial class GetEvidenceFileUploadUrlResponse : AmazonWebServiceResponse { private string _evidenceFileName; private string _uploadUrl; /// <summary> /// Gets and sets the property EvidenceFileName. /// <para> /// The name of the uploaded manual evidence file that the presigned URL was generated /// for. /// </para> /// </summary> [AWSProperty(Min=1, Max=2048)] public string EvidenceFileName { get { return this._evidenceFileName; } set { this._evidenceFileName = value; } } // Check to see if EvidenceFileName property is set internal bool IsSetEvidenceFileName() { return this._evidenceFileName != null; } /// <summary> /// Gets and sets the property UploadUrl. /// <para> /// The presigned URL that was generated. /// </para> /// </summary> [AWSProperty(Min=1, Max=2048)] public string UploadUrl { get { return this._uploadUrl; } set { this._uploadUrl = value; } } // Check to see if UploadUrl property is set internal bool IsSetUploadUrl() { return this._uploadUrl != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetEvidenceFolder operation. /// Gets an evidence folder from a specified assessment in Audit Manager. /// </summary> public partial class GetEvidenceFolderRequest : AmazonAuditManagerRequest { private string _assessmentId; private string _controlSetId; private string _evidenceFolderId; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The unique identifier for the assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property ControlSetId. /// <para> /// The unique identifier for the control set. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=300)] public string ControlSetId { get { return this._controlSetId; } set { this._controlSetId = value; } } // Check to see if ControlSetId property is set internal bool IsSetControlSetId() { return this._controlSetId != null; } /// <summary> /// Gets and sets the property EvidenceFolderId. /// <para> /// The unique identifier for the folder that the evidence is stored in. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string EvidenceFolderId { get { return this._evidenceFolderId; } set { this._evidenceFolderId = value; } } // Check to see if EvidenceFolderId property is set internal bool IsSetEvidenceFolderId() { return this._evidenceFolderId != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetEvidenceFolder operation. /// </summary> public partial class GetEvidenceFolderResponse : AmazonWebServiceResponse { private AssessmentEvidenceFolder _evidenceFolder; /// <summary> /// Gets and sets the property EvidenceFolder. /// <para> /// The folder that the evidence is stored in. /// </para> /// </summary> public AssessmentEvidenceFolder EvidenceFolder { get { return this._evidenceFolder; } set { this._evidenceFolder = value; } } // Check to see if EvidenceFolder property is set internal bool IsSetEvidenceFolder() { return this._evidenceFolder != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetEvidenceFoldersByAssessmentControl operation. /// Gets a list of evidence folders that are associated with a specified control in an /// Audit Manager assessment. /// </summary> public partial class GetEvidenceFoldersByAssessmentControlRequest : AmazonAuditManagerRequest { private string _assessmentId; private string _controlId; private string _controlSetId; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The identifier for the assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property ControlId. /// <para> /// The identifier for the control. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string ControlId { get { return this._controlId; } set { this._controlId = value; } } // Check to see if ControlId property is set internal bool IsSetControlId() { return this._controlId != null; } /// <summary> /// Gets and sets the property ControlSetId. /// <para> /// The identifier for the control set. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=300)] public string ControlSetId { get { return this._controlSetId; } set { this._controlSetId = value; } } // Check to see if ControlSetId property is set internal bool IsSetControlSetId() { return this._controlSetId != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// Represents the maximum number of results on a page or for an API request call. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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; } } }
140
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetEvidenceFoldersByAssessmentControl operation. /// </summary> public partial class GetEvidenceFoldersByAssessmentControlResponse : AmazonWebServiceResponse { private List<AssessmentEvidenceFolder> _evidenceFolders = new List<AssessmentEvidenceFolder>(); private string _nextToken; /// <summary> /// Gets and sets the property EvidenceFolders. /// <para> /// The list of evidence folders that the <code>GetEvidenceFoldersByAssessmentControl</code> /// API returned. /// </para> /// </summary> public List<AssessmentEvidenceFolder> EvidenceFolders { get { return this._evidenceFolders; } set { this._evidenceFolders = value; } } // Check to see if EvidenceFolders property is set internal bool IsSetEvidenceFolders() { return this._evidenceFolders != null && this._evidenceFolders.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetEvidenceFoldersByAssessment operation. /// Gets the evidence folders from a specified assessment in Audit Manager. /// </summary> public partial class GetEvidenceFoldersByAssessmentRequest : AmazonAuditManagerRequest { private string _assessmentId; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The unique identifier for the assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// Represents the maximum number of results on a page or for an API request call. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetEvidenceFoldersByAssessment operation. /// </summary> public partial class GetEvidenceFoldersByAssessmentResponse : AmazonWebServiceResponse { private List<AssessmentEvidenceFolder> _evidenceFolders = new List<AssessmentEvidenceFolder>(); private string _nextToken; /// <summary> /// Gets and sets the property EvidenceFolders. /// <para> /// The list of evidence folders that the <code>GetEvidenceFoldersByAssessment</code> /// API returned. /// </para> /// </summary> public List<AssessmentEvidenceFolder> EvidenceFolders { get { return this._evidenceFolders; } set { this._evidenceFolders = value; } } // Check to see if EvidenceFolders property is set internal bool IsSetEvidenceFolders() { return this._evidenceFolders != null && this._evidenceFolders.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetEvidence operation. /// Gets information about a specified evidence item. /// </summary> public partial class GetEvidenceRequest : AmazonAuditManagerRequest { private string _assessmentId; private string _controlSetId; private string _evidenceFolderId; private string _evidenceId; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The unique identifier for the assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property ControlSetId. /// <para> /// The unique identifier for the control set. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=300)] public string ControlSetId { get { return this._controlSetId; } set { this._controlSetId = value; } } // Check to see if ControlSetId property is set internal bool IsSetControlSetId() { return this._controlSetId != null; } /// <summary> /// Gets and sets the property EvidenceFolderId. /// <para> /// The unique identifier for the folder that the evidence is stored in. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string EvidenceFolderId { get { return this._evidenceFolderId; } set { this._evidenceFolderId = value; } } // Check to see if EvidenceFolderId property is set internal bool IsSetEvidenceFolderId() { return this._evidenceFolderId != null; } /// <summary> /// Gets and sets the property EvidenceId. /// <para> /// The unique identifier for the evidence. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string EvidenceId { get { return this._evidenceId; } set { this._evidenceId = value; } } // Check to see if EvidenceId property is set internal bool IsSetEvidenceId() { return this._evidenceId != null; } } }
119
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetEvidence operation. /// </summary> public partial class GetEvidenceResponse : AmazonWebServiceResponse { private Evidence _evidence; /// <summary> /// Gets and sets the property Evidence. /// <para> /// The evidence that the <code>GetEvidence</code> API returned. /// </para> /// </summary> public Evidence Evidence { get { return this._evidence; } set { this._evidence = value; } } // Check to see if Evidence property is set internal bool IsSetEvidence() { return this._evidence != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetInsightsByAssessment operation. /// Gets the latest analytics data for a specific active assessment. /// </summary> public partial class GetInsightsByAssessmentRequest : AmazonAuditManagerRequest { private string _assessmentId; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The unique identifier for the assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetInsightsByAssessment operation. /// </summary> public partial class GetInsightsByAssessmentResponse : AmazonWebServiceResponse { private InsightsByAssessment _insights; /// <summary> /// Gets and sets the property Insights. /// <para> /// The assessment analytics data that the <code>GetInsightsByAssessment</code> API returned. /// /// </para> /// </summary> public InsightsByAssessment Insights { get { return this._insights; } set { this._insights = value; } } // Check to see if Insights property is set internal bool IsSetInsights() { return this._insights != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetInsights operation. /// Gets the latest analytics data for all your current active assessments. /// </summary> public partial class GetInsightsRequest : AmazonAuditManagerRequest { } }
39
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetInsights operation. /// </summary> public partial class GetInsightsResponse : AmazonWebServiceResponse { private Insights _insights; /// <summary> /// Gets and sets the property Insights. /// <para> /// The analytics data that the <code>GetInsights</code> API returned. /// </para> /// </summary> public Insights Insights { get { return this._insights; } set { this._insights = value; } } // Check to see if Insights property is set internal bool IsSetInsights() { return this._insights != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetOrganizationAdminAccount operation. /// Gets the name of the delegated Amazon Web Services administrator account for a specified /// organization. /// </summary> public partial class GetOrganizationAdminAccountRequest : AmazonAuditManagerRequest { } }
40
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetOrganizationAdminAccount operation. /// </summary> public partial class GetOrganizationAdminAccountResponse : AmazonWebServiceResponse { private string _adminAccountId; private string _organizationId; /// <summary> /// Gets and sets the property AdminAccountId. /// <para> /// The identifier for the administrator account. /// </para> /// </summary> [AWSProperty(Min=12, Max=12)] public string AdminAccountId { get { return this._adminAccountId; } set { this._adminAccountId = value; } } // Check to see if AdminAccountId property is set internal bool IsSetAdminAccountId() { return this._adminAccountId != null; } /// <summary> /// Gets and sets the property OrganizationId. /// <para> /// The identifier for the organization. /// </para> /// </summary> [AWSProperty(Min=12, Max=34)] public string OrganizationId { get { return this._organizationId; } set { this._organizationId = value; } } // Check to see if OrganizationId property is set internal bool IsSetOrganizationId() { return this._organizationId != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetServicesInScope operation. /// Gets a list of all of the Amazon Web Services that you can choose to include in your /// assessment. When you <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_CreateAssessment.html">create /// an assessment</a>, specify which of these services you want to include to narrow the /// assessment's <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_Scope.html">scope</a>. /// </summary> public partial class GetServicesInScopeRequest : AmazonAuditManagerRequest { } }
42
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetServicesInScope operation. /// </summary> public partial class GetServicesInScopeResponse : AmazonWebServiceResponse { private List<ServiceMetadata> _serviceMetadata = new List<ServiceMetadata>(); /// <summary> /// Gets and sets the property ServiceMetadata. /// <para> /// The metadata that's associated with the Amazon Web Service. /// </para> /// </summary> public List<ServiceMetadata> ServiceMetadata { get { return this._serviceMetadata; } set { this._serviceMetadata = value; } } // Check to see if ServiceMetadata property is set internal bool IsSetServiceMetadata() { return this._serviceMetadata != null && this._serviceMetadata.Count > 0; } } }
57
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the GetSettings operation. /// Gets the settings for a specified Amazon Web Services account. /// </summary> public partial class GetSettingsRequest : AmazonAuditManagerRequest { private SettingAttribute _attribute; /// <summary> /// Gets and sets the property Attribute. /// <para> /// The list of setting attribute enum values. /// </para> /// </summary> [AWSProperty(Required=true)] public SettingAttribute Attribute { get { return this._attribute; } set { this._attribute = value; } } // Check to see if Attribute property is set internal bool IsSetAttribute() { return this._attribute != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the GetSettings operation. /// </summary> public partial class GetSettingsResponse : AmazonWebServiceResponse { private Settings _settings; /// <summary> /// Gets and sets the property Settings. /// <para> /// The settings object that holds all supported Audit Manager settings. /// </para> /// </summary> public Settings Settings { get { return this._settings; } set { this._settings = value; } } // Check to see if Settings property is set internal bool IsSetSettings() { return this._settings != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// A summary of the latest analytics data for all your active assessments. /// /// /// <para> /// This summary is a snapshot of the data that your active assessments collected on the /// <code>lastUpdated</code> date. It’s important to understand that the following totals /// are daily counts based on this date — they aren’t a total sum to date. /// </para> /// /// <para> /// The <code>Insights</code> data is eventually consistent. This means that, when you /// read data from <code>Insights</code>, the response might not instantly reflect the /// results of a recently completed write or update operation. If you repeat your read /// request after a few hours, the response should return the latest data. /// </para> /// <note> /// <para> /// If you delete an assessment or change its status to inactive, <code>InsightsByAssessment</code> /// includes data for that assessment as follows. /// </para> /// <ul> <li> /// <para> /// <b>Inactive assessments</b> - If Audit Manager collected evidence for your assessment /// before you changed it inactive, that evidence is included in the <code>InsightsByAssessment</code> /// counts for that day. /// </para> /// </li> <li> /// <para> /// <b>Deleted assessments</b> - If Audit Manager collected evidence for your assessment /// before you deleted it, that evidence isn't included in the <code>InsightsByAssessment</code> /// counts for that day. /// </para> /// </li> </ul> </note> /// </summary> public partial class Insights { private int? _activeAssessmentsCount; private int? _assessmentControlsCountByNoncompliantEvidence; private int? _compliantEvidenceCount; private int? _inconclusiveEvidenceCount; private DateTime? _lastUpdated; private int? _noncompliantEvidenceCount; private int? _totalAssessmentControlsCount; /// <summary> /// Gets and sets the property ActiveAssessmentsCount. /// <para> /// The number of active assessments in Audit Manager. /// </para> /// </summary> public int ActiveAssessmentsCount { get { return this._activeAssessmentsCount.GetValueOrDefault(); } set { this._activeAssessmentsCount = value; } } // Check to see if ActiveAssessmentsCount property is set internal bool IsSetActiveAssessmentsCount() { return this._activeAssessmentsCount.HasValue; } /// <summary> /// Gets and sets the property AssessmentControlsCountByNoncompliantEvidence. /// <para> /// The number of assessment controls that collected non-compliant evidence on the <code>lastUpdated</code> /// date. /// </para> /// </summary> public int AssessmentControlsCountByNoncompliantEvidence { get { return this._assessmentControlsCountByNoncompliantEvidence.GetValueOrDefault(); } set { this._assessmentControlsCountByNoncompliantEvidence = value; } } // Check to see if AssessmentControlsCountByNoncompliantEvidence property is set internal bool IsSetAssessmentControlsCountByNoncompliantEvidence() { return this._assessmentControlsCountByNoncompliantEvidence.HasValue; } /// <summary> /// Gets and sets the property CompliantEvidenceCount. /// <para> /// The number of compliance check evidence that Audit Manager classified as compliant /// on the <code>lastUpdated</code> date. This includes evidence that was collected from /// Security Hub with a <i>Pass</i> ruling, or collected from Config with a <i>Compliant</i> /// ruling. /// </para> /// </summary> public int CompliantEvidenceCount { get { return this._compliantEvidenceCount.GetValueOrDefault(); } set { this._compliantEvidenceCount = value; } } // Check to see if CompliantEvidenceCount property is set internal bool IsSetCompliantEvidenceCount() { return this._compliantEvidenceCount.HasValue; } /// <summary> /// Gets and sets the property InconclusiveEvidenceCount. /// <para> /// The number of evidence without a compliance check ruling. Evidence is inconclusive /// when the associated control uses Security Hub or Config as a data source but you didn't /// enable those services. This is also the case when a control uses a data source that /// doesn’t support compliance checks (for example: manual evidence, API calls, or CloudTrail). /// /// </para> /// <note> /// <para> /// If evidence has a compliance check status of <i>not applicable</i>, it's classed as /// <i>inconclusive</i> in <code>Insights</code> data. /// </para> /// </note> /// </summary> public int InconclusiveEvidenceCount { get { return this._inconclusiveEvidenceCount.GetValueOrDefault(); } set { this._inconclusiveEvidenceCount = value; } } // Check to see if InconclusiveEvidenceCount property is set internal bool IsSetInconclusiveEvidenceCount() { return this._inconclusiveEvidenceCount.HasValue; } /// <summary> /// Gets and sets the property LastUpdated. /// <para> /// The time when the cross-assessment insights were last updated. /// </para> /// </summary> public DateTime LastUpdated { get { return this._lastUpdated.GetValueOrDefault(); } set { this._lastUpdated = value; } } // Check to see if LastUpdated property is set internal bool IsSetLastUpdated() { return this._lastUpdated.HasValue; } /// <summary> /// Gets and sets the property NoncompliantEvidenceCount. /// <para> /// The number of compliance check evidence that Audit Manager classified as non-compliant /// on the <code>lastUpdated</code> date. This includes evidence that was collected from /// Security Hub with a <i>Fail</i> ruling, or collected from Config with a <i>Non-compliant</i> /// ruling. /// </para> /// </summary> public int NoncompliantEvidenceCount { get { return this._noncompliantEvidenceCount.GetValueOrDefault(); } set { this._noncompliantEvidenceCount = value; } } // Check to see if NoncompliantEvidenceCount property is set internal bool IsSetNoncompliantEvidenceCount() { return this._noncompliantEvidenceCount.HasValue; } /// <summary> /// Gets and sets the property TotalAssessmentControlsCount. /// <para> /// The total number of controls across all active assessments. /// </para> /// </summary> public int TotalAssessmentControlsCount { get { return this._totalAssessmentControlsCount.GetValueOrDefault(); } set { this._totalAssessmentControlsCount = value; } } // Check to see if TotalAssessmentControlsCount property is set internal bool IsSetTotalAssessmentControlsCount() { return this._totalAssessmentControlsCount.HasValue; } } }
220
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// A summary of the latest analytics data for a specific active assessment. /// /// /// <para> /// This summary is a snapshot of the data that was collected on the <code>lastUpdated</code> /// date. It’s important to understand that the totals in <code>InsightsByAssessment</code> /// are daily counts based on this date — they aren’t a total sum to date. /// </para> /// /// <para> /// The <code>InsightsByAssessment</code> data is eventually consistent. This means that /// when you read data from <code>InsightsByAssessment</code>, the response might not /// instantly reflect the results of a recently completed write or update operation. If /// you repeat your read request after a few hours, the response returns the latest data. /// </para> /// <note> /// <para> /// If you delete an assessment or change its status to inactive, <code>InsightsByAssessment</code> /// includes data for that assessment as follows. /// </para> /// <ul> <li> /// <para> /// <b>Inactive assessments</b> - If Audit Manager collected evidence for your assessment /// before you changed it inactive, that evidence is included in the <code>InsightsByAssessment</code> /// counts for that day. /// </para> /// </li> <li> /// <para> /// <b>Deleted assessments</b> - If Audit Manager collected evidence for your assessment /// before you deleted it, that evidence isn't included in the <code>InsightsByAssessment</code> /// counts for that day. /// </para> /// </li> </ul> </note> /// </summary> public partial class InsightsByAssessment { private int? _assessmentControlsCountByNoncompliantEvidence; private int? _compliantEvidenceCount; private int? _inconclusiveEvidenceCount; private DateTime? _lastUpdated; private int? _noncompliantEvidenceCount; private int? _totalAssessmentControlsCount; /// <summary> /// Gets and sets the property AssessmentControlsCountByNoncompliantEvidence. /// <para> /// The number of assessment controls that collected non-compliant evidence on the <code>lastUpdated</code> /// date. /// </para> /// </summary> public int AssessmentControlsCountByNoncompliantEvidence { get { return this._assessmentControlsCountByNoncompliantEvidence.GetValueOrDefault(); } set { this._assessmentControlsCountByNoncompliantEvidence = value; } } // Check to see if AssessmentControlsCountByNoncompliantEvidence property is set internal bool IsSetAssessmentControlsCountByNoncompliantEvidence() { return this._assessmentControlsCountByNoncompliantEvidence.HasValue; } /// <summary> /// Gets and sets the property CompliantEvidenceCount. /// <para> /// The number of compliance check evidence that Audit Manager classified as compliant. /// This includes evidence that was collected from Security Hub with a <i>Pass</i> ruling, /// or collected from Config with a <i>Compliant</i> ruling. /// </para> /// </summary> public int CompliantEvidenceCount { get { return this._compliantEvidenceCount.GetValueOrDefault(); } set { this._compliantEvidenceCount = value; } } // Check to see if CompliantEvidenceCount property is set internal bool IsSetCompliantEvidenceCount() { return this._compliantEvidenceCount.HasValue; } /// <summary> /// Gets and sets the property InconclusiveEvidenceCount. /// <para> /// The amount of evidence without a compliance check ruling. Evidence is inconclusive /// if the associated control uses Security Hub or Config as a data source and you didn't /// enable those services. This is also the case if a control uses a data source that /// doesn’t support compliance checks (for example, manual evidence, API calls, or CloudTrail). /// /// </para> /// <note> /// <para> /// If evidence has a compliance check status of <i>not applicable</i>, it's classified /// as <i>inconclusive</i> in <code>InsightsByAssessment</code> data. /// </para> /// </note> /// </summary> public int InconclusiveEvidenceCount { get { return this._inconclusiveEvidenceCount.GetValueOrDefault(); } set { this._inconclusiveEvidenceCount = value; } } // Check to see if InconclusiveEvidenceCount property is set internal bool IsSetInconclusiveEvidenceCount() { return this._inconclusiveEvidenceCount.HasValue; } /// <summary> /// Gets and sets the property LastUpdated. /// <para> /// The time when the assessment insights were last updated. /// </para> /// </summary> public DateTime LastUpdated { get { return this._lastUpdated.GetValueOrDefault(); } set { this._lastUpdated = value; } } // Check to see if LastUpdated property is set internal bool IsSetLastUpdated() { return this._lastUpdated.HasValue; } /// <summary> /// Gets and sets the property NoncompliantEvidenceCount. /// <para> /// The number of compliance check evidence that Audit Manager classified as non-compliant. /// This includes evidence that was collected from Security Hub with a <i>Fail</i> ruling, /// or collected from Config with a <i>Non-compliant</i> ruling. /// </para> /// </summary> public int NoncompliantEvidenceCount { get { return this._noncompliantEvidenceCount.GetValueOrDefault(); } set { this._noncompliantEvidenceCount = value; } } // Check to see if NoncompliantEvidenceCount property is set internal bool IsSetNoncompliantEvidenceCount() { return this._noncompliantEvidenceCount.HasValue; } /// <summary> /// Gets and sets the property TotalAssessmentControlsCount. /// <para> /// The total number of controls in the assessment. /// </para> /// </summary> public int TotalAssessmentControlsCount { get { return this._totalAssessmentControlsCount.GetValueOrDefault(); } set { this._totalAssessmentControlsCount = value; } } // Check to see if TotalAssessmentControlsCount property is set internal bool IsSetTotalAssessmentControlsCount() { return this._totalAssessmentControlsCount.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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// An internal service error occurred during the processing of your request. Try again /// later. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class InternalServerException : AmazonAuditManagerException { /// <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 } }
125
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the ListAssessmentControlInsightsByControlDomain operation. /// Lists the latest analytics data for controls within a specific control domain and /// a specific active assessment. /// /// <note> /// <para> /// Control insights are listed only if the control belongs to the control domain and /// assessment that was specified. Moreover, the control must have collected evidence /// on the <code>lastUpdated</code> date of <code>controlInsightsByAssessment</code>. /// If neither of these conditions are met, no data is listed for that control. /// </para> /// </note> /// </summary> public partial class ListAssessmentControlInsightsByControlDomainRequest : AmazonAuditManagerRequest { private string _assessmentId; private string _controlDomainId; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The unique identifier for the active assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property ControlDomainId. /// <para> /// The unique identifier for the control domain. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string ControlDomainId { get { return this._controlDomainId; } set { this._controlDomainId = value; } } // Check to see if ControlDomainId property is set internal bool IsSetControlDomainId() { return this._controlDomainId != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// Represents the maximum number of results on a page or for an API request call. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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; } } }
129
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the ListAssessmentControlInsightsByControlDomain operation. /// </summary> public partial class ListAssessmentControlInsightsByControlDomainResponse : AmazonWebServiceResponse { private List<ControlInsightsMetadataByAssessmentItem> _controlInsightsByAssessment = new List<ControlInsightsMetadataByAssessmentItem>(); private string _nextToken; /// <summary> /// Gets and sets the property ControlInsightsByAssessment. /// <para> /// The assessment control analytics data that the <code>ListAssessmentControlInsightsByControlDomain</code> /// API returned. /// </para> /// </summary> public List<ControlInsightsMetadataByAssessmentItem> ControlInsightsByAssessment { get { return this._controlInsightsByAssessment; } set { this._controlInsightsByAssessment = value; } } // Check to see if ControlInsightsByAssessment property is set internal bool IsSetControlInsightsByAssessment() { return this._controlInsightsByAssessment != null && this._controlInsightsByAssessment.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the ListAssessmentFrameworkShareRequests operation. /// Returns a list of sent or received share requests for custom frameworks in Audit /// Manager. /// </summary> public partial class ListAssessmentFrameworkShareRequestsRequest : AmazonAuditManagerRequest { private int? _maxResults; private string _nextToken; private ShareRequestType _requestType; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// Represents the maximum number of results on a page or for an API request call. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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 RequestType. /// <para> /// Specifies whether the share request is a sent request or a received request. /// </para> /// </summary> [AWSProperty(Required=true)] public ShareRequestType RequestType { get { return this._requestType; } set { this._requestType = value; } } // Check to see if RequestType property is set internal bool IsSetRequestType() { return this._requestType != 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the ListAssessmentFrameworkShareRequests operation. /// </summary> public partial class ListAssessmentFrameworkShareRequestsResponse : AmazonWebServiceResponse { private List<AssessmentFrameworkShareRequest> _assessmentFrameworkShareRequests = new List<AssessmentFrameworkShareRequest>(); private string _nextToken; /// <summary> /// Gets and sets the property AssessmentFrameworkShareRequests. /// <para> /// The list of share requests that the <code>ListAssessmentFrameworkShareRequests</code> /// API returned. /// </para> /// </summary> public List<AssessmentFrameworkShareRequest> AssessmentFrameworkShareRequests { get { return this._assessmentFrameworkShareRequests; } set { this._assessmentFrameworkShareRequests = value; } } // Check to see if AssessmentFrameworkShareRequests property is set internal bool IsSetAssessmentFrameworkShareRequests() { return this._assessmentFrameworkShareRequests != null && this._assessmentFrameworkShareRequests.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the ListAssessmentFrameworks operation. /// Returns a list of the frameworks that are available in the Audit Manager framework /// library. /// </summary> public partial class ListAssessmentFrameworksRequest : AmazonAuditManagerRequest { private FrameworkType _frameworkType; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property FrameworkType. /// <para> /// The type of framework, such as a standard framework or a custom framework. /// </para> /// </summary> [AWSProperty(Required=true)] public FrameworkType FrameworkType { get { return this._frameworkType; } set { this._frameworkType = value; } } // Check to see if FrameworkType property is set internal bool IsSetFrameworkType() { return this._frameworkType != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// Represents the maximum number of results on a page or for an API request call. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the ListAssessmentFrameworks operation. /// </summary> public partial class ListAssessmentFrameworksResponse : AmazonWebServiceResponse { private List<AssessmentFrameworkMetadata> _frameworkMetadataList = new List<AssessmentFrameworkMetadata>(); private string _nextToken; /// <summary> /// Gets and sets the property FrameworkMetadataList. /// <para> /// A list of metadata that the <code>ListAssessmentFrameworks</code> API returns for /// each framework. /// </para> /// </summary> public List<AssessmentFrameworkMetadata> FrameworkMetadataList { get { return this._frameworkMetadataList; } set { this._frameworkMetadataList = value; } } // Check to see if FrameworkMetadataList property is set internal bool IsSetFrameworkMetadataList() { return this._frameworkMetadataList != null && this._frameworkMetadataList.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the ListAssessmentReports operation. /// Returns a list of assessment reports created in Audit Manager. /// </summary> public partial class ListAssessmentReportsRequest : AmazonAuditManagerRequest { private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// Represents the maximum number of results on a page or for an API request call. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the ListAssessmentReports operation. /// </summary> public partial class ListAssessmentReportsResponse : AmazonWebServiceResponse { private List<AssessmentReportMetadata> _assessmentReports = new List<AssessmentReportMetadata>(); private string _nextToken; /// <summary> /// Gets and sets the property AssessmentReports. /// <para> /// The list of assessment reports that the <code>ListAssessmentReports</code> API returned. /// /// </para> /// </summary> public List<AssessmentReportMetadata> AssessmentReports { get { return this._assessmentReports; } set { this._assessmentReports = value; } } // Check to see if AssessmentReports property is set internal bool IsSetAssessmentReports() { return this._assessmentReports != null && this._assessmentReports.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the ListAssessments operation. /// Returns a list of current and past assessments from Audit Manager. /// </summary> public partial class ListAssessmentsRequest : AmazonAuditManagerRequest { private int? _maxResults; private string _nextToken; private AssessmentStatus _status; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// Represents the maximum number of results on a page or for an API request call. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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> /// The current status of the assessment. /// </para> /// </summary> public AssessmentStatus 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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the ListAssessments operation. /// </summary> public partial class ListAssessmentsResponse : AmazonWebServiceResponse { private List<AssessmentMetadataItem> _assessmentMetadata = new List<AssessmentMetadataItem>(); private string _nextToken; /// <summary> /// Gets and sets the property AssessmentMetadata. /// <para> /// The metadata that the <code>ListAssessments</code> API returns for each assessment. /// </para> /// </summary> public List<AssessmentMetadataItem> AssessmentMetadata { get { return this._assessmentMetadata; } set { this._assessmentMetadata = value; } } // Check to see if AssessmentMetadata property is set internal bool IsSetAssessmentMetadata() { return this._assessmentMetadata != null && this._assessmentMetadata.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
77
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// Container for the parameters to the ListControlDomainInsightsByAssessment operation. /// Lists analytics data for control domains within a specified active assessment. /// /// <note> /// <para> /// A control domain is listed only if at least one of the controls within that domain /// collected evidence on the <code>lastUpdated</code> date of <code>controlDomainInsights</code>. /// If this condition isn’t met, no data is listed for that domain. /// </para> /// </note> /// </summary> public partial class ListControlDomainInsightsByAssessmentRequest : AmazonAuditManagerRequest { private string _assessmentId; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property AssessmentId. /// <para> /// The unique identifier for the active assessment. /// </para> /// </summary> [AWSProperty(Required=true, Min=36, Max=36)] public string AssessmentId { get { return this._assessmentId; } set { this._assessmentId = value; } } // Check to see if AssessmentId property is set internal bool IsSetAssessmentId() { return this._assessmentId != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// Represents the maximum number of results on a page or for an API request call. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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; } } }
107
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 auditmanager-2017-07-25.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.AuditManager.Model { /// <summary> /// This is the response object from the ListControlDomainInsightsByAssessment operation. /// </summary> public partial class ListControlDomainInsightsByAssessmentResponse : AmazonWebServiceResponse { private List<ControlDomainInsights> _controlDomainInsights = new List<ControlDomainInsights>(); private string _nextToken; /// <summary> /// Gets and sets the property ControlDomainInsights. /// <para> /// The control domain analytics data that the <code>ListControlDomainInsightsByAssessment</code> /// API returned. /// </para> /// </summary> public List<ControlDomainInsights> ControlDomainInsights { get { return this._controlDomainInsights; } set { this._controlDomainInsights = value; } } // Check to see if ControlDomainInsights property is set internal bool IsSetControlDomainInsights() { return this._controlDomainInsights != null && this._controlDomainInsights.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token that's used to fetch the next set of results. /// </para> /// </summary> [AWSProperty(Min=1, Max=1000)] 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