/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the migrationhubstrategy-2020-02-19.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.MigrationHubStrategyRecommendations.Model
{
///
/// Container for the parameters to the StartAssessment operation.
/// Starts the assessment of an on-premises environment.
///
public partial class StartAssessmentRequest : AmazonMigrationHubStrategyRecommendationsRequest
{
private List _assessmentTargets = new List();
private string _s3bucketForAnalysisData;
private string _s3bucketForReportData;
///
/// Gets and sets the property AssessmentTargets.
///
/// List of criteria for assessment.
///
///
[AWSProperty(Min=0, Max=10)]
public List AssessmentTargets
{
get { return this._assessmentTargets; }
set { this._assessmentTargets = value; }
}
// Check to see if AssessmentTargets property is set
internal bool IsSetAssessmentTargets()
{
return this._assessmentTargets != null && this._assessmentTargets.Count > 0;
}
///
/// Gets and sets the property S3bucketForAnalysisData.
///
/// The S3 bucket used by the collectors to send analysis data to the service. The bucket
/// name must begin with migrationhub-strategy-
.
///
///
[AWSProperty(Min=0, Max=63)]
public string S3bucketForAnalysisData
{
get { return this._s3bucketForAnalysisData; }
set { this._s3bucketForAnalysisData = value; }
}
// Check to see if S3bucketForAnalysisData property is set
internal bool IsSetS3bucketForAnalysisData()
{
return this._s3bucketForAnalysisData != null;
}
///
/// Gets and sets the property S3bucketForReportData.
///
/// The S3 bucket where all the reports generated by the service are stored. The bucket
/// name must begin with migrationhub-strategy-
.
///
///
[AWSProperty(Min=0, Max=63)]
public string S3bucketForReportData
{
get { return this._s3bucketForReportData; }
set { this._s3bucketForReportData = value; }
}
// Check to see if S3bucketForReportData property is set
internal bool IsSetS3bucketForReportData()
{
return this._s3bucketForReportData != null;
}
}
}