Amazon.CodePipeline.AmazonCodePipelineClient.GetThirdPartyJobDetails C# (CSharp) Метод

GetThirdPartyJobDetails() публичный Метод

Requests the details of a job for a third party action. Only used for partner actions.

When this API is called, AWS CodePipeline returns temporary credentials for the Amazon S3 bucket used to store artifacts for the pipeline, if the action requires access to that Amazon S3 bucket for input or output artifacts. Additionally, this API returns any secret values defined for the action.

/// The client token was specified in an invalid format /// /// The specified job was specified in an invalid format or cannot be found. /// /// The specified job was specified in an invalid format or cannot be found. /// /// The validation was specified in an invalid format. ///
public GetThirdPartyJobDetails ( string clientToken, string jobId ) : GetThirdPartyJobDetailsResponse
clientToken string The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
jobId string The unique system-generated ID used for identifying the job.
Результат Amazon.CodePipeline.Model.GetThirdPartyJobDetailsResponse
        public GetThirdPartyJobDetailsResponse GetThirdPartyJobDetails(string clientToken, string jobId)
        {
            var request = new GetThirdPartyJobDetailsRequest();
            request.ClientToken = clientToken;
            request.JobId = jobId;
            return GetThirdPartyJobDetails(request);
        }

Same methods

AmazonCodePipelineClient::GetThirdPartyJobDetails ( GetThirdPartyJobDetailsRequest request ) : GetThirdPartyJobDetailsResponse
AmazonCodePipelineClient