Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Sets the cross-origin resource sharing (CORS) configuration on a container so that the container can service cross-origin requests. For example, you might want to enable a request whose origin is http://www.example.com to access your AWS Elemental MediaStore container at my.example.container.com by using the browser's XMLHttpRequest capability.
To enable CORS on a container, you attach a CORS policy to the container. In the CORS policy, you configure rules that identify origins and the HTTP methods that can be executed on your container. The policy can contain up to 398,000 characters. You can add up to 100 rules to a CORS policy. If more than one rule applies, the service uses the first applicable rule listed.
To learn more about CORS, see Cross-Origin Resource Sharing (CORS) in AWS Elemental MediaStore.
Synopsis
- data PutCorsPolicy = PutCorsPolicy' {}
- newPutCorsPolicy :: Text -> NonEmpty CorsRule -> PutCorsPolicy
- putCorsPolicy_containerName :: Lens' PutCorsPolicy Text
- putCorsPolicy_corsPolicy :: Lens' PutCorsPolicy (NonEmpty CorsRule)
- data PutCorsPolicyResponse = PutCorsPolicyResponse' {
- httpStatus :: Int
- newPutCorsPolicyResponse :: Int -> PutCorsPolicyResponse
- putCorsPolicyResponse_httpStatus :: Lens' PutCorsPolicyResponse Int
Creating a Request
data PutCorsPolicy Source #
See: newPutCorsPolicy
smart constructor.
PutCorsPolicy' | |
|
Instances
:: Text | |
-> NonEmpty CorsRule | |
-> PutCorsPolicy |
Create a value of PutCorsPolicy
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:containerName:PutCorsPolicy'
, putCorsPolicy_containerName
- The name of the container that you want to assign the CORS policy to.
$sel:corsPolicy:PutCorsPolicy'
, putCorsPolicy_corsPolicy
- The CORS policy to apply to the container.
Request Lenses
putCorsPolicy_containerName :: Lens' PutCorsPolicy Text Source #
The name of the container that you want to assign the CORS policy to.
putCorsPolicy_corsPolicy :: Lens' PutCorsPolicy (NonEmpty CorsRule) Source #
The CORS policy to apply to the container.
Destructuring the Response
data PutCorsPolicyResponse Source #
See: newPutCorsPolicyResponse
smart constructor.
PutCorsPolicyResponse' | |
|
Instances
newPutCorsPolicyResponse Source #
Create a value of PutCorsPolicyResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:httpStatus:PutCorsPolicyResponse'
, putCorsPolicyResponse_httpStatus
- The response's http status code.
Response Lenses
putCorsPolicyResponse_httpStatus :: Lens' PutCorsPolicyResponse Int Source #
The response's http status code.