codestarconnections

package
v0.94.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 17, 2024 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Connection

type Connection struct {
	pulumi.CustomResourceState

	// The Amazon Resource Name (ARN) of the  connection. The ARN is used as the connection reference when the connection is shared between AWS services.
	ConnectionArn pulumi.StringOutput `pulumi:"connectionArn"`
	// The name of the connection. Connection names must be unique in an AWS user account.
	ConnectionName pulumi.StringOutput `pulumi:"connectionName"`
	// The current status of the connection.
	ConnectionStatus pulumi.StringOutput `pulumi:"connectionStatus"`
	// The host arn configured to represent the infrastructure where your third-party provider is installed. You must specify either a ProviderType or a HostArn.
	HostArn pulumi.StringPtrOutput `pulumi:"hostArn"`
	// The name of the external provider where your third-party code repository is configured. For Bitbucket, this is the account ID of the owner of the Bitbucket repository.
	OwnerAccountId pulumi.StringOutput `pulumi:"ownerAccountId"`
	// The name of the external provider where your third-party code repository is configured. You must specify either a ProviderType or a HostArn.
	ProviderType pulumi.StringPtrOutput `pulumi:"providerType"`
	// Specifies the tags applied to a connection.
	Tags ConnectionTagArrayOutput `pulumi:"tags"`
}

Schema for AWS::CodeStarConnections::Connection resource which can be used to connect external source providers with AWS CodePipeline

func GetConnection

func GetConnection(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *ConnectionState, opts ...pulumi.ResourceOption) (*Connection, error)

GetConnection gets an existing Connection resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewConnection

func NewConnection(ctx *pulumi.Context,
	name string, args *ConnectionArgs, opts ...pulumi.ResourceOption) (*Connection, error)

NewConnection registers a new resource with the given unique name, arguments, and options.

func (*Connection) ElementType

func (*Connection) ElementType() reflect.Type

func (*Connection) ToConnectionOutput

func (i *Connection) ToConnectionOutput() ConnectionOutput

func (*Connection) ToConnectionOutputWithContext

func (i *Connection) ToConnectionOutputWithContext(ctx context.Context) ConnectionOutput

func (*Connection) ToOutput added in v0.76.0

func (i *Connection) ToOutput(ctx context.Context) pulumix.Output[*Connection]

type ConnectionArgs

type ConnectionArgs struct {
	// The name of the connection. Connection names must be unique in an AWS user account.
	ConnectionName pulumi.StringPtrInput
	// The host arn configured to represent the infrastructure where your third-party provider is installed. You must specify either a ProviderType or a HostArn.
	HostArn pulumi.StringPtrInput
	// The name of the external provider where your third-party code repository is configured. You must specify either a ProviderType or a HostArn.
	ProviderType pulumi.StringPtrInput
	// Specifies the tags applied to a connection.
	Tags ConnectionTagArrayInput
}

The set of arguments for constructing a Connection resource.

func (ConnectionArgs) ElementType

func (ConnectionArgs) ElementType() reflect.Type

type ConnectionInput

type ConnectionInput interface {
	pulumi.Input

	ToConnectionOutput() ConnectionOutput
	ToConnectionOutputWithContext(ctx context.Context) ConnectionOutput
}

type ConnectionOutput

type ConnectionOutput struct{ *pulumi.OutputState }

func (ConnectionOutput) ConnectionArn added in v0.17.0

func (o ConnectionOutput) ConnectionArn() pulumi.StringOutput

The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between AWS services.

func (ConnectionOutput) ConnectionName added in v0.17.0

func (o ConnectionOutput) ConnectionName() pulumi.StringOutput

The name of the connection. Connection names must be unique in an AWS user account.

func (ConnectionOutput) ConnectionStatus added in v0.17.0

func (o ConnectionOutput) ConnectionStatus() pulumi.StringOutput

The current status of the connection.

func (ConnectionOutput) ElementType

func (ConnectionOutput) ElementType() reflect.Type

func (ConnectionOutput) HostArn added in v0.17.0

The host arn configured to represent the infrastructure where your third-party provider is installed. You must specify either a ProviderType or a HostArn.

func (ConnectionOutput) OwnerAccountId added in v0.17.0

func (o ConnectionOutput) OwnerAccountId() pulumi.StringOutput

The name of the external provider where your third-party code repository is configured. For Bitbucket, this is the account ID of the owner of the Bitbucket repository.

func (ConnectionOutput) ProviderType added in v0.17.0

func (o ConnectionOutput) ProviderType() pulumi.StringPtrOutput

The name of the external provider where your third-party code repository is configured. You must specify either a ProviderType or a HostArn.

func (ConnectionOutput) Tags added in v0.17.0

Specifies the tags applied to a connection.

func (ConnectionOutput) ToConnectionOutput

func (o ConnectionOutput) ToConnectionOutput() ConnectionOutput

func (ConnectionOutput) ToConnectionOutputWithContext

func (o ConnectionOutput) ToConnectionOutputWithContext(ctx context.Context) ConnectionOutput

func (ConnectionOutput) ToOutput added in v0.76.0

type ConnectionState

type ConnectionState struct {
}

func (ConnectionState) ElementType

func (ConnectionState) ElementType() reflect.Type

type ConnectionTag

type ConnectionTag struct {
	// The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
	Key string `pulumi:"key"`
	// The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
	Value string `pulumi:"value"`
}

A key-value pair to associate with a resource.

type ConnectionTagArgs

type ConnectionTagArgs struct {
	// The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
	Key pulumi.StringInput `pulumi:"key"`
	// The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
	Value pulumi.StringInput `pulumi:"value"`
}

A key-value pair to associate with a resource.

func (ConnectionTagArgs) ElementType

func (ConnectionTagArgs) ElementType() reflect.Type

func (ConnectionTagArgs) ToConnectionTagOutput

func (i ConnectionTagArgs) ToConnectionTagOutput() ConnectionTagOutput

func (ConnectionTagArgs) ToConnectionTagOutputWithContext

func (i ConnectionTagArgs) ToConnectionTagOutputWithContext(ctx context.Context) ConnectionTagOutput

func (ConnectionTagArgs) ToOutput added in v0.76.0

type ConnectionTagArray

type ConnectionTagArray []ConnectionTagInput

func (ConnectionTagArray) ElementType

func (ConnectionTagArray) ElementType() reflect.Type

func (ConnectionTagArray) ToConnectionTagArrayOutput

func (i ConnectionTagArray) ToConnectionTagArrayOutput() ConnectionTagArrayOutput

func (ConnectionTagArray) ToConnectionTagArrayOutputWithContext

func (i ConnectionTagArray) ToConnectionTagArrayOutputWithContext(ctx context.Context) ConnectionTagArrayOutput

func (ConnectionTagArray) ToOutput added in v0.76.0

type ConnectionTagArrayInput

type ConnectionTagArrayInput interface {
	pulumi.Input

	ToConnectionTagArrayOutput() ConnectionTagArrayOutput
	ToConnectionTagArrayOutputWithContext(context.Context) ConnectionTagArrayOutput
}

ConnectionTagArrayInput is an input type that accepts ConnectionTagArray and ConnectionTagArrayOutput values. You can construct a concrete instance of `ConnectionTagArrayInput` via:

ConnectionTagArray{ ConnectionTagArgs{...} }

type ConnectionTagArrayOutput

type ConnectionTagArrayOutput struct{ *pulumi.OutputState }

func (ConnectionTagArrayOutput) ElementType

func (ConnectionTagArrayOutput) ElementType() reflect.Type

func (ConnectionTagArrayOutput) Index

func (ConnectionTagArrayOutput) ToConnectionTagArrayOutput

func (o ConnectionTagArrayOutput) ToConnectionTagArrayOutput() ConnectionTagArrayOutput

func (ConnectionTagArrayOutput) ToConnectionTagArrayOutputWithContext

func (o ConnectionTagArrayOutput) ToConnectionTagArrayOutputWithContext(ctx context.Context) ConnectionTagArrayOutput

func (ConnectionTagArrayOutput) ToOutput added in v0.76.0

type ConnectionTagInput

type ConnectionTagInput interface {
	pulumi.Input

	ToConnectionTagOutput() ConnectionTagOutput
	ToConnectionTagOutputWithContext(context.Context) ConnectionTagOutput
}

ConnectionTagInput is an input type that accepts ConnectionTagArgs and ConnectionTagOutput values. You can construct a concrete instance of `ConnectionTagInput` via:

ConnectionTagArgs{...}

type ConnectionTagOutput

type ConnectionTagOutput struct{ *pulumi.OutputState }

A key-value pair to associate with a resource.

func (ConnectionTagOutput) ElementType

func (ConnectionTagOutput) ElementType() reflect.Type

func (ConnectionTagOutput) Key

The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.

func (ConnectionTagOutput) ToConnectionTagOutput

func (o ConnectionTagOutput) ToConnectionTagOutput() ConnectionTagOutput

func (ConnectionTagOutput) ToConnectionTagOutputWithContext

func (o ConnectionTagOutput) ToConnectionTagOutputWithContext(ctx context.Context) ConnectionTagOutput

func (ConnectionTagOutput) ToOutput added in v0.76.0

func (ConnectionTagOutput) Value

The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.

type LookupConnectionArgs added in v0.12.0

type LookupConnectionArgs struct {
	// The Amazon Resource Name (ARN) of the  connection. The ARN is used as the connection reference when the connection is shared between AWS services.
	ConnectionArn string `pulumi:"connectionArn"`
}

type LookupConnectionOutputArgs added in v0.12.0

type LookupConnectionOutputArgs struct {
	// The Amazon Resource Name (ARN) of the  connection. The ARN is used as the connection reference when the connection is shared between AWS services.
	ConnectionArn pulumi.StringInput `pulumi:"connectionArn"`
}

func (LookupConnectionOutputArgs) ElementType added in v0.12.0

func (LookupConnectionOutputArgs) ElementType() reflect.Type

type LookupConnectionResult added in v0.12.0

type LookupConnectionResult struct {
	// The Amazon Resource Name (ARN) of the  connection. The ARN is used as the connection reference when the connection is shared between AWS services.
	ConnectionArn *string `pulumi:"connectionArn"`
	// The current status of the connection.
	ConnectionStatus *string `pulumi:"connectionStatus"`
	// The name of the external provider where your third-party code repository is configured. For Bitbucket, this is the account ID of the owner of the Bitbucket repository.
	OwnerAccountId *string `pulumi:"ownerAccountId"`
	// Specifies the tags applied to a connection.
	Tags []ConnectionTag `pulumi:"tags"`
}

func LookupConnection added in v0.12.0

func LookupConnection(ctx *pulumi.Context, args *LookupConnectionArgs, opts ...pulumi.InvokeOption) (*LookupConnectionResult, error)

Schema for AWS::CodeStarConnections::Connection resource which can be used to connect external source providers with AWS CodePipeline

type LookupConnectionResultOutput added in v0.12.0

type LookupConnectionResultOutput struct{ *pulumi.OutputState }

func LookupConnectionOutput added in v0.12.0

func (LookupConnectionResultOutput) ConnectionArn added in v0.12.0

The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between AWS services.

func (LookupConnectionResultOutput) ConnectionStatus added in v0.12.0

The current status of the connection.

func (LookupConnectionResultOutput) ElementType added in v0.12.0

func (LookupConnectionResultOutput) OwnerAccountId added in v0.12.0

The name of the external provider where your third-party code repository is configured. For Bitbucket, this is the account ID of the owner of the Bitbucket repository.

func (LookupConnectionResultOutput) Tags added in v0.12.0

Specifies the tags applied to a connection.

func (LookupConnectionResultOutput) ToLookupConnectionResultOutput added in v0.12.0

func (o LookupConnectionResultOutput) ToLookupConnectionResultOutput() LookupConnectionResultOutput

func (LookupConnectionResultOutput) ToLookupConnectionResultOutputWithContext added in v0.12.0

func (o LookupConnectionResultOutput) ToLookupConnectionResultOutputWithContext(ctx context.Context) LookupConnectionResultOutput

func (LookupConnectionResultOutput) ToOutput added in v0.76.0

type LookupRepositoryLinkArgs added in v0.87.0

type LookupRepositoryLinkArgs struct {
	// A unique Amazon Resource Name (ARN) to designate the repository link.
	RepositoryLinkArn string `pulumi:"repositoryLinkArn"`
}

type LookupRepositoryLinkOutputArgs added in v0.87.0

type LookupRepositoryLinkOutputArgs struct {
	// A unique Amazon Resource Name (ARN) to designate the repository link.
	RepositoryLinkArn pulumi.StringInput `pulumi:"repositoryLinkArn"`
}

func (LookupRepositoryLinkOutputArgs) ElementType added in v0.87.0

type LookupRepositoryLinkResult added in v0.87.0

type LookupRepositoryLinkResult struct {
	// The Amazon Resource Name (ARN) of the CodeStarConnection. The ARN is used as the connection reference when the connection is shared between AWS services.
	ConnectionArn *string `pulumi:"connectionArn"`
	// The ARN of the KMS key that the customer can optionally specify to use to encrypt RepositoryLink properties. If not specified, a default key will be used.
	EncryptionKeyArn *string `pulumi:"encryptionKeyArn"`
	// The name of the external provider where your third-party code repository is configured.
	ProviderType *string `pulumi:"providerType"`
	// A unique Amazon Resource Name (ARN) to designate the repository link.
	RepositoryLinkArn *string `pulumi:"repositoryLinkArn"`
	// A UUID that uniquely identifies the RepositoryLink.
	RepositoryLinkId *string `pulumi:"repositoryLinkId"`
	// Specifies the tags applied to a RepositoryLink.
	Tags []RepositoryLinkTag `pulumi:"tags"`
}
func LookupRepositoryLink(ctx *pulumi.Context, args *LookupRepositoryLinkArgs, opts ...pulumi.InvokeOption) (*LookupRepositoryLinkResult, error)

Schema for AWS::CodeStarConnections::RepositoryLink resource which is used to aggregate repository metadata relevant to synchronizing source provider content to AWS Resources.

type LookupRepositoryLinkResultOutput added in v0.87.0

type LookupRepositoryLinkResultOutput struct{ *pulumi.OutputState }

func LookupRepositoryLinkOutput added in v0.87.0

func (LookupRepositoryLinkResultOutput) ConnectionArn added in v0.87.0

The Amazon Resource Name (ARN) of the CodeStarConnection. The ARN is used as the connection reference when the connection is shared between AWS services.

func (LookupRepositoryLinkResultOutput) ElementType added in v0.87.0

func (LookupRepositoryLinkResultOutput) EncryptionKeyArn added in v0.87.0

The ARN of the KMS key that the customer can optionally specify to use to encrypt RepositoryLink properties. If not specified, a default key will be used.

func (LookupRepositoryLinkResultOutput) ProviderType added in v0.87.0

The name of the external provider where your third-party code repository is configured.

func (LookupRepositoryLinkResultOutput) RepositoryLinkArn added in v0.87.0

A unique Amazon Resource Name (ARN) to designate the repository link.

func (LookupRepositoryLinkResultOutput) RepositoryLinkId added in v0.87.0

A UUID that uniquely identifies the RepositoryLink.

func (LookupRepositoryLinkResultOutput) Tags added in v0.87.0

Specifies the tags applied to a RepositoryLink.

func (LookupRepositoryLinkResultOutput) ToLookupRepositoryLinkResultOutput added in v0.87.0

func (o LookupRepositoryLinkResultOutput) ToLookupRepositoryLinkResultOutput() LookupRepositoryLinkResultOutput

func (LookupRepositoryLinkResultOutput) ToLookupRepositoryLinkResultOutputWithContext added in v0.87.0

func (o LookupRepositoryLinkResultOutput) ToLookupRepositoryLinkResultOutputWithContext(ctx context.Context) LookupRepositoryLinkResultOutput

func (LookupRepositoryLinkResultOutput) ToOutput added in v0.87.0

type LookupSyncConfigurationArgs added in v0.87.0

type LookupSyncConfigurationArgs struct {
	// The name of the resource that is being synchronized to the repository.
	ResourceName string `pulumi:"resourceName"`
	// The type of resource synchronization service that is to be configured, for example, CFN_STACK_SYNC.
	SyncType string `pulumi:"syncType"`
}

type LookupSyncConfigurationOutputArgs added in v0.87.0

type LookupSyncConfigurationOutputArgs struct {
	// The name of the resource that is being synchronized to the repository.
	ResourceName pulumi.StringInput `pulumi:"resourceName"`
	// The type of resource synchronization service that is to be configured, for example, CFN_STACK_SYNC.
	SyncType pulumi.StringInput `pulumi:"syncType"`
}

func (LookupSyncConfigurationOutputArgs) ElementType added in v0.87.0

type LookupSyncConfigurationResult added in v0.87.0

type LookupSyncConfigurationResult struct {
	// The name of the branch of the repository from which resources are to be synchronized,
	Branch *string `pulumi:"branch"`
	// The source provider repository path of the sync configuration file of the respective SyncType.
	ConfigFile *string `pulumi:"configFile"`
	// the ID of the entity that owns the repository.
	OwnerId *string `pulumi:"ownerId"`
	// The name of the external provider where your third-party code repository is configured.
	ProviderType *string `pulumi:"providerType"`
	// A UUID that uniquely identifies the RepositoryLink that the SyncConfig is associated with.
	RepositoryLinkId *string `pulumi:"repositoryLinkId"`
	// The name of the repository that is being synced to.
	RepositoryName *string `pulumi:"repositoryName"`
	// The IAM Role that allows AWS to update CloudFormation stacks based on content in the specified repository.
	RoleArn *string `pulumi:"roleArn"`
}

func LookupSyncConfiguration added in v0.87.0

func LookupSyncConfiguration(ctx *pulumi.Context, args *LookupSyncConfigurationArgs, opts ...pulumi.InvokeOption) (*LookupSyncConfigurationResult, error)

Schema for AWS::CodeStarConnections::SyncConfiguration resource which is used to enables an AWS resource to be synchronized from a source-provider.

type LookupSyncConfigurationResultOutput added in v0.87.0

type LookupSyncConfigurationResultOutput struct{ *pulumi.OutputState }

func LookupSyncConfigurationOutput added in v0.87.0

func (LookupSyncConfigurationResultOutput) Branch added in v0.87.0

The name of the branch of the repository from which resources are to be synchronized,

func (LookupSyncConfigurationResultOutput) ConfigFile added in v0.87.0

The source provider repository path of the sync configuration file of the respective SyncType.

func (LookupSyncConfigurationResultOutput) ElementType added in v0.87.0

func (LookupSyncConfigurationResultOutput) OwnerId added in v0.87.0

the ID of the entity that owns the repository.

func (LookupSyncConfigurationResultOutput) ProviderType added in v0.87.0

The name of the external provider where your third-party code repository is configured.

func (LookupSyncConfigurationResultOutput) RepositoryLinkId added in v0.87.0

A UUID that uniquely identifies the RepositoryLink that the SyncConfig is associated with.

func (LookupSyncConfigurationResultOutput) RepositoryName added in v0.87.0

The name of the repository that is being synced to.

func (LookupSyncConfigurationResultOutput) RoleArn added in v0.87.0

The IAM Role that allows AWS to update CloudFormation stacks based on content in the specified repository.

func (LookupSyncConfigurationResultOutput) ToLookupSyncConfigurationResultOutput added in v0.87.0

func (o LookupSyncConfigurationResultOutput) ToLookupSyncConfigurationResultOutput() LookupSyncConfigurationResultOutput

func (LookupSyncConfigurationResultOutput) ToLookupSyncConfigurationResultOutputWithContext added in v0.87.0

func (o LookupSyncConfigurationResultOutput) ToLookupSyncConfigurationResultOutputWithContext(ctx context.Context) LookupSyncConfigurationResultOutput

func (LookupSyncConfigurationResultOutput) ToOutput added in v0.87.0

type RepositoryLink struct {
	pulumi.CustomResourceState

	// The Amazon Resource Name (ARN) of the CodeStarConnection. The ARN is used as the connection reference when the connection is shared between AWS services.
	ConnectionArn pulumi.StringOutput `pulumi:"connectionArn"`
	// The ARN of the KMS key that the customer can optionally specify to use to encrypt RepositoryLink properties. If not specified, a default key will be used.
	EncryptionKeyArn pulumi.StringPtrOutput `pulumi:"encryptionKeyArn"`
	// the ID of the entity that owns the repository.
	OwnerId pulumi.StringOutput `pulumi:"ownerId"`
	// The name of the external provider where your third-party code repository is configured.
	ProviderType pulumi.StringOutput `pulumi:"providerType"`
	// A unique Amazon Resource Name (ARN) to designate the repository link.
	RepositoryLinkArn pulumi.StringOutput `pulumi:"repositoryLinkArn"`
	// A UUID that uniquely identifies the RepositoryLink.
	RepositoryLinkId pulumi.StringOutput `pulumi:"repositoryLinkId"`
	// The repository for which the link is being created.
	RepositoryName pulumi.StringOutput `pulumi:"repositoryName"`
	// Specifies the tags applied to a RepositoryLink.
	Tags RepositoryLinkTagArrayOutput `pulumi:"tags"`
}

Schema for AWS::CodeStarConnections::RepositoryLink resource which is used to aggregate repository metadata relevant to synchronizing source provider content to AWS Resources.

func GetRepositoryLink(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *RepositoryLinkState, opts ...pulumi.ResourceOption) (*RepositoryLink, error)

GetRepositoryLink gets an existing RepositoryLink resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewRepositoryLink(ctx *pulumi.Context,
	name string, args *RepositoryLinkArgs, opts ...pulumi.ResourceOption) (*RepositoryLink, error)

NewRepositoryLink registers a new resource with the given unique name, arguments, and options.

func (*RepositoryLink) ElementType added in v0.87.0

func (*RepositoryLink) ElementType() reflect.Type

func (*RepositoryLink) ToOutput added in v0.87.0

func (*RepositoryLink) ToRepositoryLinkOutput added in v0.87.0

func (i *RepositoryLink) ToRepositoryLinkOutput() RepositoryLinkOutput

func (*RepositoryLink) ToRepositoryLinkOutputWithContext added in v0.87.0

func (i *RepositoryLink) ToRepositoryLinkOutputWithContext(ctx context.Context) RepositoryLinkOutput

type RepositoryLinkArgs added in v0.87.0

type RepositoryLinkArgs struct {
	// The Amazon Resource Name (ARN) of the CodeStarConnection. The ARN is used as the connection reference when the connection is shared between AWS services.
	ConnectionArn pulumi.StringInput
	// The ARN of the KMS key that the customer can optionally specify to use to encrypt RepositoryLink properties. If not specified, a default key will be used.
	EncryptionKeyArn pulumi.StringPtrInput
	// the ID of the entity that owns the repository.
	OwnerId pulumi.StringInput
	// The repository for which the link is being created.
	RepositoryName pulumi.StringInput
	// Specifies the tags applied to a RepositoryLink.
	Tags RepositoryLinkTagArrayInput
}

The set of arguments for constructing a RepositoryLink resource.

func (RepositoryLinkArgs) ElementType added in v0.87.0

func (RepositoryLinkArgs) ElementType() reflect.Type

type RepositoryLinkInput added in v0.87.0

type RepositoryLinkInput interface {
	pulumi.Input

	ToRepositoryLinkOutput() RepositoryLinkOutput
	ToRepositoryLinkOutputWithContext(ctx context.Context) RepositoryLinkOutput
}

type RepositoryLinkOutput added in v0.87.0

type RepositoryLinkOutput struct{ *pulumi.OutputState }

func (RepositoryLinkOutput) ConnectionArn added in v0.87.0

func (o RepositoryLinkOutput) ConnectionArn() pulumi.StringOutput

The Amazon Resource Name (ARN) of the CodeStarConnection. The ARN is used as the connection reference when the connection is shared between AWS services.

func (RepositoryLinkOutput) ElementType added in v0.87.0

func (RepositoryLinkOutput) ElementType() reflect.Type

func (RepositoryLinkOutput) EncryptionKeyArn added in v0.87.0

func (o RepositoryLinkOutput) EncryptionKeyArn() pulumi.StringPtrOutput

The ARN of the KMS key that the customer can optionally specify to use to encrypt RepositoryLink properties. If not specified, a default key will be used.

func (RepositoryLinkOutput) OwnerId added in v0.87.0

the ID of the entity that owns the repository.

func (RepositoryLinkOutput) ProviderType added in v0.87.0

func (o RepositoryLinkOutput) ProviderType() pulumi.StringOutput

The name of the external provider where your third-party code repository is configured.

func (RepositoryLinkOutput) RepositoryLinkArn added in v0.87.0

func (o RepositoryLinkOutput) RepositoryLinkArn() pulumi.StringOutput

A unique Amazon Resource Name (ARN) to designate the repository link.

func (RepositoryLinkOutput) RepositoryLinkId added in v0.87.0

func (o RepositoryLinkOutput) RepositoryLinkId() pulumi.StringOutput

A UUID that uniquely identifies the RepositoryLink.

func (RepositoryLinkOutput) RepositoryName added in v0.87.0

func (o RepositoryLinkOutput) RepositoryName() pulumi.StringOutput

The repository for which the link is being created.

func (RepositoryLinkOutput) Tags added in v0.87.0

Specifies the tags applied to a RepositoryLink.

func (RepositoryLinkOutput) ToOutput added in v0.87.0

func (RepositoryLinkOutput) ToRepositoryLinkOutput added in v0.87.0

func (o RepositoryLinkOutput) ToRepositoryLinkOutput() RepositoryLinkOutput

func (RepositoryLinkOutput) ToRepositoryLinkOutputWithContext added in v0.87.0

func (o RepositoryLinkOutput) ToRepositoryLinkOutputWithContext(ctx context.Context) RepositoryLinkOutput

type RepositoryLinkState added in v0.87.0

type RepositoryLinkState struct {
}

func (RepositoryLinkState) ElementType added in v0.87.0

func (RepositoryLinkState) ElementType() reflect.Type

type RepositoryLinkTag added in v0.87.0

type RepositoryLinkTag struct {
	// The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, , ., /, =, +, and -.
	Key string `pulumi:"key"`
	// The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, , ., /, =, +, and -.
	Value string `pulumi:"value"`
}

A key-value pair to associate with a resource.

type RepositoryLinkTagArgs added in v0.87.0

type RepositoryLinkTagArgs struct {
	// The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, , ., /, =, +, and -.
	Key pulumi.StringInput `pulumi:"key"`
	// The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, , ., /, =, +, and -.
	Value pulumi.StringInput `pulumi:"value"`
}

A key-value pair to associate with a resource.

func (RepositoryLinkTagArgs) ElementType added in v0.87.0

func (RepositoryLinkTagArgs) ElementType() reflect.Type

func (RepositoryLinkTagArgs) ToOutput added in v0.87.0

func (RepositoryLinkTagArgs) ToRepositoryLinkTagOutput added in v0.87.0

func (i RepositoryLinkTagArgs) ToRepositoryLinkTagOutput() RepositoryLinkTagOutput

func (RepositoryLinkTagArgs) ToRepositoryLinkTagOutputWithContext added in v0.87.0

func (i RepositoryLinkTagArgs) ToRepositoryLinkTagOutputWithContext(ctx context.Context) RepositoryLinkTagOutput

type RepositoryLinkTagArray added in v0.87.0

type RepositoryLinkTagArray []RepositoryLinkTagInput

func (RepositoryLinkTagArray) ElementType added in v0.87.0

func (RepositoryLinkTagArray) ElementType() reflect.Type

func (RepositoryLinkTagArray) ToOutput added in v0.87.0

func (RepositoryLinkTagArray) ToRepositoryLinkTagArrayOutput added in v0.87.0

func (i RepositoryLinkTagArray) ToRepositoryLinkTagArrayOutput() RepositoryLinkTagArrayOutput

func (RepositoryLinkTagArray) ToRepositoryLinkTagArrayOutputWithContext added in v0.87.0

func (i RepositoryLinkTagArray) ToRepositoryLinkTagArrayOutputWithContext(ctx context.Context) RepositoryLinkTagArrayOutput

type RepositoryLinkTagArrayInput added in v0.87.0

type RepositoryLinkTagArrayInput interface {
	pulumi.Input

	ToRepositoryLinkTagArrayOutput() RepositoryLinkTagArrayOutput
	ToRepositoryLinkTagArrayOutputWithContext(context.Context) RepositoryLinkTagArrayOutput
}

RepositoryLinkTagArrayInput is an input type that accepts RepositoryLinkTagArray and RepositoryLinkTagArrayOutput values. You can construct a concrete instance of `RepositoryLinkTagArrayInput` via:

RepositoryLinkTagArray{ RepositoryLinkTagArgs{...} }

type RepositoryLinkTagArrayOutput added in v0.87.0

type RepositoryLinkTagArrayOutput struct{ *pulumi.OutputState }

func (RepositoryLinkTagArrayOutput) ElementType added in v0.87.0

func (RepositoryLinkTagArrayOutput) Index added in v0.87.0

func (RepositoryLinkTagArrayOutput) ToOutput added in v0.87.0

func (RepositoryLinkTagArrayOutput) ToRepositoryLinkTagArrayOutput added in v0.87.0

func (o RepositoryLinkTagArrayOutput) ToRepositoryLinkTagArrayOutput() RepositoryLinkTagArrayOutput

func (RepositoryLinkTagArrayOutput) ToRepositoryLinkTagArrayOutputWithContext added in v0.87.0

func (o RepositoryLinkTagArrayOutput) ToRepositoryLinkTagArrayOutputWithContext(ctx context.Context) RepositoryLinkTagArrayOutput

type RepositoryLinkTagInput added in v0.87.0

type RepositoryLinkTagInput interface {
	pulumi.Input

	ToRepositoryLinkTagOutput() RepositoryLinkTagOutput
	ToRepositoryLinkTagOutputWithContext(context.Context) RepositoryLinkTagOutput
}

RepositoryLinkTagInput is an input type that accepts RepositoryLinkTagArgs and RepositoryLinkTagOutput values. You can construct a concrete instance of `RepositoryLinkTagInput` via:

RepositoryLinkTagArgs{...}

type RepositoryLinkTagOutput added in v0.87.0

type RepositoryLinkTagOutput struct{ *pulumi.OutputState }

A key-value pair to associate with a resource.

func (RepositoryLinkTagOutput) ElementType added in v0.87.0

func (RepositoryLinkTagOutput) ElementType() reflect.Type

func (RepositoryLinkTagOutput) Key added in v0.87.0

The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, , ., /, =, +, and -.

func (RepositoryLinkTagOutput) ToOutput added in v0.87.0

func (RepositoryLinkTagOutput) ToRepositoryLinkTagOutput added in v0.87.0

func (o RepositoryLinkTagOutput) ToRepositoryLinkTagOutput() RepositoryLinkTagOutput

func (RepositoryLinkTagOutput) ToRepositoryLinkTagOutputWithContext added in v0.87.0

func (o RepositoryLinkTagOutput) ToRepositoryLinkTagOutputWithContext(ctx context.Context) RepositoryLinkTagOutput

func (RepositoryLinkTagOutput) Value added in v0.87.0

The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, , ., /, =, +, and -.

type SyncConfiguration added in v0.87.0

type SyncConfiguration struct {
	pulumi.CustomResourceState

	// The name of the branch of the repository from which resources are to be synchronized,
	Branch pulumi.StringOutput `pulumi:"branch"`
	// The source provider repository path of the sync configuration file of the respective SyncType.
	ConfigFile pulumi.StringOutput `pulumi:"configFile"`
	// the ID of the entity that owns the repository.
	OwnerId pulumi.StringOutput `pulumi:"ownerId"`
	// The name of the external provider where your third-party code repository is configured.
	ProviderType pulumi.StringOutput `pulumi:"providerType"`
	// A UUID that uniquely identifies the RepositoryLink that the SyncConfig is associated with.
	RepositoryLinkId pulumi.StringOutput `pulumi:"repositoryLinkId"`
	// The name of the repository that is being synced to.
	RepositoryName pulumi.StringOutput `pulumi:"repositoryName"`
	// The name of the resource that is being synchronized to the repository.
	ResourceName pulumi.StringOutput `pulumi:"resourceName"`
	// The IAM Role that allows AWS to update CloudFormation stacks based on content in the specified repository.
	RoleArn pulumi.StringOutput `pulumi:"roleArn"`
	// The type of resource synchronization service that is to be configured, for example, CFN_STACK_SYNC.
	SyncType pulumi.StringOutput `pulumi:"syncType"`
}

Schema for AWS::CodeStarConnections::SyncConfiguration resource which is used to enables an AWS resource to be synchronized from a source-provider.

func GetSyncConfiguration added in v0.87.0

func GetSyncConfiguration(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *SyncConfigurationState, opts ...pulumi.ResourceOption) (*SyncConfiguration, error)

GetSyncConfiguration gets an existing SyncConfiguration resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewSyncConfiguration added in v0.87.0

func NewSyncConfiguration(ctx *pulumi.Context,
	name string, args *SyncConfigurationArgs, opts ...pulumi.ResourceOption) (*SyncConfiguration, error)

NewSyncConfiguration registers a new resource with the given unique name, arguments, and options.

func (*SyncConfiguration) ElementType added in v0.87.0

func (*SyncConfiguration) ElementType() reflect.Type

func (*SyncConfiguration) ToOutput added in v0.87.0

func (*SyncConfiguration) ToSyncConfigurationOutput added in v0.87.0

func (i *SyncConfiguration) ToSyncConfigurationOutput() SyncConfigurationOutput

func (*SyncConfiguration) ToSyncConfigurationOutputWithContext added in v0.87.0

func (i *SyncConfiguration) ToSyncConfigurationOutputWithContext(ctx context.Context) SyncConfigurationOutput

type SyncConfigurationArgs added in v0.87.0

type SyncConfigurationArgs struct {
	// The name of the branch of the repository from which resources are to be synchronized,
	Branch pulumi.StringInput
	// The source provider repository path of the sync configuration file of the respective SyncType.
	ConfigFile pulumi.StringInput
	// A UUID that uniquely identifies the RepositoryLink that the SyncConfig is associated with.
	RepositoryLinkId pulumi.StringInput
	// The name of the resource that is being synchronized to the repository.
	ResourceName pulumi.StringInput
	// The IAM Role that allows AWS to update CloudFormation stacks based on content in the specified repository.
	RoleArn pulumi.StringInput
	// The type of resource synchronization service that is to be configured, for example, CFN_STACK_SYNC.
	SyncType pulumi.StringInput
}

The set of arguments for constructing a SyncConfiguration resource.

func (SyncConfigurationArgs) ElementType added in v0.87.0

func (SyncConfigurationArgs) ElementType() reflect.Type

type SyncConfigurationInput added in v0.87.0

type SyncConfigurationInput interface {
	pulumi.Input

	ToSyncConfigurationOutput() SyncConfigurationOutput
	ToSyncConfigurationOutputWithContext(ctx context.Context) SyncConfigurationOutput
}

type SyncConfigurationOutput added in v0.87.0

type SyncConfigurationOutput struct{ *pulumi.OutputState }

func (SyncConfigurationOutput) Branch added in v0.87.0

The name of the branch of the repository from which resources are to be synchronized,

func (SyncConfigurationOutput) ConfigFile added in v0.87.0

The source provider repository path of the sync configuration file of the respective SyncType.

func (SyncConfigurationOutput) ElementType added in v0.87.0

func (SyncConfigurationOutput) ElementType() reflect.Type

func (SyncConfigurationOutput) OwnerId added in v0.87.0

the ID of the entity that owns the repository.

func (SyncConfigurationOutput) ProviderType added in v0.87.0

func (o SyncConfigurationOutput) ProviderType() pulumi.StringOutput

The name of the external provider where your third-party code repository is configured.

func (SyncConfigurationOutput) RepositoryLinkId added in v0.87.0

func (o SyncConfigurationOutput) RepositoryLinkId() pulumi.StringOutput

A UUID that uniquely identifies the RepositoryLink that the SyncConfig is associated with.

func (SyncConfigurationOutput) RepositoryName added in v0.87.0

func (o SyncConfigurationOutput) RepositoryName() pulumi.StringOutput

The name of the repository that is being synced to.

func (SyncConfigurationOutput) ResourceName added in v0.87.0

func (o SyncConfigurationOutput) ResourceName() pulumi.StringOutput

The name of the resource that is being synchronized to the repository.

func (SyncConfigurationOutput) RoleArn added in v0.87.0

The IAM Role that allows AWS to update CloudFormation stacks based on content in the specified repository.

func (SyncConfigurationOutput) SyncType added in v0.87.0

The type of resource synchronization service that is to be configured, for example, CFN_STACK_SYNC.

func (SyncConfigurationOutput) ToOutput added in v0.87.0

func (SyncConfigurationOutput) ToSyncConfigurationOutput added in v0.87.0

func (o SyncConfigurationOutput) ToSyncConfigurationOutput() SyncConfigurationOutput

func (SyncConfigurationOutput) ToSyncConfigurationOutputWithContext added in v0.87.0

func (o SyncConfigurationOutput) ToSyncConfigurationOutputWithContext(ctx context.Context) SyncConfigurationOutput

type SyncConfigurationState added in v0.87.0

type SyncConfigurationState struct {
}

func (SyncConfigurationState) ElementType added in v0.87.0

func (SyncConfigurationState) ElementType() reflect.Type

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL