Documentation
¶
Overview ¶
Package pcaconnectorscep provides the API client, operations, and parameter types for Private CA Connector for SCEP.
Connector for SCEP creates a connector between Amazon Web Services Private CA and your SCEP-enabled clients and devices. For more information, see Connector for SCEPin the Amazon Web Services Private CA User Guide.
Index ¶
- Constants
- func NewDefaultEndpointResolver() *internalendpoints.Resolver
- func WithAPIOptions(optFns ...func(*middleware.Stack) error) func(*Options)
- func WithEndpointResolver(v EndpointResolver) func(*Options)deprecated
- func WithEndpointResolverV2(v EndpointResolverV2) func(*Options)
- func WithSigV4SigningName(name string) func(*Options)
- func WithSigV4SigningRegion(region string) func(*Options)
- type AuthResolverParameters
- type AuthSchemeResolver
- type Client
- func (c *Client) CreateChallenge(ctx context.Context, params *CreateChallengeInput, optFns ...func(*Options)) (*CreateChallengeOutput, error)
- func (c *Client) CreateConnector(ctx context.Context, params *CreateConnectorInput, optFns ...func(*Options)) (*CreateConnectorOutput, error)
- func (c *Client) DeleteChallenge(ctx context.Context, params *DeleteChallengeInput, optFns ...func(*Options)) (*DeleteChallengeOutput, error)
- func (c *Client) DeleteConnector(ctx context.Context, params *DeleteConnectorInput, optFns ...func(*Options)) (*DeleteConnectorOutput, error)
- func (c *Client) GetChallengeMetadata(ctx context.Context, params *GetChallengeMetadataInput, ...) (*GetChallengeMetadataOutput, error)
- func (c *Client) GetChallengePassword(ctx context.Context, params *GetChallengePasswordInput, ...) (*GetChallengePasswordOutput, error)
- func (c *Client) GetConnector(ctx context.Context, params *GetConnectorInput, optFns ...func(*Options)) (*GetConnectorOutput, error)
- func (c *Client) ListChallengeMetadata(ctx context.Context, params *ListChallengeMetadataInput, ...) (*ListChallengeMetadataOutput, error)
- func (c *Client) ListConnectors(ctx context.Context, params *ListConnectorsInput, optFns ...func(*Options)) (*ListConnectorsOutput, error)
- func (c *Client) ListTagsForResource(ctx context.Context, params *ListTagsForResourceInput, ...) (*ListTagsForResourceOutput, error)
- func (c *Client) Options() Options
- func (c *Client) TagResource(ctx context.Context, params *TagResourceInput, optFns ...func(*Options)) (*TagResourceOutput, error)
- func (c *Client) UntagResource(ctx context.Context, params *UntagResourceInput, optFns ...func(*Options)) (*UntagResourceOutput, error)
- type CreateChallengeInput
- type CreateChallengeOutput
- type CreateConnectorInput
- type CreateConnectorOutput
- type DeleteChallengeInput
- type DeleteChallengeOutput
- type DeleteConnectorInput
- type DeleteConnectorOutput
- type EndpointParameters
- type EndpointResolver
- type EndpointResolverFunc
- type EndpointResolverOptions
- type EndpointResolverV2
- type GetChallengeMetadataInput
- type GetChallengeMetadataOutput
- type GetChallengePasswordInput
- type GetChallengePasswordOutput
- type GetConnectorInput
- type GetConnectorOutput
- type HTTPClient
- type HTTPSignerV4
- type IdempotencyTokenProvider
- type ListChallengeMetadataAPIClient
- type ListChallengeMetadataInput
- type ListChallengeMetadataOutput
- type ListChallengeMetadataPaginator
- type ListChallengeMetadataPaginatorOptions
- type ListConnectorsAPIClient
- type ListConnectorsInput
- type ListConnectorsOutput
- type ListConnectorsPaginator
- type ListConnectorsPaginatorOptions
- type ListTagsForResourceInput
- type ListTagsForResourceOutput
- type Options
- type ResolveEndpoint
- type TagResourceInput
- type TagResourceOutput
- type UntagResourceInput
- type UntagResourceOutput
Constants ¶
const ServiceAPIVersion = "2018-05-10"
const ServiceID = "Pca Connector Scep"
Variables ¶
This section is empty.
Functions ¶
func NewDefaultEndpointResolver ¶
func NewDefaultEndpointResolver() *internalendpoints.Resolver
NewDefaultEndpointResolver constructs a new service endpoint resolver
func WithAPIOptions ¶
func WithAPIOptions(optFns ...func(*middleware.Stack) error) func(*Options)
WithAPIOptions returns a functional option for setting the Client's APIOptions option.
func WithEndpointResolver
deprecated
func WithEndpointResolver(v EndpointResolver) func(*Options)
Deprecated: EndpointResolver and WithEndpointResolver. Providing a value for this field will likely prevent you from using any endpoint-related service features released after the introduction of EndpointResolverV2 and BaseEndpoint.
To migrate an EndpointResolver implementation that uses a custom endpoint, set the client option BaseEndpoint instead.
func WithEndpointResolverV2 ¶
func WithEndpointResolverV2(v EndpointResolverV2) func(*Options)
WithEndpointResolverV2 returns a functional option for setting the Client's EndpointResolverV2 option.
func WithSigV4SigningName ¶
WithSigV4SigningName applies an override to the authentication workflow to use the given signing name for SigV4-authenticated operations.
This is an advanced setting. The value here is FINAL, taking precedence over the resolved signing name from both auth scheme resolution and endpoint resolution.
func WithSigV4SigningRegion ¶
WithSigV4SigningRegion applies an override to the authentication workflow to use the given signing region for SigV4-authenticated operations.
This is an advanced setting. The value here is FINAL, taking precedence over the resolved signing region from both auth scheme resolution and endpoint resolution.
Types ¶
type AuthResolverParameters ¶
type AuthResolverParameters struct { // The name of the operation being invoked. Operation string // The region in which the operation is being invoked. Region string }
AuthResolverParameters contains the set of inputs necessary for auth scheme resolution.
type AuthSchemeResolver ¶
type AuthSchemeResolver interface {
ResolveAuthSchemes(context.Context, *AuthResolverParameters) ([]*smithyauth.Option, error)
}
AuthSchemeResolver returns a set of possible authentication options for an operation.
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client provides the API client to make operations call for Private CA Connector for SCEP.
func New ¶
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 ¶
NewFromConfig returns a new client from the provided config.
func (*Client) CreateChallenge ¶
func (c *Client) CreateChallenge(ctx context.Context, params *CreateChallengeInput, optFns ...func(*Options)) (*CreateChallengeOutput, error)
For general-purpose connectors. Creates a challenge password for the specified connector. The SCEP protocol uses a challenge password to authenticate a request before issuing a certificate from a certificate authority (CA). Your SCEP clients include the challenge password as part of their certificate request to Connector for SCEP. To retrieve the connector Amazon Resource Names (ARNs) for the connectors in your account, call ListConnectors.
To create additional challenge passwords for the connector, call CreateChallenge again. We recommend frequently rotating your challenge passwords.
func (*Client) CreateConnector ¶
func (c *Client) CreateConnector(ctx context.Context, params *CreateConnectorInput, optFns ...func(*Options)) (*CreateConnectorOutput, error)
Creates a SCEP connector. A SCEP connector links Amazon Web Services Private Certificate Authority to your SCEP-compatible devices and mobile device management (MDM) systems. Before you create a connector, you must complete a set of prerequisites, including creation of a private certificate authority (CA) to use with this connector. For more information, see Connector for SCEP prerequisites.
func (*Client) DeleteChallenge ¶
func (c *Client) DeleteChallenge(ctx context.Context, params *DeleteChallengeInput, optFns ...func(*Options)) (*DeleteChallengeOutput, error)
Deletes the specified Challenge.
func (*Client) DeleteConnector ¶
func (c *Client) DeleteConnector(ctx context.Context, params *DeleteConnectorInput, optFns ...func(*Options)) (*DeleteConnectorOutput, error)
Deletes the specified Connector. This operation also deletes any challenges associated with the connector.
func (*Client) GetChallengeMetadata ¶
func (c *Client) GetChallengeMetadata(ctx context.Context, params *GetChallengeMetadataInput, optFns ...func(*Options)) (*GetChallengeMetadataOutput, error)
Retrieves the metadata for the specified Challenge.
func (*Client) GetChallengePassword ¶
func (c *Client) GetChallengePassword(ctx context.Context, params *GetChallengePasswordInput, optFns ...func(*Options)) (*GetChallengePasswordOutput, error)
Retrieves the challenge password for the specified Challenge.
func (*Client) GetConnector ¶
func (c *Client) GetConnector(ctx context.Context, params *GetConnectorInput, optFns ...func(*Options)) (*GetConnectorOutput, error)
Retrieves details about the specified Connector. Calling this action returns important details about the connector, such as the public SCEP URL where your clients can request certificates.
func (*Client) ListChallengeMetadata ¶
func (c *Client) ListChallengeMetadata(ctx context.Context, params *ListChallengeMetadataInput, optFns ...func(*Options)) (*ListChallengeMetadataOutput, error)
Retrieves the challenge metadata for the specified ARN.
func (*Client) ListConnectors ¶
func (c *Client) ListConnectors(ctx context.Context, params *ListConnectorsInput, optFns ...func(*Options)) (*ListConnectorsOutput, error)
Lists the connectors belonging to your Amazon Web Services account.
func (*Client) ListTagsForResource ¶
func (c *Client) ListTagsForResource(ctx context.Context, params *ListTagsForResourceInput, optFns ...func(*Options)) (*ListTagsForResourceOutput, error)
Retrieves the tags associated with the specified resource. Tags are key-value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.
func (*Client) Options ¶
Options returns a copy of the client configuration.
Callers SHOULD NOT perform mutations on any inner structures within client config. Config overrides should instead be made on a per-operation basis through functional options.
func (*Client) TagResource ¶
func (c *Client) TagResource(ctx context.Context, params *TagResourceInput, optFns ...func(*Options)) (*TagResourceOutput, error)
Adds one or more tags to your resource.
func (*Client) UntagResource ¶
func (c *Client) UntagResource(ctx context.Context, params *UntagResourceInput, optFns ...func(*Options)) (*UntagResourceOutput, error)
Removes one or more tags from your resource.
type CreateChallengeInput ¶
type CreateChallengeInput struct { // The Amazon Resource Name (ARN) of the connector that you want to create a // challenge for. // // This member is required. ConnectorArn *string // Custom string that can be used to distinguish between calls to the [CreateChallenge] action. // Client tokens for CreateChallenge time out after five minutes. Therefore, if // you call CreateChallenge multiple times with the same client token within five // minutes, Connector for SCEP recognizes that you are requesting only one // challenge and will only respond with one. If you change the client token for // each call, Connector for SCEP recognizes that you are requesting multiple // challenge passwords. // // [CreateChallenge]: https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_CreateChallenge.html ClientToken *string // The key-value pairs to associate with the resource. Tags map[string]string // contains filtered or unexported fields }
type CreateChallengeOutput ¶
type CreateChallengeOutput struct { // Returns the challenge details for the specified connector. Challenge *types.Challenge // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type CreateConnectorInput ¶
type CreateConnectorInput struct { // The Amazon Resource Name (ARN) of the Amazon Web Services Private Certificate // Authority certificate authority to use with this connector. Due to security // vulnerabilities present in the SCEP protocol, we recommend using a private CA // that's dedicated for use with the connector. // // To retrieve the private CAs associated with your account, you can call [ListCertificateAuthorities] using // the Amazon Web Services Private CA API. // // [ListCertificateAuthorities]: https://docs.aws.amazon.com/privateca/latest/APIReference/API_ListCertificateAuthorities.html // // This member is required. CertificateAuthorityArn *string // Custom string that can be used to distinguish between calls to the [CreateChallenge] action. // Client tokens for CreateChallenge time out after five minutes. Therefore, if // you call CreateChallenge multiple times with the same client token within five // minutes, Connector for SCEP recognizes that you are requesting only one // challenge and will only respond with one. If you change the client token for // each call, Connector for SCEP recognizes that you are requesting multiple // challenge passwords. // // [CreateChallenge]: https://docs.aws.amazon.com/C4SCEP_API/pca-connector-scep/latest/APIReference/API_CreateChallenge.html ClientToken *string // If you don't supply a value, by default Connector for SCEP creates a connector // for general-purpose use. A general-purpose connector is designed to work with // clients or endpoints that support the SCEP protocol, except Connector for SCEP // for Microsoft Intune. With connectors for general-purpose use, you manage SCEP // challenge passwords using Connector for SCEP. For information about // considerations and limitations with using Connector for SCEP, see [Considerations and Limitations]. // // If you provide an IntuneConfiguration , Connector for SCEP creates a connector // for use with Microsoft Intune, and you manage the challenge passwords using // Microsoft Intune. For more information, see [Using Connector for SCEP for Microsoft Intune]. // // [Considerations and Limitations]: https://docs.aws.amazon.com/privateca/latest/userguide/scep-connector.htmlc4scep-considerations-limitations.html // [Using Connector for SCEP for Microsoft Intune]: https://docs.aws.amazon.com/privateca/latest/userguide/scep-connector.htmlconnector-for-scep-intune.html MobileDeviceManagement types.MobileDeviceManagement // The key-value pairs to associate with the resource. Tags map[string]string // contains filtered or unexported fields }
type CreateConnectorOutput ¶
type CreateConnectorOutput struct { // Returns the Amazon Resource Name (ARN) of the connector. ConnectorArn *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DeleteChallengeInput ¶
type DeleteChallengeInput struct { // The Amazon Resource Name (ARN) of the challenge password to delete. // // This member is required. ChallengeArn *string // contains filtered or unexported fields }
type DeleteChallengeOutput ¶
type DeleteChallengeOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type DeleteConnectorInput ¶
type DeleteConnectorInput struct { // The Amazon Resource Name (ARN) of the connector to delete. // // This member is required. ConnectorArn *string // contains filtered or unexported fields }
type DeleteConnectorOutput ¶
type DeleteConnectorOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type EndpointParameters ¶
type EndpointParameters struct { // The AWS region used to dispatch the request. // // Parameter is // required. // // AWS::Region Region *string // When true, use the dual-stack endpoint. If the configured endpoint does not // support dual-stack, dispatching the request MAY return an error. // // Defaults to // false if no value is provided. // // AWS::UseDualStack UseDualStack *bool // When true, send this request to the FIPS-compliant regional endpoint. If the // configured endpoint does not have a FIPS compliant endpoint, dispatching the // request will return an error. // // Defaults to false if no value is // provided. // // AWS::UseFIPS UseFIPS *bool // Override the endpoint used to send this request // // Parameter is // required. // // SDK::Endpoint Endpoint *string }
EndpointParameters provides the parameters that influence how endpoints are resolved.
func (EndpointParameters) ValidateRequired ¶
func (p EndpointParameters) ValidateRequired() error
ValidateRequired validates required parameters are set.
func (EndpointParameters) WithDefaults ¶
func (p EndpointParameters) WithDefaults() EndpointParameters
WithDefaults returns a shallow copy of EndpointParameterswith default values applied to members where applicable.
type EndpointResolver ¶
type EndpointResolver interface {
ResolveEndpoint(region string, options EndpointResolverOptions) (aws.Endpoint, error)
}
EndpointResolver interface for resolving service endpoints.
func EndpointResolverFromURL ¶
func EndpointResolverFromURL(url string, optFns ...func(*aws.Endpoint)) EndpointResolver
EndpointResolverFromURL returns an EndpointResolver configured using the provided endpoint url. By default, the resolved endpoint resolver uses the client region as signing region, and the endpoint source is set to EndpointSourceCustom.You can provide functional options to configure endpoint values for the resolved endpoint.
type EndpointResolverFunc ¶
type EndpointResolverFunc func(region string, options EndpointResolverOptions) (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 EndpointResolverOptions) (endpoint aws.Endpoint, err error)
type EndpointResolverOptions ¶
type EndpointResolverOptions = internalendpoints.Options
EndpointResolverOptions is the service endpoint resolver options
type EndpointResolverV2 ¶
type EndpointResolverV2 interface { // ResolveEndpoint attempts to resolve the endpoint with the provided options, // returning the endpoint if found. Otherwise an error is returned. ResolveEndpoint(ctx context.Context, params EndpointParameters) ( smithyendpoints.Endpoint, error, ) }
EndpointResolverV2 provides the interface for resolving service endpoints.
func NewDefaultEndpointResolverV2 ¶
func NewDefaultEndpointResolverV2() EndpointResolverV2
type GetChallengeMetadataInput ¶
type GetChallengeMetadataInput struct { // The Amazon Resource Name (ARN) of the challenge. // // This member is required. ChallengeArn *string // contains filtered or unexported fields }
type GetChallengeMetadataOutput ¶
type GetChallengeMetadataOutput struct { // The metadata for the challenge. ChallengeMetadata *types.ChallengeMetadata // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type GetChallengePasswordInput ¶
type GetChallengePasswordInput struct { // The Amazon Resource Name (ARN) of the challenge. // // This member is required. ChallengeArn *string // contains filtered or unexported fields }
type GetChallengePasswordOutput ¶
type GetChallengePasswordOutput struct { // The SCEP challenge password. Password *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type GetConnectorInput ¶
type GetConnectorInput struct { // The Amazon Resource Name (ARN) of the connector. // // This member is required. ConnectorArn *string // contains filtered or unexported fields }
type GetConnectorOutput ¶
type GetConnectorOutput struct { // The properties of the connector. Connector *types.Connector // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type HTTPSignerV4 ¶
type IdempotencyTokenProvider ¶
IdempotencyTokenProvider interface for providing idempotency token
type ListChallengeMetadataAPIClient ¶
type ListChallengeMetadataAPIClient interface {
ListChallengeMetadata(context.Context, *ListChallengeMetadataInput, ...func(*Options)) (*ListChallengeMetadataOutput, error)
}
ListChallengeMetadataAPIClient is a client that implements the ListChallengeMetadata operation.
type ListChallengeMetadataInput ¶
type ListChallengeMetadataInput struct { // The Amazon Resource Name (ARN) of the connector. // // This member is required. ConnectorArn *string // The maximum number of objects that you want Connector for SCEP to return for // this request. If more objects are available, in the response, Connector for SCEP // provides a NextToken value that you can use in a subsequent call to get the // next batch of objects. MaxResults *int32 // When you request a list of objects with a MaxResults setting, if the number of // objects that are still available for retrieval exceeds the maximum you // requested, Connector for SCEP returns a NextToken value in the response. To // retrieve the next batch of objects, use the token returned from the prior // request in your next request. NextToken *string // contains filtered or unexported fields }
type ListChallengeMetadataOutput ¶
type ListChallengeMetadataOutput struct { // The challenge metadata for the challenges belonging to your Amazon Web Services // account. Challenges []types.ChallengeMetadataSummary // When you request a list of objects with a MaxResults setting, if the number of // objects that are still available for retrieval exceeds the maximum you // requested, Connector for SCEP returns a NextToken value in the response. To // retrieve the next batch of objects, use the token returned from the prior // request in your next request. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ListChallengeMetadataPaginator ¶
type ListChallengeMetadataPaginator struct {
// contains filtered or unexported fields
}
ListChallengeMetadataPaginator is a paginator for ListChallengeMetadata
func NewListChallengeMetadataPaginator ¶
func NewListChallengeMetadataPaginator(client ListChallengeMetadataAPIClient, params *ListChallengeMetadataInput, optFns ...func(*ListChallengeMetadataPaginatorOptions)) *ListChallengeMetadataPaginator
NewListChallengeMetadataPaginator returns a new ListChallengeMetadataPaginator
func (*ListChallengeMetadataPaginator) HasMorePages ¶
func (p *ListChallengeMetadataPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListChallengeMetadataPaginator) NextPage ¶
func (p *ListChallengeMetadataPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListChallengeMetadataOutput, error)
NextPage retrieves the next ListChallengeMetadata page.
type ListChallengeMetadataPaginatorOptions ¶
type ListChallengeMetadataPaginatorOptions struct { // The maximum number of objects that you want Connector for SCEP to return for // this request. If more objects are available, in the response, Connector for SCEP // provides a NextToken value that you can use in a subsequent call to get the // next batch of objects. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListChallengeMetadataPaginatorOptions is the paginator options for ListChallengeMetadata
type ListConnectorsAPIClient ¶
type ListConnectorsAPIClient interface {
ListConnectors(context.Context, *ListConnectorsInput, ...func(*Options)) (*ListConnectorsOutput, error)
}
ListConnectorsAPIClient is a client that implements the ListConnectors operation.
type ListConnectorsInput ¶
type ListConnectorsInput struct { // The maximum number of objects that you want Connector for SCEP to return for // this request. If more objects are available, in the response, Connector for SCEP // provides a NextToken value that you can use in a subsequent call to get the // next batch of objects. MaxResults *int32 // When you request a list of objects with a MaxResults setting, if the number of // objects that are still available for retrieval exceeds the maximum you // requested, Connector for SCEP returns a NextToken value in the response. To // retrieve the next batch of objects, use the token returned from the prior // request in your next request. NextToken *string // contains filtered or unexported fields }
type ListConnectorsOutput ¶
type ListConnectorsOutput struct { // The connectors belonging to your Amazon Web Services account. Connectors []types.ConnectorSummary // When you request a list of objects with a MaxResults setting, if the number of // objects that are still available for retrieval exceeds the maximum you // requested, Connector for SCEP returns a NextToken value in the response. To // retrieve the next batch of objects, use the token returned from the prior // request in your next request. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type ListConnectorsPaginator ¶
type ListConnectorsPaginator struct {
// contains filtered or unexported fields
}
ListConnectorsPaginator is a paginator for ListConnectors
func NewListConnectorsPaginator ¶
func NewListConnectorsPaginator(client ListConnectorsAPIClient, params *ListConnectorsInput, optFns ...func(*ListConnectorsPaginatorOptions)) *ListConnectorsPaginator
NewListConnectorsPaginator returns a new ListConnectorsPaginator
func (*ListConnectorsPaginator) HasMorePages ¶
func (p *ListConnectorsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListConnectorsPaginator) NextPage ¶
func (p *ListConnectorsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListConnectorsOutput, error)
NextPage retrieves the next ListConnectors page.
type ListConnectorsPaginatorOptions ¶
type ListConnectorsPaginatorOptions struct { // The maximum number of objects that you want Connector for SCEP to return for // this request. If more objects are available, in the response, Connector for SCEP // provides a NextToken value that you can use in a subsequent call to get the // next batch of objects. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListConnectorsPaginatorOptions is the paginator options for ListConnectors
type ListTagsForResourceInput ¶
type ListTagsForResourceInput struct { // The Amazon Resource Name (ARN) of the resource. // // This member is required. ResourceArn *string // contains filtered or unexported fields }
type ListTagsForResourceOutput ¶
type ListTagsForResourceOutput struct { // The key-value pairs to associate with the resource. Tags map[string]string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
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 optional application specific identifier appended to the User-Agent header. AppID string // This endpoint will be given as input to an EndpointResolverV2. It is used for // providing a custom base endpoint that is subject to modifications by the // processing EndpointResolverV2. BaseEndpoint *string // Configures the events that will be sent to the configured logger. ClientLogMode aws.ClientLogMode // The credentials object to use when signing requests. Credentials aws.CredentialsProvider // The configuration DefaultsMode that the SDK should use when constructing the // clients initial default settings. DefaultsMode aws.DefaultsMode // The endpoint options to be used when attempting to resolve an endpoint. EndpointOptions EndpointResolverOptions // The service endpoint resolver. // // Deprecated: Deprecated: EndpointResolver and WithEndpointResolver. Providing a // value for this field will likely prevent you from using any endpoint-related // service features released after the introduction of EndpointResolverV2 and // BaseEndpoint. // // To migrate an EndpointResolver implementation that uses a custom endpoint, set // the client option BaseEndpoint instead. EndpointResolver EndpointResolver // Resolves the endpoint used for a particular service operation. This should be // used over the deprecated EndpointResolver. EndpointResolverV2 EndpointResolverV2 // Signature Version 4 (SigV4) Signer HTTPSignerV4 HTTPSignerV4 // Provides idempotency tokens values that will be automatically populated into // idempotent API operations. IdempotencyTokenProvider IdempotencyTokenProvider // The logger writer interface to write logging messages to. Logger logging.Logger // The client meter provider. MeterProvider metrics.MeterProvider // The region to send requests to. (Required) Region string // RetryMaxAttempts specifies the maximum number attempts an API client will call // an operation that fails with a retryable error. A value of 0 is ignored, and // will not be used to configure the API client created default retryer, or modify // per operation call's retry max attempts. // // If specified in an operation call's functional options with a value that is // different than the constructed client's Options, the Client's Retryer will be // wrapped to use the operation's specific RetryMaxAttempts value. RetryMaxAttempts int // RetryMode specifies the retry mode the API client will be created with, if // Retryer option is not also specified. // // When creating a new API Clients this member will only be used if the Retryer // Options member is nil. This value will be ignored if Retryer is not nil. // // Currently does not support per operation call overrides, may in the future. RetryMode aws.RetryMode // Retryer guides how HTTP requests should be retried in case of recoverable // failures. When nil the API client will use a default retryer. The kind of // default retry created by the API client can be changed with the RetryMode // option. Retryer aws.Retryer // The RuntimeEnvironment configuration, only populated if the DefaultsMode is set // to DefaultsModeAuto and is initialized using config.LoadDefaultConfig . You // should not populate this structure programmatically, or rely on the values here // within your applications. RuntimeEnvironment aws.RuntimeEnvironment // The client tracer provider. TracerProvider tracing.TracerProvider // The HTTP client to invoke API calls with. Defaults to client's default HTTP // implementation if nil. HTTPClient HTTPClient // The auth scheme resolver which determines how to authenticate for each // operation. AuthSchemeResolver AuthSchemeResolver // The list of auth schemes supported by the client. AuthSchemes []smithyhttp.AuthScheme // contains filtered or unexported fields }
func (Options) GetIdentityResolver ¶
func (o Options) GetIdentityResolver(schemeID string) smithyauth.IdentityResolver
type ResolveEndpoint ¶
type ResolveEndpoint struct { Resolver EndpointResolver Options EndpointResolverOptions }
func (*ResolveEndpoint) HandleSerialize ¶
func (m *ResolveEndpoint) HandleSerialize(ctx context.Context, in middleware.SerializeInput, next middleware.SerializeHandler) ( out middleware.SerializeOutput, metadata middleware.Metadata, err error, )
func (*ResolveEndpoint) ID ¶
func (*ResolveEndpoint) ID() string
type TagResourceInput ¶
type TagResourceOutput ¶
type TagResourceOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
type UntagResourceInput ¶
type UntagResourceInput struct { // The Amazon Resource Name (ARN) of the resource. // // This member is required. ResourceArn *string // Specifies a list of tag keys that you want to remove from the specified // resources. // // This member is required. TagKeys []string // contains filtered or unexported fields }
type UntagResourceOutput ¶
type UntagResourceOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata // contains filtered or unexported fields }
Source Files
¶
- api_client.go
- api_op_CreateChallenge.go
- api_op_CreateConnector.go
- api_op_DeleteChallenge.go
- api_op_DeleteConnector.go
- api_op_GetChallengeMetadata.go
- api_op_GetChallengePassword.go
- api_op_GetConnector.go
- api_op_ListChallengeMetadata.go
- api_op_ListConnectors.go
- api_op_ListTagsForResource.go
- api_op_TagResource.go
- api_op_UntagResource.go
- auth.go
- deserializers.go
- doc.go
- endpoints.go
- go_module_metadata.go
- options.go
- serializers.go
- validators.go