GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Paws::CodeStarConnections::CreateHost(3) User Contributed Perl Documentation Paws::CodeStarConnections::CreateHost(3)

Paws::CodeStarConnections::CreateHost - Arguments for method CreateHost on Paws::CodeStarConnections

This class represents the parameters used for calling the method CreateHost on the AWS CodeStar connections service. Use the attributes of this class as arguments to method CreateHost.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateHost.

    my $codestar-connections = Paws->service('CodeStarConnections');
    my $CreateHostOutput = $codestar -connections->CreateHost(
      Name             => 'MyHostName',
      ProviderEndpoint => 'MyUrl',
      ProviderType     => 'Bitbucket',
      Tags             => [
        {
          Key   => 'MyTagKey',      # min: 1, max: 128
          Value => 'MyTagValue',    # max: 256
        },
        ...
      ],    # OPTIONAL
      VpcConfiguration => {
        SecurityGroupIds => [
          'MySecurityGroupId', ...    # min: 11, max: 20
        ],    # min: 1, max: 10
        SubnetIds => [
          'MySubnetId', ...    # min: 15, max: 24
        ],    # min: 1, max: 10
        VpcId          => 'MyVpcId',             # min: 12, max: 21
        TlsCertificate => 'MyTlsCertificate',    # min: 1, max: 16384; OPTIONAL
      },    # OPTIONAL
    );
    # Results:
    my $HostArn = $CreateHostOutput->HostArn;
    my $Tags    = $CreateHostOutput->Tags;
    # Returns a L<Paws::CodeStarConnections::CreateHostOutput> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/codestar-connections/CreateHost>

REQUIRED Name => Str

The name of the host to be created. The name must be unique in the calling AWS account.

REQUIRED ProviderEndpoint => Str

The endpoint of the infrastructure to be represented by the host after it is created.

REQUIRED ProviderType => Str

The name of the installed provider to be associated with your connection. The host resource represents the infrastructure where your provider type is installed. The valid provider type is GitHub Enterprise Server.

Valid values are: "Bitbucket", "GitHub", "GitHubEnterpriseServer"

The VPC configuration to be provisioned for the host. A VPC must be configured and the infrastructure to be represented by the host must already be connected to the VPC.

This class forms part of Paws, documenting arguments for method CreateHost in Paws::CodeStarConnections

The source code is located here: <https://github.com/pplu/aws-sdk-perl>

Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>

2022-06-01 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.