codestar

package module
v0.26.0 Latest Latest
Warning

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

Go to latest
Published: Sep 30, 2020 License: Apache-2.0 Imports: 26 Imported by: 0

Documentation

Index

Constants

View Source
const ServiceAPIVersion = "2017-04-19"
View Source
const ServiceID = "CodeStar"

Variables

This section is empty.

Functions

func AddResolveEndpointMiddleware

func AddResolveEndpointMiddleware(stack *middleware.Stack, options ResolveEndpointMiddlewareOptions)

func NewDefaultEndpointResolver

func NewDefaultEndpointResolver() *internalendpoints.Resolver

NewDefaultEndpointResolver constructs a new service endpoint resolver

func RemoveResolveEndpointMiddleware

func RemoveResolveEndpointMiddleware(stack *middleware.Stack) error

Types

type AssociateTeamMemberInput

type AssociateTeamMemberInput struct {
	// Whether the team member is allowed to use an SSH public/private key pair to
	// remotely access project resources, for example Amazon EC2 instances.
	RemoteAccessAllowed *bool
	// A user- or system-generated token that identifies the entity that requested the
	// team member association to the project. This token can be used to repeat the
	// request.
	ClientRequestToken *string
	// The AWS CodeStar project role that will apply to this user. This role determines
	// what actions a user can take in an AWS CodeStar project.
	ProjectRole *string
	// The Amazon Resource Name (ARN) for the IAM user you want to add to the AWS
	// CodeStar project.
	UserArn *string
	// The ID of the project to which you will add the IAM user.
	ProjectId *string
}

type AssociateTeamMemberOutput

type AssociateTeamMemberOutput struct {
	// The user- or system-generated token from the initial request that can be used to
	// repeat the request.
	ClientRequestToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type Client

type Client struct {
	// contains filtered or unexported fields
}

AWS CodeStar This is the API reference for AWS CodeStar. This reference provides descriptions of the operations and data types for the AWS CodeStar API along with usage examples. You can use the AWS CodeStar API to work with: Projects and their resources, by calling the following:

  • DeleteProject, which deletes a

project.

  • DescribeProject, which lists the attributes of a project.

    *

ListProjects, which lists all projects associated with your AWS account.

*

ListResources, which lists the resources associated with a project.

*

ListTagsForProject, which lists the tags associated with a project.

*

TagProject, which adds tags to a project.

  • UntagProject, which removes

tags from a project.

  • UpdateProject, which updates the attributes of a

project.

Teams and team members, by calling the following:

*

AssociateTeamMember, which adds an IAM user to the team for a project.

*

DisassociateTeamMember, which removes an IAM user from the team for a project.

* ListTeamMembers, which lists all the IAM users in the team for a project, including their roles and attributes.

  • UpdateTeamMember, which updates a

team member's attributes in a project.

Users, by calling the following:

*

CreateUserProfile, which creates a user profile that contains data associated with the user across all projects.

  • DeleteUserProfile, which deletes all

user profile information across all projects.

  • DescribeUserProfile, which

describes the profile of a user.

  • ListUserProfiles, which lists all user

profiles.

  • UpdateUserProfile, which updates the profile for a user.

func New

func New(options Options, optFns ...func(*Options)) *Client

New returns an initialized Client based on the functional options. Provide additional functional options to further configure the behavior of the client, such as changing the client's endpoint or adding custom middleware behavior.

func NewFromConfig

func NewFromConfig(cfg aws.Config, optFns ...func(*Options)) *Client

NewFromConfig returns a new client from the provided config.

func (*Client) AssociateTeamMember

func (c *Client) AssociateTeamMember(ctx context.Context, params *AssociateTeamMemberInput, optFns ...func(*Options)) (*AssociateTeamMemberOutput, error)

Adds an IAM user to the team for an AWS CodeStar project.

func (*Client) CreateProject

func (c *Client) CreateProject(ctx context.Context, params *CreateProjectInput, optFns ...func(*Options)) (*CreateProjectOutput, error)

Creates a project, including project resources. This action creates a project based on a submitted project request. A set of source code files and a toolchain template file can be included with the project request. If these are not provided, an empty project is created.

func (*Client) CreateUserProfile

func (c *Client) CreateUserProfile(ctx context.Context, params *CreateUserProfileInput, optFns ...func(*Options)) (*CreateUserProfileOutput, error)

Creates a profile for a user that includes user preferences, such as the display name and email address assocciated with the user, in AWS CodeStar. The user profile is not project-specific. Information in the user profile is displayed wherever the user's information appears to other users in AWS CodeStar.

func (*Client) DeleteProject

func (c *Client) DeleteProject(ctx context.Context, params *DeleteProjectInput, optFns ...func(*Options)) (*DeleteProjectOutput, error)

Deletes a project, including project resources. Does not delete users associated with the project, but does delete the IAM roles that allowed access to the project.

func (*Client) DeleteUserProfile

func (c *Client) DeleteUserProfile(ctx context.Context, params *DeleteUserProfileInput, optFns ...func(*Options)) (*DeleteUserProfileOutput, error)

Deletes a user profile in AWS CodeStar, including all personal preference data associated with that profile, such as display name and email address. It does not delete the history of that user, for example the history of commits made by that user.

func (*Client) DescribeProject

func (c *Client) DescribeProject(ctx context.Context, params *DescribeProjectInput, optFns ...func(*Options)) (*DescribeProjectOutput, error)

Describes a project and its resources.

func (*Client) DescribeUserProfile

func (c *Client) DescribeUserProfile(ctx context.Context, params *DescribeUserProfileInput, optFns ...func(*Options)) (*DescribeUserProfileOutput, error)

Describes a user in AWS CodeStar and the user attributes across all projects.

func (*Client) DisassociateTeamMember

func (c *Client) DisassociateTeamMember(ctx context.Context, params *DisassociateTeamMemberInput, optFns ...func(*Options)) (*DisassociateTeamMemberOutput, error)

Removes a user from a project. Removing a user from a project also removes the IAM policies from that user that allowed access to the project and its resources. Disassociating a team member does not remove that user's profile from AWS CodeStar. It does not remove the user from IAM.

func (*Client) ListProjects

func (c *Client) ListProjects(ctx context.Context, params *ListProjectsInput, optFns ...func(*Options)) (*ListProjectsOutput, error)

Lists all projects in AWS CodeStar associated with your AWS account.

func (*Client) ListResources

func (c *Client) ListResources(ctx context.Context, params *ListResourcesInput, optFns ...func(*Options)) (*ListResourcesOutput, error)

Lists resources associated with a project in AWS CodeStar.

func (*Client) ListTagsForProject

func (c *Client) ListTagsForProject(ctx context.Context, params *ListTagsForProjectInput, optFns ...func(*Options)) (*ListTagsForProjectOutput, error)

Gets the tags for a project.

func (*Client) ListTeamMembers

func (c *Client) ListTeamMembers(ctx context.Context, params *ListTeamMembersInput, optFns ...func(*Options)) (*ListTeamMembersOutput, error)

Lists all team members associated with a project.

func (*Client) ListUserProfiles

func (c *Client) ListUserProfiles(ctx context.Context, params *ListUserProfilesInput, optFns ...func(*Options)) (*ListUserProfilesOutput, error)

Lists all the user profiles configured for your AWS account in AWS CodeStar.

func (*Client) TagProject

func (c *Client) TagProject(ctx context.Context, params *TagProjectInput, optFns ...func(*Options)) (*TagProjectOutput, error)

Adds tags to a project.

func (*Client) UntagProject

func (c *Client) UntagProject(ctx context.Context, params *UntagProjectInput, optFns ...func(*Options)) (*UntagProjectOutput, error)

Removes tags from a project.

func (*Client) UpdateProject

func (c *Client) UpdateProject(ctx context.Context, params *UpdateProjectInput, optFns ...func(*Options)) (*UpdateProjectOutput, error)

Updates a project in AWS CodeStar.

func (*Client) UpdateTeamMember

func (c *Client) UpdateTeamMember(ctx context.Context, params *UpdateTeamMemberInput, optFns ...func(*Options)) (*UpdateTeamMemberOutput, error)

Updates a team member's attributes in an AWS CodeStar project. For example, you can change a team member's role in the project, or change whether they have remote access to project resources.

func (*Client) UpdateUserProfile

func (c *Client) UpdateUserProfile(ctx context.Context, params *UpdateUserProfileInput, optFns ...func(*Options)) (*UpdateUserProfileOutput, error)

Updates a user's profile in AWS CodeStar. The user profile is not project-specific. Information in the user profile is displayed wherever the user's information appears to other users in AWS CodeStar.

type CreateProjectInput

type CreateProjectInput struct {
	// The description of the project, if any.
	Description *string
	// The display name for the project to be created in AWS CodeStar.
	Name *string
	// The tags created for the project.
	Tags map[string]*string
	// A list of the Code objects submitted with the project request. If this parameter
	// is specified, the request must also include the toolchain parameter.
	SourceCode []*types.Code
	// The name of the toolchain template file submitted with the project request. If
	// this parameter is specified, the request must also include the sourceCode
	// parameter.
	Toolchain *types.Toolchain
	// The ID of the project to be created in AWS CodeStar.
	Id *string
	// A user- or system-generated token that identifies the entity that requested
	// project creation. This token can be used to repeat the request.
	ClientRequestToken *string
}

type CreateProjectOutput

type CreateProjectOutput struct {
	// The ID of the project.
	Id *string
	// The Amazon Resource Name (ARN) of the created project.
	Arn *string
	// Reserved for future use.
	ProjectTemplateId *string
	// A user- or system-generated token that identifies the entity that requested
	// project creation.
	ClientRequestToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type CreateUserProfileInput

type CreateUserProfileInput struct {
	// The name that will be displayed as the friendly name for the user in AWS
	// CodeStar.
	DisplayName *string
	// The email address that will be displayed as part of the user's profile in AWS
	// CodeStar.
	EmailAddress *string
	// The SSH public key associated with the user in AWS CodeStar. If a project owner
	// allows the user remote access to project resources, this public key will be used
	// along with the user's private key for SSH access.
	SshPublicKey *string
	// The Amazon Resource Name (ARN) of the user in IAM.
	UserArn *string
}

type CreateUserProfileOutput

type CreateUserProfileOutput struct {
	// The Amazon Resource Name (ARN) of the user in IAM.
	UserArn *string
	// The date the user profile was created, in timestamp format.
	CreatedTimestamp *time.Time
	// The date the user profile was last modified, in timestamp format.
	LastModifiedTimestamp *time.Time
	// The email address that is displayed as part of the user's profile in AWS
	// CodeStar.
	EmailAddress *string
	// The name that is displayed as the friendly name for the user in AWS CodeStar.
	DisplayName *string
	// The SSH public key associated with the user in AWS CodeStar. This is the public
	// portion of the public/private keypair the user can use to access project
	// resources if a project owner allows the user remote access to those resources.
	SshPublicKey *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DeleteProjectInput

type DeleteProjectInput struct {
	// Whether to send a delete request for the primary stack in AWS CloudFormation
	// originally used to generate the project and its resources. This option will
	// delete all AWS resources for the project (except for any buckets in Amazon S3)
	// as well as deleting the project itself. Recommended for most use cases.
	DeleteStack *bool
	// The ID of the project to be deleted in AWS CodeStar.
	Id *string
	// A user- or system-generated token that identifies the entity that requested
	// project deletion. This token can be used to repeat the request.
	ClientRequestToken *string
}

type DeleteProjectOutput

type DeleteProjectOutput struct {
	// The ID of the primary stack in AWS CloudFormation that will be deleted as part
	// of deleting the project and its resources.
	StackId *string
	// The Amazon Resource Name (ARN) of the deleted project.
	ProjectArn *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DeleteUserProfileInput

type DeleteUserProfileInput struct {
	// The Amazon Resource Name (ARN) of the user to delete from AWS CodeStar.
	UserArn *string
}

type DeleteUserProfileOutput

type DeleteUserProfileOutput struct {
	// The Amazon Resource Name (ARN) of the user deleted from AWS CodeStar.
	UserArn *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeProjectInput

type DescribeProjectInput struct {
	// The ID of the project.
	Id *string
}

type DescribeProjectOutput

type DescribeProjectOutput struct {
	// The description of the project, if any.
	Description *string
	// The date and time the project was created, in timestamp format.
	CreatedTimeStamp *time.Time
	// The display name for the project.
	Name *string
	// The Amazon Resource Name (ARN) for the project.
	Arn *string
	// The project creation or deletion status.
	Status *types.ProjectStatus
	// The ID for the AWS CodeStar project template used to create the project.
	ProjectTemplateId *string
	// The ID of the project.
	Id *string
	// A user- or system-generated token that identifies the entity that requested
	// project creation.
	ClientRequestToken *string
	// The ID of the primary stack in AWS CloudFormation used to generate resources for
	// the project.
	StackId *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DescribeUserProfileInput

type DescribeUserProfileInput struct {
	// The Amazon Resource Name (ARN) of the user.
	UserArn *string
}

type DescribeUserProfileOutput

type DescribeUserProfileOutput struct {
	// The date and time when the user profile was created in AWS CodeStar, in
	// timestamp format.
	CreatedTimestamp *time.Time
	// The display name shown for the user in AWS CodeStar projects. For example, this
	// could be set to both first and last name ("Mary Major") or a single name
	// ("Mary"). The display name is also used to generate the initial icon associated
	// with the user in AWS CodeStar projects. If spaces are included in the display
	// name, the first character that appears after the space will be used as the
	// second character in the user initial icon. The initial icon displays a maximum
	// of two characters, so a display name with more than one space (for example "Mary
	// Jane Major") would generate an initial icon using the first character and the
	// first character after the space ("MJ", not "MM").
	DisplayName *string
	// The date and time when the user profile was last modified, in timestamp format.
	LastModifiedTimestamp *time.Time
	// The email address for the user. Optional.
	EmailAddress *string
	// The Amazon Resource Name (ARN) of the user.
	UserArn *string
	// The SSH public key associated with the user. This SSH public key is associated
	// with the user profile, and can be used in conjunction with the associated
	// private key for access to project resources, such as Amazon EC2 instances, if a
	// project owner grants remote access to those resources.
	SshPublicKey *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type DisassociateTeamMemberInput

type DisassociateTeamMemberInput struct {
	// The Amazon Resource Name (ARN) of the IAM user or group whom you want to remove
	// from the project.
	UserArn *string
	// The ID of the AWS CodeStar project from which you want to remove a team member.
	ProjectId *string
}

type DisassociateTeamMemberOutput

type DisassociateTeamMemberOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type EndpointResolver

type EndpointResolver interface {
	ResolveEndpoint(region string, options ResolverOptions) (aws.Endpoint, error)
}

EndpointResolver interface for resolving service endpoints.

func WithEndpointResolver

func WithEndpointResolver(awsResolver aws.EndpointResolver, fallbackResolver EndpointResolver) EndpointResolver

WithEndpointResolver returns an EndpointResolver that first delegates endpoint resolution to the awsResolver. If awsResolver returns aws.EndpointNotFoundError error, the resolver will use the the provided fallbackResolver for resolution. awsResolver and fallbackResolver must not be nil

type EndpointResolverFunc

type EndpointResolverFunc func(region string, options ResolverOptions) (aws.Endpoint, error)

EndpointResolverFunc is a helper utility that wraps a function so it satisfies the EndpointResolver interface. This is useful when you want to add additional endpoint resolving logic, or stub out specific endpoints with custom values.

func (EndpointResolverFunc) ResolveEndpoint

func (fn EndpointResolverFunc) ResolveEndpoint(region string, options ResolverOptions) (endpoint aws.Endpoint, err error)

type HTTPClient

type HTTPClient interface {
	Do(*http.Request) (*http.Response, error)
}

type HTTPSignerV4

type HTTPSignerV4 interface {
	SignHTTP(ctx context.Context, credentials aws.Credentials, r *http.Request, payloadHash string, service string, region string, signingTime time.Time) error
}

type ListProjectsInput

type ListProjectsInput struct {
	// The continuation token to be used to return the next set of results, if the
	// results cannot be returned in one response.
	NextToken *string
	// The maximum amount of data that can be contained in a single set of results.
	MaxResults *int32
}

type ListProjectsOutput

type ListProjectsOutput struct {
	// A list of projects.
	Projects []*types.ProjectSummary
	// The continuation token to use when requesting the next set of results, if there
	// are more results to be returned.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListResourcesInput

type ListResourcesInput struct {
	// The ID of the project.
	ProjectId *string
	// The continuation token for the next set of results, if the results cannot be
	// returned in one response.
	NextToken *string
	// The maximum amount of data that can be contained in a single set of results.
	MaxResults *int32
}

type ListResourcesOutput

type ListResourcesOutput struct {
	// An array of resources associated with the project.
	Resources []*types.Resource
	// The continuation token to use when requesting the next set of results, if there
	// are more results to be returned.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListTagsForProjectInput

type ListTagsForProjectInput struct {
	// Reserved for future use.
	NextToken *string
	// Reserved for future use.
	MaxResults *int32
	// The ID of the project to get tags for.
	Id *string
}

type ListTagsForProjectOutput

type ListTagsForProjectOutput struct {
	// The tags for the project.
	Tags map[string]*string
	// Reserved for future use.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListTeamMembersInput

type ListTeamMembersInput struct {
	// The maximum number of team members you want returned in a response.
	MaxResults *int32
	// The ID of the project for which you want to list team members.
	ProjectId *string
	// The continuation token for the next set of results, if the results cannot be
	// returned in one response.
	NextToken *string
}

type ListTeamMembersOutput

type ListTeamMembersOutput struct {
	// A list of team member objects for the project.
	TeamMembers []*types.TeamMember
	// The continuation token to use when requesting the next set of results, if there
	// are more results to be returned.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ListUserProfilesInput

type ListUserProfilesInput struct {
	// The maximum number of results to return in a response.
	MaxResults *int32
	// The continuation token for the next set of results, if the results cannot be
	// returned in one response.
	NextToken *string
}

type ListUserProfilesOutput

type ListUserProfilesOutput struct {
	// The continuation token to use when requesting the next set of results, if there
	// are more results to be returned.
	NextToken *string
	// All the user profiles configured in AWS CodeStar for an AWS account.
	UserProfiles []*types.UserProfileSummary

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type Options

type Options struct {
	// Set of options to modify how an operation is invoked. These apply to all
	// operations invoked for this client. Use functional options on operation call to
	// modify this list for per operation behavior.
	APIOptions []func(*middleware.Stack) error

	// The credentials object to use when signing requests.
	Credentials aws.CredentialsProvider

	// The endpoint options to be used when attempting to resolve an endpoint.
	EndpointOptions ResolverOptions

	// The service endpoint resolver.
	EndpointResolver EndpointResolver

	// Signature Version 4 (SigV4) Signer
	HTTPSignerV4 HTTPSignerV4

	// The region to send requests to. (Required)
	Region string

	// Retryer guides how HTTP requests should be retried in case of recoverable
	// failures. When nil the API client will use a default retryer.
	Retryer retry.Retryer

	// The HTTP client to invoke API calls with. Defaults to client's default HTTP
	// implementation if nil.
	HTTPClient HTTPClient
}

func (Options) Copy

func (o Options) Copy() Options

Copy creates a clone where the APIOptions list is deep copied.

func (Options) GetCredentials

func (o Options) GetCredentials() aws.CredentialsProvider

func (Options) GetEndpointOptions

func (o Options) GetEndpointOptions() ResolverOptions

func (Options) GetEndpointResolver

func (o Options) GetEndpointResolver() EndpointResolver

func (Options) GetHTTPSignerV4

func (o Options) GetHTTPSignerV4() HTTPSignerV4

func (Options) GetRegion

func (o Options) GetRegion() string

func (Options) GetRetryer

func (o Options) GetRetryer() retry.Retryer

type ResolveEndpoint

type ResolveEndpoint struct {
	Resolver EndpointResolver
	Options  ResolverOptions
}

func (*ResolveEndpoint) HandleSerialize

func (*ResolveEndpoint) ID

func (*ResolveEndpoint) ID() string

type ResolveEndpointMiddlewareOptions

type ResolveEndpointMiddlewareOptions interface {
	GetEndpointResolver() EndpointResolver
	GetEndpointOptions() ResolverOptions
}

type ResolverOptions

type ResolverOptions = internalendpoints.Options

ResolverOptions is the service endpoint resolver options

type TagProjectInput

type TagProjectInput struct {
	// The ID of the project you want to add a tag to.
	Id *string
	// The tags you want to add to the project.
	Tags map[string]*string
}

type TagProjectOutput

type TagProjectOutput struct {
	// The tags for the project.
	Tags map[string]*string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type UntagProjectInput

type UntagProjectInput struct {
	// The tags to remove from the project.
	Tags []*string
	// The ID of the project to remove tags from.
	Id *string
}

type UntagProjectOutput

type UntagProjectOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type UpdateProjectInput

type UpdateProjectInput struct {
	// The ID of the project you want to update.
	Id *string
	// The name of the project you want to update.
	Name *string
	// The description of the project, if any.
	Description *string
}

type UpdateProjectOutput

type UpdateProjectOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type UpdateTeamMemberInput

type UpdateTeamMemberInput struct {
	// The ID of the project.
	ProjectId *string
	// The role assigned to the user in the project. Project roles have different
	// levels of access. For more information, see Working with Teams
	// (http://docs.aws.amazon.com/codestar/latest/userguide/working-with-teams.html)
	// in the AWS CodeStar User Guide.
	ProjectRole *string
	// The Amazon Resource Name (ARN) of the user for whom you want to change team
	// membership attributes.
	UserArn *string
	// Whether a team member is allowed to remotely access project resources using the
	// SSH public key associated with the user's profile. Even if this is set to True,
	// the user must associate a public key with their profile before the user can
	// access resources.
	RemoteAccessAllowed *bool
}

type UpdateTeamMemberOutput

type UpdateTeamMemberOutput struct {
	// The project role granted to the user.
	ProjectRole *string
	// Whether a team member is allowed to remotely access project resources using the
	// SSH public key associated with the user's profile.
	RemoteAccessAllowed *bool
	// The Amazon Resource Name (ARN) of the user whose team membership attributes were
	// updated.
	UserArn *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type UpdateUserProfileInput

type UpdateUserProfileInput struct {
	// The name that will be displayed as the friendly name for the user in AWS
	// CodeStar.
	UserArn *string
	// The SSH public key associated with the user in AWS CodeStar. If a project owner
	// allows the user remote access to project resources, this public key will be used
	// along with the user's private key for SSH access.
	SshPublicKey *string
	// The name that is displayed as the friendly name for the user in AWS CodeStar.
	DisplayName *string
	// The email address that is displayed as part of the user's profile in AWS
	// CodeStar.
	EmailAddress *string
}

type UpdateUserProfileOutput

type UpdateUserProfileOutput struct {
	// The name that is displayed as the friendly name for the user in AWS CodeStar.
	DisplayName *string
	// The email address that is displayed as part of the user's profile in AWS
	// CodeStar.
	EmailAddress *string
	// The date the user profile was created, in timestamp format.
	CreatedTimestamp *time.Time
	// The date the user profile was last modified, in timestamp format.
	LastModifiedTimestamp *time.Time
	// The SSH public key associated with the user in AWS CodeStar. This is the public
	// portion of the public/private keypair the user can use to access project
	// resources if a project owner allows the user remote access to those resources.
	SshPublicKey *string
	// The Amazon Resource Name (ARN) of the user in IAM.
	UserArn *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

Directories

Path Synopsis
internal

Jump to

Keyboard shortcuts

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