AWS CodeStar connections

2021/04/14 - AWS CodeStar connections - 1 updated api methods

Changes  This release adds tagging support for CodeStar Connections Host resources

CreateHost (updated) Link ΒΆ
Changes (both)
{'Tags': [{'Key': 'string', 'Value': 'string'}]}

Creates a resource that represents the infrastructure where a third-party provider is installed. The host is used when you create connections to an installed third-party provider type, such as GitHub Enterprise Server. You create one host for all connections to that provider.

See also: AWS API Documentation

Request Syntax

client.create_host(
    Name='string',
    ProviderType='Bitbucket'|'GitHub'|'GitHubEnterpriseServer',
    ProviderEndpoint='string',
    VpcConfiguration={
        'VpcId': 'string',
        'SubnetIds': [
            'string',
        ],
        'SecurityGroupIds': [
            'string',
        ],
        'TlsCertificate': 'string'
    },
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
type Name:

string

param Name:

[REQUIRED]

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

type ProviderType:

string

param ProviderType:

[REQUIRED]

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.

type ProviderEndpoint:

string

param ProviderEndpoint:

[REQUIRED]

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

type VpcConfiguration:

dict

param VpcConfiguration:

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.

  • VpcId (string) -- [REQUIRED]

    The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.

  • SubnetIds (list) -- [REQUIRED]

    The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.

    • (string) --

  • SecurityGroupIds (list) -- [REQUIRED]

    The ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.

    • (string) --

  • TlsCertificate (string) --

    The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.

type Tags:

list

param Tags:
  • (dict) --

    A tag is a key-value pair that is used to manage the resource.

    This tag is available for use by AWS services that support tags.

    • Key (string) -- [REQUIRED]

      The tag's key.

    • Value (string) -- [REQUIRED]

      The tag's value.

rtype:

dict

returns:

Response Syntax

{
    'HostArn': 'string',
    'Tags': [
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • HostArn (string) --

      The Amazon Resource Name (ARN) of the host to be created.

    • Tags (list) --

      • (dict) --

        A tag is a key-value pair that is used to manage the resource.

        This tag is available for use by AWS services that support tags.

        • Key (string) --

          The tag's key.

        • Value (string) --

          The tag's value.