/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the codeguru-reviewer-2019-09-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.CodeGuruReviewer.Model
{
///
/// Information about a third-party source repository connected to CodeGuru Reviewer.
///
public partial class ThirdPartySourceRepository
{
private string _connectionArn;
private string _name;
private string _owner;
///
/// Gets and sets the property ConnectionArn.
///
/// The Amazon Resource Name (ARN) of an Amazon Web Services CodeStar Connections connection.
/// Its format is arn:aws:codestar-connections:region-id:aws-account_id:connection/connection-id
.
/// For more information, see Connection
/// in the Amazon Web Services CodeStar Connections API Reference.
///
///
[AWSProperty(Required=true, Min=0, Max=256)]
public string ConnectionArn
{
get { return this._connectionArn; }
set { this._connectionArn = value; }
}
// Check to see if ConnectionArn property is set
internal bool IsSetConnectionArn()
{
return this._connectionArn != null;
}
///
/// Gets and sets the property Name.
///
/// The name of the third party source repository.
///
///
[AWSProperty(Required=true, Min=1, Max=100)]
public string Name
{
get { return this._name; }
set { this._name = value; }
}
// Check to see if Name property is set
internal bool IsSetName()
{
return this._name != null;
}
///
/// Gets and sets the property Owner.
///
/// The owner of the repository. For a GitHub, GitHub Enterprise, or Bitbucket repository,
/// this is the username for the account that owns the repository. For an S3 repository,
/// this can be the username or Amazon Web Services account ID
///
///
[AWSProperty(Required=true, Min=1, Max=100)]
public string Owner
{
get { return this._owner; }
set { this._owner = value; }
}
// Check to see if Owner property is set
internal bool IsSetOwner()
{
return this._owner != null;
}
}
}